*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
  margin: 0;
  overflow-x: hidden;
  width: 100%;          /* garante que não passa dos limites */
  position: relative;
}
:root {
  --gjs-t-color-primary: #2dd4ff;
  --gjs-t-color-secondary: #94a3b8;
  --gjs-t-color-accent: #ff7a45;
  --gjs-t-color-success: #22c55e;
  --gjs-t-color-warning: #f59e0b;
  --gjs-t-color-error: #ef4444;
}
html {
  scroll-behavior: smooth;
}

/* Bloco do botão de topo */
#yt-scroll-top-block {
  position: relative;
  z-index: 50;
}

/* Botão principal */
#yt-scroll-top-block .yt-scroll-top-btn {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.75rem 1rem;       /* espaço interno vertical e horizontal */
  border-radius: 0.75rem;

  background-color: #2dd4ff;
  color: #0b0f14;

  box-shadow: 0 0 0 0px #fff,
              0 0 0 calc(1px + 0px) rgba(59, 130, 246, 0.5),
              0 0 #0000;

  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 150ms cubic-bezier(0.4, 0, 0.2, 1);

  cursor: pointer;

  min-width: 60px;   /* largura mínima */
  max-width: 60px;
  min-height: 50px;
  max-height: 50px;
  box-sizing: border-box; /* padding entra na largura total */
}

/* Hover e active */
#yt-scroll-top-block .yt-scroll-top-btn:hover {
  background-color: #67e8f9;
  transform: translateY(-1px);
}

#yt-scroll-top-block .yt-scroll-top-btn:active {
  background-color: #a5f3fc;
  transform: translateY(0);
}

/* Label dentro do botão */
#yt-scroll-top-block .yt-scroll-top-label {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  white-space: nowrap; /* impede quebra de linha do texto */
}

/* Responsividade */

/* Tablet e telas médias */
@media (max-width: 992px) {
  #yt-scroll-top-block .yt-scroll-top-btn {
    bottom: 4.5rem;
    right: 1rem;
    padding: 0.65rem 0.9rem; /* ajusta tamanho do botão em telas médias */
	min-width: 60px;   /* largura mínima */
	max-width: 60px;
	min-height: 50px;
	max-height: 50px;
  }

  #yt-scroll-top-block .yt-scroll-top-label {
    font-size: 0.825rem; /* texto proporcional menor */
  }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  #yt-scroll-top-block .yt-scroll-top-btn {
    bottom: 4rem;
    right: 0.75rem;
    padding: 0.5rem 0.75rem; /* botão mais compacto */
	min-width: 56px;   /* largura mínima */
	max-width: 56px;
	min-height: 45px;
	max-height: 45px;
  }

  #yt-scroll-top-block .yt-scroll-top-label {
    font-size: 0.75rem; /* texto menor em mobile */
  }
}
#yt-scroll-top-block .yt-scroll-top-label {
  font-size: 24px;
  font-weight: 700; /* deixa a seta mais grossa */
}

#img1, #img2 {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

#card1, #card2 {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gjs-t-body {
  background-color: #0b0f14;
  color: #e5e7eb;
  font-size: 16px;
  line-height: 1.6;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
}
.gjs-t-h1 {
  color: #eaf4ff;
  font-size: 48px;
  line-height: 1.15;
  font-family: Oxanium, Inter, ui-sans-serif, system-ui;
}
.gjs-t-h2 {
  color: #eaf4ff;
  font-size: 32px;
  line-height: 1.25;
  font-family: Oxanium, Inter, ui-sans-serif, system-ui;
}
.gjs-t-button {
  background-color: #2dd4ff;
  color: #0b0f14;
  border-radius: 12px;
}
.gjs-t-link {
  color: #2dd4ff;
  text-decoration: none;
}
.gjs-t-border {
  border-radius: 14px;
  border-color: #1f2937;
}
*,
::before,
::after {
  box-sizing: border-box;

  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}
html,
:host {
  line-height: 1.5;

  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;

  line-height: inherit;
}
hr {
  height: 0;

  color: inherit;
  border-top-width: 1px;
}
abbr:where([title]) {
  text-decoration: underline dotted;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;

  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  text-indent: 0;

  border-color: inherit;
  border-collapse: collapse;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;

  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}
button,
select {
  text-transform: none;
}
button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  appearance: button;
  -webkit-appearance: button;

  background-color: transparent;
  background-image: none;
}
:-moz-focusring {
  outline: auto;
}
:-moz-ui-invalid {
  box-shadow: none;
}
progress {
  vertical-align: baseline;
}
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;

  font: inherit;
}
summary {
  display: list-item;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
dialog {
  padding: 0;
}
textarea {
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;

  color: #9ca3af;
}
button,
[role="button"] {
  cursor: pointer;
}
:disabled {
  cursor: default;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}
img,
video {
  max-width: 100%;
  height: auto;
}
[hidden] {
  display: none;
}
.body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body *::selection {
  background-color: rgb(103 232 249 / 1);
  color: rgb(15 23 42 / 1);
}
.body *::selection:hover {
  color: rgb(15 23 42 / 1);
  background-color: rgb(103 232 249 / 1);
}
.body *::selection::selection {
  color: rgb(15 23 42 / 1);
  background-color: rgb(103 232 249 / 1);
}
.body *::selection:active {
  background-color: rgb(103 232 249 / 1);
}
.body::selection::selection {
  color: rgb(15 23 42 / 1);
  background-color: rgb(103 232 249 / 1);
}
.header {
  width: 100%;
  border-bottom-width: 1px;
  border-color: rgb(30 41 59 / 0.7);
  background-image: linear-gradient(
    to bottom,
    rgb(15 23 42 / 0.4),
    rgb(15 23 42 / 0)
  );
  backdrop-filter: blur(8px);
}
.header-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .header-container {
    padding: 1rem; /* menor padding em telas pequenas */
    flex-direction: column; /* itens empilhados verticalmente */
    align-items: flex-start; /* alinha itens à esquerda */
  }
}
@media (max-width: 320px) {
	.features-header {
		flex-direction: column;
	}
	.extras-header {
		flex-direction: column;
	}
}
@media (max-width: 375px) {
	.features-header {
		flex-direction: column;
	}
	.extras-header {
		flex-direction: column;
	}
}
@media (max-width: 425px) {
	.features-header {
		flex-direction: column;
	}
	.extras-header {
		flex-direction: column;
	}
	#ijbwei {
		grid-area: 5 / 1 / 5 / 3 !important;
		grid-column-start: 1 !important;
		grid-column-end: 4 !important;
    }
	.included-image {
		grid-column-start: 1 !important;
		grid-column-end: 5 !important;
	}
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-icon {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.75rem;
  background-color: rgb(6 182 212 / 0.2);
  border-width: 1px;
  border-color: rgb(34 211 238 / 0.4);
  display: grid;
  place-items: center;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.brand-icon-image {
  height: 1.5rem;
  width: 1.5rem;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.brand-title {
  color: rgb(103 232 249 / 1);
  font-weight: 600;
  letter-spacing: 0.025em;
}
.brand-subtitle {
  color: rgb(148 163 184 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.navbar {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-link {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-underline-offset: 4px;
  border-radius: 0.375rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.nav-link:hover {
  text-decoration-line: underline;
  color: rgb(165 243 252 / 1);
}
.nav-link:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
.primary-cta-header {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  border-radius: 0.75rem;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(1px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
.primary-cta-header:hover:active {
  background-color: rgb(103 232 249 / 1);
}
.primary-cta-header:hover {
  background-color: rgb(103 232 249 / 1);
}
.primary-cta-header:active {
  background-color: rgb(165 243 252 / 1);
}
.primary-cta-header:active:hover {
  background-color: rgb(165 243 252 / 1);
}
.main {
  width: 100%;
}
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  inset: 0px;
  z-index: -10;
}
.hero-radial-1 {
  position: absolute;
  inset: 0px;
  background-image: radial-gradient(
    1200px 600px at 20% 20%,
    rgba(45, 212, 255, 0.15),
    transparent
  );
}
.hero-radial-2 {
  position: absolute;
  inset: 0px;
  background-image: radial-gradient(
    900px 500px at 80% 30%,
    rgba(255, 122, 69, 0.12),
    transparent
  );
}
.hero-gradient-overlay {
  position: absolute;
  inset: 0px;
  background-image: linear-gradient(
    180deg,
    rgba(11, 15, 20, 0) 0%,
    rgba(11, 15, 20, 0.8) 80%,
    #0b0f14 100%
  );
}
.hero-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-title {
  font-weight: 800;
  letter-spacing: -0.025em;
  filter: drop-shadow(0 0 20px rgba(45, 212, 255, 0.15));
}
.hero-tagline {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: rgb(203 213 225 / 1);
  max-width: 42rem;
}
.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 0.8);
  background-color: rgb(15 23 42 / 0.4);
  backdrop-filter: blur(8px);
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hero-bullet:hover {
  border-color: rgb(34 211 238 / 0.4);
}
.hero-bullet-icon {
  height: 1.25rem;
  width: 1.25rem;
}
.hero-bullet-text {
  color: rgb(203 213 225 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(1px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
.primary-cta:focus {
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgb(34 211 238 / 0.3),
    0 0 #0000;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.primary-cta:hover:active {
  background-color: rgb(103 232 249 / 1);
}
.primary-cta:hover {
  background-color: rgb(103 232 249 / 1);
}
.primary-cta:active {
  background-color: rgb(165 243 252 / 1);
}
.primary-cta:active:hover {
  background-color: rgb(165 243 252 / 1);
}
.primary-cta-icon {
  height: 1.25rem;
  width: 1.25rem;
}
.secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 0.8);
  color: rgb(226 232 240 / 1);
}
.secondary-cta:hover {
  color: rgb(165 243 252 / 1);
  border-color: rgb(34 211 238 / 0.4);
}
.secondary-cta:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
.secondary-cta-icon {
  height: 1.25rem;
  width: 1.25rem;
}
.hero-media-wrapper {
  position: relative;
}
.hero-media-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 0 1px rgba(45, 212, 255, 0.08),
    0 30px 60px -15px rgba(0, 0, 0, 0.5);
}
.hero-image {   cancelado para promo natal
  width: 100%;
  height: 420px;
  object-fit: cover;
}
/*.hero-image {    cancelado e de promo natal
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: opacity 1s ease;
  opacity: 1;
}*/

/* Garante que o container principal serve de referência */
.hero-section,
.hero-container,
.hero-media-wrapper {
  position: relative;
  width: 100%;
}
/* Centraliza o badge horizontalmente e ajusta posição vertical */
.hero-badge {
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: -3.5rem !important;

  background-color: rgb(15 23 42 / 0.8);
  border: 1px solid rgb(30 41 59 / 1);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;

  width: max-content;
  max-width: 90%;
  box-sizing: border-box;
}

/* 📱 Em ecrãs pequenos, sobe mais o badge */
@media (max-width: 480px) {
  .hero-badge {
    bottom: -6.5rem !important;
	padding: 0.5rem 0.5rem; /* menos alto e menos largo */
  }
}

.hero-badge-icon {
  height: 1.25rem;
  width: 1.25rem;
}
.hero-badge-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(226 232 240 / 1);
}
.features-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top-width: 1px;
  border-color: rgb(30 41 59 / 0.7);
}
.features-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.features-title {
  font-weight: 700;
  letter-spacing: -0.025em;
}
.features-caption {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(148 163 184 / 1);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.feature-card {
  padding: 1.25rem;
  border-radius: 1rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 0.8);
  background-color: rgb(15 23 42 / 0.4);
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.feature-card:hover {
  border-color: rgb(34 211 238 / 0.4);
}
.feature-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.feature-icon {
  height: 1.5rem;
  width: 1.5rem;
}
.feature-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: rgb(165 243 252 / 1);
}
.feature-text {
  color: rgb(203 213 225 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.quote-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 64rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.blockquote {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  background-color: rgb(15 23 42 / 0.4);
  backdrop-filter: blur(8px);
}
.quote-icon {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  height: 2rem;
  width: 2rem;
}
.quote-text {
  font-size: 1.5rem;
  line-height: 2rem;
  color: rgb(241 245 249 / 1);
  font-weight: 600;
  letter-spacing: -0.025em;
}
.pricing-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top-width: 1px;
  border-color: rgb(30 41 59 / 0.7);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: flex-start;
}
.pricing-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  background-color: rgb(15 23 42 / 0.4);
}
.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.pricing-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
.pricing-icon {
  height: 1.75rem;
  width: 1.75rem;
}
.price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}
.price-amount {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 800;
  color: rgb(103 232 249 / 1);
}
.price-tax-note {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(148 163 184 / 1);
  margin-bottom: 0.25rem;
}
.stock-delivery-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.stock-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  border-radius: 9999px;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  color: rgb(226 232 240 / 1);
  background-color: rgb(15 23 42 / 0.6);
}
.stock-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: rgb(251 191 36 / 1);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.delivery-info {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(203 213 225 / 1);
}
.reservation-terms {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border-width: 1px;
  border-color: rgb(34 211 238 / 0.3);
  background-color: rgb(6 182 212 / 0.1);
}
.reservation-text {
  color: rgb(241 245 249 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.pricing-cta-row {
  margin-top: 1.5rem;
}
.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 600;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(1px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
.pricing-cta:focus {
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgb(34 211 238 / 0.3),
    0 0 #0000;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.pricing-cta:hover:active {
  background-color: rgb(103 232 249 / 1);
}
.pricing-cta:hover {
  background-color: rgb(103 232 249 / 1);
}
.pricing-cta:active {
  background-color: rgb(165 243 252 / 1);
}
.pricing-cta:active:hover {
  background-color: rgb(165 243 252 / 1);
}
.pricing-cta-icon {
  height: 1.25rem;
  width: 1.25rem;
}
.included-media-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  background-color: rgb(15 23 42 / 0.4);
}
.included-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.included-icon {
  height: 1.5rem;
  width: 1.5rem;
}
.included-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: rgb(253 186 116 / 1);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.included-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0.75rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
}
.extras-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top-width: 1px;
  border-color: rgb(30 41 59 / 0.7);
}
.extras-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.extras-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
.extras-note {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(148 163 184 / 1);
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.extra-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  background-color: rgb(15 23 42 / 0.4);
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  cursor: pointer;
}
.extra-item:hover {
  border-color: rgb(34 211 238 / 0.4);
}
.extra-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.extra-checkbox-visual {
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: rgb(51 65 85 / 1);
  display: grid;
  place-items: center;
}
.extra-checkbox-icon {
  height: 1rem;
  width: 1rem;
  opacity: 0;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.extra-content {
  flex: 1 1 0%;
}
.extra-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.extra-title {
  color: rgb(241 245 249 / 1);
  font-weight: 600;
}
.extra-price {
  color: rgb(103 232 249 / 1);
  font-weight: 600;
}
.extra-description {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(148 163 184 / 1);
  margin-top: 0.25rem;
}
.reserve-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top-width: 1px;
  border-color: rgb(30 41 59 / 0.7);
}
.reserve-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.reserve-form-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  background-color: rgb(15 23 42 / 0.4);
}
.reserve-form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.reserve-form-icon {
  height: 1.5rem;
  width: 1.5rem;
}
.reserve-form-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: rgb(165 243 252 / 1);
}
.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(203 213 225 / 1);
}
.form-input {
  width: 100%;
  border-radius: 0.75rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  background-color: rgb(2 6 23 / 1);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: rgb(241 245 249 / 1);
}
.form-input::placeholder::placeholder {
  color: rgb(100 116 139 / 1);
}
.form-input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
.form-fieldset {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-legend {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(203 213 225 / 1);
}
.form-hint {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(148 163 184 / 1);
}
.form-extras-mirror {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.form-extra-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  background-color: rgb(2 6 23 / 1);
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  cursor: pointer;
}
.form-extra-item:hover {
  border-color: rgb(34 211 238 / 0.4);
}
.form-extra-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.form-extra-checkbox-visual {
  height: 1rem;
  width: 1rem;
  border-radius: 0.25rem;
  border-width: 1px;
  border-color: rgb(51 65 85 / 1);
  display: grid;
  place-items: center;
}
.form-extra-checkbox-icon {
  height: 0.75rem;
  width: 0.75rem;
  display: none;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.form-extra-label {
  color: rgb(226 232 240 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.summary-card {
  padding: 1rem;
  border-radius: 0.75rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  background-color: rgb(2 6 23 / 1);
}
.summary-label {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(148 163 184 / 1);
}
.summary-value {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: rgb(241 245 249 / 1);
}
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 600;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(1px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
.submit-button:focus {
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgb(34 211 238 / 0.3),
    0 0 #0000;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.submit-button:hover:active {
  background-color: rgb(103 232 249 / 1);
}
.submit-button:hover {
  background-color: rgb(103 232 249 / 1);
}
.submit-button:active {
  background-color: rgb(165 243 252 / 1);
}
.submit-button:active:hover {
  background-color: rgb(165 243 252 / 1);
}
.submit-icon {
  height: 1.25rem;
  width: 1.25rem;
}
.form-disclaimer {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(148 163 184 / 1);
}
.why-us-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  background-color: rgb(15 23 42 / 0.4);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-us-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.why-us-icon {
  height: 1.5rem;
  width: 1.5rem;
}
.why-us-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: rgb(253 186 116 / 1);
}
.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.why-us-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.why-us-item-icon {
  height: 1.25rem;
  width: 1.25rem;
  margin-top: 0.125rem;
}
.why-us-item-text {
  color: rgb(203 213 225 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.why-us-image-card {
  margin-top: 0.5rem;
  border-radius: 0.75rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  overflow: hidden;
}
.why-us-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.footer {
  border-top-width: 1px;
  border-color: rgb(30 41 59 / 0.7);
}
.footer-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand-icon {
  height: 1.5rem;
  width: 1.5rem;
}
.footer-brand-name {
  font-weight: 600;
  color: rgb(103 232 249 / 1);
}
.footer-brand-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(148 163 184 / 1);
  max-width: 24rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact-title {
  color: rgb(226 232 240 / 1);
  font-weight: 600;
}
.footer-contact-link {
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 0.25rem;
}
.footer-contact-link:hover {
  color: rgb(165 243 252 / 1);
}
.footer-contact-link:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-social-title {
  color: rgb(226 232 240 / 1);
  font-weight: 600;
}
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(203 213 225 / 1);
  border-radius: 0.25rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.footer-social-link:hover {
  color: rgb(165 243 252 / 1);
}
.footer-social-link:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
.footer-social-icon {
  height: 1.25rem;
  width: 1.25rem;
}
.footer-bottom-bar {
  border-top-width: 1px;
  border-color: rgb(30 41 59 / 0.7);
}
.footer-bottom-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(100 116 139 / 1);
}
.footer-legal-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-legal-link {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(100 116 139 / 1);
  border-radius: 0.25rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.footer-legal-link:hover {
  color: rgb(165 243 252 / 1);
}
.footer-legal-link:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(2px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
#i6lgyu .pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
#i6lgyu .pricing-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
#i6lgyu .pricing-icon {
  height: 1.75rem;
  width: 1.75rem;
}
#i6lgyu .pricing-media {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
#i6lgyu .product-thumb {
  border-radius: 1rem;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  overflow: hidden;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 0 1px rgba(45, 212, 255, 0.08);
}
#i6lgyu .product-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
#i6lgyu .product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#i6lgyu .meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(148 163 184 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
#i6lgyu .meta-icon {
  height: 1rem;
  width: 1rem;
}
#i6lgyu .price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}
#i6lgyu .price-amount {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 800;
  color: rgb(103 232 249 / 1);
}
#i6lgyu .price-tax-note {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(148 163 184 / 1);
  margin-bottom: 0.25rem;
}
#i6lgyu .stock-delivery-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
#i6lgyu .stock-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  border-radius: 9999px;
  border-width: 1px;
  border-color: rgb(30 41 59 / 1);
  color: rgb(226 232 240 / 1);
  background-color: rgb(15 23 42 / 0.6);
}
#i6lgyu .stock-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: rgb(251 191 36 / 1);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
#i6lgyu .delivery-info {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(203 213 225 / 1);
}
#i6lgyu .reservation-terms {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border-width: 1px;
  border-color: rgb(34 211 238 / 0.3);
  background-color: rgb(6 182 212 / 0.1);
}
#i6lgyu .reservation-text {
  color: rgb(241 245 249 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
#i6lgyu .pricing-cta-row {
  margin-top: 1.5rem;
}
#i6lgyu .pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 600;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(1px + 0px) rgb(59 130 246 / 0.5),
    0 0 #0000;
}
#i6lgyu .pricing-cta-icon {
  height: 1.25rem;
  width: 1.25rem;
}
#iuix {
  overflow-y: auto;
  min-height: 100vh;
  -webkit-overflow-scrolling: touch;
}
#i5uwz {
  overflow: visible;
}
#hero {
  overflow: visible;
  background-clip: padding-box;
}
#yt-audio-block {
  position: relative;
  z-index: 50;
}
#yt-audio-block .yt-hidden-player {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}
#yt-audio-block .yt-audio-mute-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background-color: #2dd4ff;
  color: #0b0f14;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(1px + 0px) rgba(59, 130, 246, 0.5),
    0 0 #0000;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
#yt-audio-block .yt-audio-mute-btn:hover {
  background-color: #67e8f9;
  transform: translateY(-1px);
}
#yt-audio-block .yt-audio-mute-btn:active {
  background-color: #a5f3fc;
  transform: translateY(0);
}
#yt-audio-block .yt-audio-icon {
  height: 1.25rem;
  width: 1.25rem;
}
#yt-scroll-top-block .yt-scroll-top-label {
  font-size: 24px;
  font-weight: 700; 
}
#yt-audio-block .yt-audio-label {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
#audio-player-with-mute-2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(30, 41, 59, 0.7);
  display: none;
}
#audio-player-with-mute .ap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
#audio-player-with-mute .ap-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#audio-player-with-mute .ap-icon {
  height: 1.5rem;
  width: 1.5rem;
}
#audio-player-with-mute .ap-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: rgb(165 243 252);
  font-family: Oxanium, Inter, ui-sans-serif, system-ui;
}
#audio-player-with-mute .ap-note {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(148 163 184);
}
#audio-player-with-mute .ap-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(30 41 59);
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
}
#audio-player-with-mute .ap-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}
#audio-player-with-mute .ap-track-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#audio-player-with-mute .ap-track-icon {
  height: 1.25rem;
  width: 1.25rem;
}
#audio-player-with-mute .ap-track-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#audio-player-with-mute .ap-track-title {
  font-weight: 600;
  color: rgb(241 245 249);
}
#audio-player-with-mute .ap-track-meta {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(148 163 184);
}
#audio-player-with-mute .ap-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#audio-player-with-mute .ap-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 600;
  border-radius: 0.75rem;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(1px + 0px) rgba(59, 130, 246, 0.5),
    0 0 #0000;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
#audio-player-with-mute .ap-toggle-btn:hover {
  transform: translateY(-1px);
  background-color: rgb(103 232 249);
}
#audio-player-with-mute .ap-toggle-btn:active {
  transform: translateY(0);
  background-color: rgb(165 243 252);
}
#audio-player-with-mute .ap-toggle-icon {
  height: 1.25rem;
  width: 1.25rem;
}
#audio-player-with-mute .ap-volume-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
#audio-player-with-mute .ap-volume-label {
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(148 163 184);
}
#audio-player-with-mute .ap-volume-slider {
  width: 160px;
  accent-color: #2dd4ff;
}
#sound-status.sound-status-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(30, 41, 59, 0.7);
  display: none;
}
#sound-status .sound-status-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#sound-status .sound-status-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border-radius: 0.75rem;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(1px + 0px) rgba(59, 130, 246, 0.5),
    0 0 #0000;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
#sound-status .sound-status-btn:hover {
  transform: translateY(-1px);
  background-color: rgb(103, 232, 249);
}
#sound-status .sound-status-btn:active {
  transform: translateY(0);
  background-color: rgb(165, 243, 252);
}
#sound-status .sound-status-icon {
  height: 1.25rem;
  width: 1.25rem;
}
/* #iliv9 {
  left: 88px;
  top: 432px;
  position: absolute;
  width: 318.71875px;
  height: 46px;
} */
#iliv9.hero-badge[style] {
  bottom: 12rem !important;   /* 🔼 ajusta este valor para subir mais */
  left: 50% !important;
  transform: translateX(-50%) !important;
  position: absolute !important;
  z-index: 999 !important;
}
#ijbwei {
  padding: 10px;
  grid-area: 2 / 2 / 3 / 4;
}
#izam22 {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 122px;
  margin-bottom: 0px;
  margin-left: 0px;
  position: relative;
  height: 270px;
  width: 100%;
  min-width: 0px;
}
#i0mrr {
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  background-clip: border-box;
}
.extras-section .extra-media-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  align-items: center;
}
.extras-section .extra-thumb {
  border-radius: 1rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(30, 41, 59, 1);
  overflow: hidden;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 0 1px rgba(45, 212, 255, 0.08);
  margin: 0;
}
.extras-section .extra-thumb-image {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.extras-section .extra-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.extras-section {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 208px;
  padding: 1.25rem;
}
.extras-section .extra-media-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1rem;
  align-items: center;
}
.extras-section .extra-thumb {
  border-radius: 1rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(30, 41, 59, 1);
  overflow: hidden;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 0 1px rgba(45, 212, 255, 0.08);
  margin: 0;
}
.extras-section .extra-thumb-image {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.extras-section .extra-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.extras-section .extra-content {
  flex: 1 1 0%;
}
.extras-section .extra-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.extras-section .extra-title {
  color: rgb(241 245 249 / 1);
  font-weight: 600;
}
.extras-section .extra-price {
  color: rgb(103 232 249 / 1);
  font-weight: 600;
}
.extras-section .extra-description {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgb(148 163 184 / 1);
  margin-top: 0.25rem;
}
#dtb-identifier.dtb-identifier-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(30, 41, 59, 0.7);
}
#dtb-identifier .dtb-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
#dtb-identifier .dtb-icon {
  height: 1.5rem;
  width: 1.5rem;
}
#dtb-identifier .dtb-title {
  color: #eaf4ff;
  font-size: 32px;
  line-height: 1.25;
  font-family: Oxanium, Inter, ui-sans-serif, system-ui;
}
#dtb-identifier .dtb-note {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}
#dtb-identifier .dtb-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(30, 41, 59);
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
}
#dtb-identifier .dtb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}
#dtb-identifier .dtb-upload-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#dtb-identifier .dtb-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #cbd5e1;
}
#dtb-identifier .dtb-file-input {
  width: 100%;
  border-radius: 0.75rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(30, 41, 59);
  background-color: rgb(2, 6, 23);
  padding: 0.75rem 1rem;
  color: #f1f5f9;
}
#dtb-identifier .dtb-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
#dtb-identifier .dtb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border-radius: 0.75rem;
  background-color: #2dd4ff;
  color: #0b0f14;
  box-shadow: 0 0 0 0px #fff, 0 0 0 calc(1px + 0px) rgba(59, 130, 246, 0.5),
    0 0 #0000;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
#dtb-identifier .dtb-btn:hover {
  background-color: #67e8f9;
  transform: translateY(-1px);
}
#dtb-identifier .dtb-btn:active {
  background-color: #a5f3fc;
  transform: translateY(0);
}
#dtb-identifier .dtb-btn-icon {
  height: 1.25rem;
  width: 1.25rem;
}
#dtb-identifier .dtb-file-name {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #94a3b8;
}
#dtb-identifier .dtb-result-card {
  padding: 1rem;
  border-radius: 0.75rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(30, 41, 59);
  background-color: rgb(2, 6, 23);
}
#dtb-identifier .dtb-result-title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#dtb-identifier .dtb-result-text {
  font-size: 0.95rem;
  line-height: 1.5rem;
  color: #cbd5e1;
}
#dtb-identifier .dtb-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
#dtb-identifier .dtb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(30, 41, 59);
  color: #e6edf3;
  background-color: rgba(15, 23, 42, 0.6);
  font-size: 0.75rem;
  line-height: 1rem;
}
#dtb-identifier .dtb-badge-ok .dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: #22c55e;
}
#dtb-identifier .dtb-badge-warn .dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: #f59e0b;
}
#dtb-identifier .dtb-badge-error .dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background-color: #ef4444;
}
#dtb-identifier .dtb-help {
  padding: 1rem;
  border-radius: 0.75rem;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(30, 41, 59);
  background-color: rgb(2, 6, 23);
}
#dtb-identifier .dtb-help-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#dtb-identifier .dtb-help-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #cbd5e1;
}
#dtb-identifier .dtb-help-icon {
  height: 1rem;
  width: 1rem;
  margin-top: 0.125rem;
}
#dtb-badges {
  display: none;
}
#dtb-compact-block .dtb-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
#dtb-compact-block .dtb-result-card {
  margin-top: 1rem;
}
#i0m4rv {
  padding: 10px;
}
#iwnmt1 {
  padding: 10px;
}
#ivbhoi {
  font-size: 10pt;
}
#i6zdlz {
  text-align: left;
}
#i4hf9w {
  padding: 10px;
}
#if43xz {
  font-size: 10pt;
}
#i9d2mk {
  font-size: 10pt;
}
#ia46ga {
  font-size: 10pt;
}
#i1qtp5 {
  font-size: 10pt;
}
#iy32k2 {
  font-size: 14pt;
}
#ius4cg {
  font-size: 10pt;
}
#iplvlh {
  font-size: 10pt;
}
#i8vhqx {
  font-size: 10pt;
}
#i0oerq {
  font-size: 10pt;
}
#iicxhc {
  font-size: 10pt;
}
#iqogmf {
  font-size: 10pt;
}
#ixrzb5 {
  font-size: 10pt;
}
#it0ki6 {
  font-size: 10pt;
}
#iu1od4 {
  font-size: 12pt;
}
#ik8br8 {
  font-size: 12pt;
}
#idht58 {
  font-size: 12pt;
}
#ismxat {
  font-size: 12pt;
}
#ilcztd {
  padding: 10px;
}
#i4cq93 {
  font-size: 14pt;
}
#i9rce9 {
  padding: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 147px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}
#i7dchk {
  background-clip: border-box;
}
#ivpn1x {
  display: none;
}
#iw75hz {
  background-image: url("assets/r36s_supports_20_emulators");
  background-size: contain;
  background-position: center center;
  background-attachment: scroll;
  background-repeat: no-repeat;
}
#i6hjje {
  background-image: url("assets/r36s_emulators.png");
  background-size: contain;
  background-position: center center;
  background-attachment: scroll;
  background-repeat: no-repeat;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@media (max-width: 992px) {
  .hero-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .hero-bullets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-image {
    height: 360px;
  }
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .extras-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .reserve-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .form-extras-mirror {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 1rem;
  }
  #i6lgyu .pricing-media {
    grid-template-columns: 160px 1fr;
  }
  #i6lgyu .product-image {
    height: 120px;
  }
  #yt-audio-block .yt-audio-mute-btn {
    bottom: 1.25rem;
    right: 1rem;
    padding: 0.75rem 0.9rem;
  }
  #audio-player-with-mute .ap-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #audio-player-with-mute .ap-controls {
    justify-content: flex-start;
  }
  #sound-status.sound-status-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #sound-status .sound-status-container {
    justify-content: flex-start;
  }
  .extras-section .extra-media-grid {
    grid-template-columns: 140px 1fr;
    gap: 0.75rem;
  }
  .extras-section .extra-thumb-image {
    height: 120px;
  }
  .extras-section .extra-media-grid {
    grid-template-columns: 140px 1fr;
    gap: 0.75rem;
    align-items: center;
  }
  .extras-section .extra-thumb-image {
    height: 120px;
  }
  #dtb-identifier .dtb-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
  }
  #dtb-compact-block .dtb-actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .hero-container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .hero-bullets {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .hero-image {
    height: 240px;
  }
  .hero-badge {
    left: 0px;
    bottom: -1.25rem;
  }
  .features-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .quote-text {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .form-extras-mirror {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .summary-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  #i6lgyu .pricing-media {
    grid-template-columns: 1fr;
  }
  #i6lgyu .product-image {
    height: 160px;
  }
  #yt-audio-block .yt-audio-mute-btn {
    bottom: 1rem;
    right: 0.75rem;
    padding: 0.625rem 0.875rem;
  }
  #yt-audio-block .yt-audio-label {
    display: none;
  }
  #audio-player-with-mute .ap-volume-slider {
    width: 120px;
  }
  #sound-status.sound-status-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .extras-section .extra-media-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .extras-section .extra-thumb-image {
    height: 120px;
  }
  .extras-section .extra-media-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .extras-section .extra-thumb-image {
    height: 120px;
  }
  #dtb-identifier .dtb-title {
    font-size: 28px;
    line-height: 1.25;
  }
  #dtb-compact-block .dtb-actions {
    gap: 0.5rem;
  }
}
.form-extra-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-extra-input {
  display: none; /* esconde o input real */
}

.form-extra-checkbox-visual {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-extra-checkbox-visual img {
  width: 14px;
  height: 14px;
  opacity: 0; /* invisível por padrão */
  transition: opacity 0.2s;
}

.form-extra-input:checked + .form-extra-checkbox-visual img {
  opacity: 1; /* mostra o visto quando checked */
}
noscript p{
	font-size: 32px;
}

.desktop {
	display: none;
}

.mobile {
	display: flex;
}

@media (min-width: 768px) {
	.desktop {
		display: flex;
	}

	.mobile {
		display: none;
	}
}

/* Estilo base do wrapper (mobile por padrão) */
.form-extra-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  width: 100% !important;        /* ocupa todo o container */
  max-width: 100% !important;    /* nunca ultrapassa o container */
  cursor: pointer;
  flex-wrap: wrap;                /* permite quebrar linha se necessário */
  box-sizing: border-box;
}

/* Texto dentro do wrapper */
.form-extra-item span:last-child {
  flex: 1 1 auto !important;
  min-width: 0 !important;       /* evita estrangulamento em flex/grid */
  font-size: 14px;
  line-height: 1.4;
  word-break: break-word;
  white-space: normal;
}

/* A partir de 768px (tablet/desktops) */
@media screen and (min-width: 768px) {
  .form-extra-item {
    width: 100% !important;      /* estica totalmente */
    max-width: none !important;  /* permite esticar além do container limitado */
    flex-grow: 1 !important;
    flex-basis: auto !important;
  }
}

.natal-decoracao {
  position: fixed;        /* Fixa na tela — não empurra nada */
  top: 0;
  left: 0;
  width: 420px;           /* Ajusta o tamanho da imagem */
  z-index: 9999;          /* Garante que fica acima do header e conteúdo */
  pointer-events: none;   /* Não bloqueia cliques em menus ou links */
  display: block;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .natal-decoracao {
    width: 220px;       /* reduz o tamanho no telemóvel */
    top: 0px;
    left: 0px;
  }
}
@media (max-width: 480px) {
  .natal-decoracao {
    width: 120px;
    top: 0;
    left: 0;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center; align-items: center;
}

.modal-content {
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  max-height: 80%;
  overflow-y: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  font-size: 14px;
  line-height: 1.4;
}

.hero-container-update {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

#retro-updates, 
#retro-updates * {
  color: #f0f9ff !important;  /* letras claras */
  background-color: #0b0f14 !important;  /* fundo escuro */
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1.3rem !important;
  line-height: 1.8 !important;
}

/* Títulos maiores e coloridos */
#retro-updates h2 {
  font-size: 2.5rem !important;
  color: #2dd4ff !important;
  margin-bottom: 20px;
}

#retro-updates h3 {
  font-size: 2rem !important;
  color: #38bdf8 !important;
  margin-top: 25px;
}

#retro-updates h4 {
  font-size: 1.6rem !important;
  color: #7dd3fc !important;
  margin-top: 15px;
}

/* Lista */
#retro-updates ul {
  list-style: inside disc !important;
  margin-left: 25px !important;
}

/* Linha horizontal */
#retro-updates hr {
  border-color: #38bdf8 !important;
  margin: 25px 0 !important;
}

.update-warning {
  background-color: #1e40af; /* azul escuro */
  color: #ffffff; /* letras brancas */
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.close { float: right; font-size: 20px; cursor: pointer; }
input { width: 100%; padding: 8px; margin-bottom: 10px; box-sizing: border-box; font-size: 14px; }
h2 { margin-top: 0; font-size: 16px; }
ul { list-style: none; padding-left: 0; margin: 0; }
li { margin: 3px 0; color: #000; font-size: 14px; }
.emulator-header { cursor: pointer; font-weight: bold; margin-top: 10px; color: #000; font-size: 15px; }