:root {
  --background: #06111f;
  --background-soft: #0a1a2d;
  --surface: #ffffff;
  --surface-soft: #f3f7fb;
  --text: #102033;
  --text-light: #eef8ff;
  --muted: #64758a;
  --primary: #16d9e3;
  --primary-dark: #00aab7;
  --accent: #4a7dff;
  --success: #20c57a;
  --border: rgba(16, 32, 51, 0.12);
  --shadow: 0 24px 60px rgba(0, 18, 38, 0.18);
  --radius: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--text-light);
  background: rgba(6, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header__content {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
}

.logo__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #001319;
  background: linear-gradient(135deg, #8fffff, var(--primary));
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(22, 217, 227, 0.35);
}

.nav {
  display: flex;
  gap: 28px;
  color: rgba(238, 248, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--primary);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
  color: #001319;
  background: var(--primary);
}

.button--primary {
  color: #001319;
  background: linear-gradient(135deg, #7cffff, var(--primary));
  box-shadow: 0 15px 36px rgba(22, 217, 227, 0.25);
}

.button--primary:hover,
.button--small:hover {
  box-shadow: 0 18px 42px rgba(22, 217, 227, 0.35);
}

.button--ghost {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button--ghost-dark {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  padding: 135px 0 80px;
  color: var(--text-light);
  background:
    radial-gradient(circle at 65% 30%, rgba(16, 120, 145, 0.22), transparent 34%),
    linear-gradient(135deg, #040c17 0%, #07192c 52%, #04111d 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}

.hero__glow--one {
  top: 10%;
  left: -180px;
  background: var(--accent);
}

.hero__glow--two {
  right: -180px;
  bottom: -100px;
  background: var(--primary);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--dark .eyebrow,
.final-cta .eyebrow {
  color: var(--primary);
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(2.65rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero h1 span {
  display: block;
  color: var(--primary);
}

.hero__description {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(238, 248, 255, 0.72);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__highlights {
  max-width: 590px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__highlights div {
  display: grid;
  gap: 2px;
}

.hero__highlights strong {
  color: var(--text-light);
  font-size: 1.1rem;
}

.hero__highlights span {
  color: rgba(238, 248, 255, 0.5);
  font-size: 0.78rem;
}

.product-stage {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
  padding: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(22, 217, 227, 0.18);
  border-radius: 28px;
  pointer-events: none;
}

.product-stage__ring {
  position: absolute;
  left: 50%;
  bottom: 50px;
  width: 70%;
  height: 34%;
  border: 2px solid rgba(22, 217, 227, 0.7);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 0 28px rgba(22, 217, 227, 0.4),
    inset 0 0 24px rgba(22, 217, 227, 0.3);
}

.product-stage__image {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  filter: saturate(1.05) contrast(1.03);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  color: var(--text-light);
  background: rgba(6, 17, 31, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.floating-card--top {
  top: 15%;
  right: -25px;
}

.floating-card--bottom {
  bottom: 12%;
  left: -25px;
}

.floating-card__dot {
  width: 9px;
  height: 9px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--primary);
}

.floating-card__icon {
  color: var(--primary);
  font-size: 1.3rem;
}

.trust-bar {
  position: relative;
  z-index: 10;
  color: var(--text-light);
  background: #0b2135;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar__grid {
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 28px;
}

.trust-bar__grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(238, 248, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}

.trust-bar__grid span {
  color: var(--primary);
}

.section {
  padding: 110px 0;
}

.section--dark {
  color: var(--text-light);
  background:
    radial-gradient(circle at 15% 15%, rgba(22, 217, 227, 0.1), transparent 25%),
    #06111f;
}

.section--pricing {
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 217, 227, 0.08), transparent 25%),
    var(--surface-soft);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.showcase__content h2,
.faq-layout__intro h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p,
.showcase__content > p,
.faq-layout__intro > p {
  margin-top: 17px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section--dark .showcase__content > p {
  color: rgba(238, 248, 255, 0.64);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(13, 34, 56, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(13, 34, 56, 0.12);
}

.feature-card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: #001319;
  background: linear-gradient(135deg, #9fffff, var(--primary));
  border-radius: 15px;
  font-size: 1.35rem;
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.91rem;
}

.showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 78px;
  margin-bottom: 100px;
}

.showcase--reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.showcase--reverse .showcase__image {
  order: 2;
}

.showcase__image {
  position: relative;
}

.showcase__image::before {
  content: "";
  position: absolute;
  inset: -15px;
  background: linear-gradient(135deg, rgba(22, 217, 227, 0.28), transparent 52%);
  border-radius: 34px;
  filter: blur(1px);
}

.showcase__image img {
  position: relative;
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(238, 248, 255, 0.8);
  font-size: 0.9rem;
}

.check-list span,
.price-card__list span {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #001319;
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.stat-cards div {
  display: grid;
  gap: 3px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.stat-cards strong {
  color: var(--primary);
}

.stat-cards span {
  color: rgba(238, 248, 255, 0.55);
  font-size: 0.75rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #0a1a2d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  cursor: zoom-in;
}

.gallery__item img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery__item span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 12px;
  color: var(--text-light);
  background: rgba(6, 17, 31, 0.84);
  border-radius: 11px;
  font-size: 0.74rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 22px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(13, 34, 56, 0.08);
}

.price-card--featured {
  z-index: 2;
  color: var(--text-light);
  background: linear-gradient(160deg, #0a2238, #06111f);
  border: 1px solid rgba(22, 217, 227, 0.55);
  box-shadow:
    0 28px 68px rgba(6, 17, 31, 0.25),
    0 0 0 5px rgba(22, 217, 227, 0.08);
  transform: translateY(-14px);
}

.price-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  padding: 8px 16px;
  color: #001319;
  background: var(--primary);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
  transform: translateX(-50%);
  box-shadow: 0 10px 28px rgba(22, 217, 227, 0.3);
}

.price-card__label {
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card--featured .price-card__label {
  color: var(--primary);
}

.price-card h3 {
  margin-top: 7px;
  font-size: 1.45rem;
}

.price-card__top p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.price-card--featured .price-card__top p,
.price-card--featured .price-card__installment {
  color: rgba(238, 248, 255, 0.58);
}

.price {
  display: flex;
  align-items: flex-start;
  margin-top: 28px;
  line-height: 1;
}

.price strong {
  font-size: 4.1rem;
  letter-spacing: -0.065em;
}

.price span:first-child {
  margin: 7px 7px 0 0;
  font-size: 1rem;
  font-weight: 800;
}

.price span:last-child {
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 900;
}

.price-card__installment {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.77rem;
}

.price-card__list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  list-style: none;
}

.price-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.87rem;
}

.price-card--featured .price-card__list li {
  color: rgba(238, 248, 255, 0.72);
}

.button--purchase {
  width: 100%;
  margin-top: auto;
  color: #001319;
  background: linear-gradient(135deg, #86ffff, var(--primary));
  box-shadow: 0 14px 32px rgba(22, 217, 227, 0.2);
}

.button--purchase:hover {
  box-shadow: 0 18px 40px rgba(22, 217, 227, 0.32);
}

.affiliate-disclosure {
  max-width: 850px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
}

.faq-layout__intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-layout__intro .button {
  margin-top: 25px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq__item {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--text);
  background: transparent;
  border: 0;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq__question span {
  flex: 0 0 auto;
  color: var(--primary-dark);
  font-size: 1.45rem;
  transition: transform 0.25s ease;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq__answer p {
  min-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: padding 0.28s ease;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__item.is-open .faq__answer p {
  padding: 0 24px 22px;
}

.faq__item.is-open .faq__question span {
  transform: rotate(45deg);
}

.final-cta {
  padding: 82px 0;
  color: var(--text-light);
  background:
    radial-gradient(circle at 20% 50%, rgba(22, 217, 227, 0.18), transparent 30%),
    linear-gradient(135deg, #071629, #0a2943);
}

.final-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta__content h2 {
  max-width: 700px;
}

.footer {
  padding: 34px 0 110px;
  color: rgba(238, 248, 255, 0.62);
  background: #030a12;
}

.footer__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
}

.footer__content p {
  max-width: 620px;
  font-size: 0.75rem;
  text-align: center;
}

.footer__content > a:last-child {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
}

.mobile-buy-bar {
  position: fixed;
  z-index: 900;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px 11px 18px;
  color: var(--text-light);
  background: rgba(6, 17, 31, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(15px);
}

.mobile-buy-bar div {
  display: grid;
  line-height: 1.2;
}

.mobile-buy-bar small {
  color: rgba(238, 248, 255, 0.55);
  font-size: 0.66rem;
}

.mobile-buy-bar strong {
  font-size: 0.95rem;
}

.mobile-buy-bar .button {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.8rem;
}

.lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  background: rgba(1, 7, 13, 0.9);
  backdrop-filter: blur(12px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox img {
  max-width: min(920px, 95vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .showcase,
  .showcase--reverse,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 55px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__description {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__highlights {
    margin-inline: auto;
  }

  .product-stage {
    max-width: 580px;
    transform: none;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card--featured {
    transform: none;
  }

  .showcase--reverse .showcase__image {
    order: 0;
  }

  .showcase,
  .showcase--reverse {
    gap: 40px;
  }

  .showcase__image {
    max-width: 650px;
    margin-inline: auto;
  }

  .faq-layout {
    gap: 45px;
  }

  .faq-layout__intro {
    position: static;
    text-align: center;
  }

  .gallery__item img {
    height: 320px;
  }

  .footer__content {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header__content {
    min-height: 66px;
  }

  .header .button--small {
    display: none;
  }

  .hero {
    padding: 112px 0 65px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .hero__description {
    font-size: 0.95rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__highlights {
    gap: 9px;
  }

  .hero__highlights strong {
    font-size: 0.9rem;
  }

  .hero__highlights span {
    font-size: 0.66rem;
  }

  .product-stage {
    padding: 22px;
    border-radius: 28px;
  }

  .product-stage::before {
    inset: 10px;
    border-radius: 21px;
  }

  .product-stage__image {
    border-radius: 20px;
  }

  .floating-card--top {
    top: 7%;
    right: -4px;
  }

  .floating-card--bottom {
    bottom: 8%;
    left: -4px;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .features-grid,
  .pricing-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 25px;
  }

  .showcase {
    margin-bottom: 74px;
  }

  .check-list,
  .stat-cards {
    grid-template-columns: 1fr;
  }

  .gallery__item img {
    height: auto;
    max-height: 540px;
  }

  .price-card {
    padding: 29px 25px;
  }

  .price strong {
    font-size: 3.7rem;
  }

  .final-cta__content {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .mobile-buy-bar {
    display: flex;
  }

  .footer {
    padding-bottom: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* PAGAMENTO SOMENTE NA ENTREGA */
.cod-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 590px;
  margin-bottom: 24px;
  padding: 13px 17px;
  color: #eafff5;
  background: linear-gradient(135deg, rgba(32, 197, 122, 0.18), rgba(32, 197, 122, 0.08));
  border: 1px solid rgba(75, 239, 158, 0.42);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(32, 197, 122, 0.12);
}
.cod-hero-badge__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #04160e;
  background: #52eba1;
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(82, 235, 161, 0.35);
}
.cod-hero-badge div { display: grid; gap: 2px; }
.cod-hero-badge strong {
  color: #7dffbd;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}
.cod-hero-badge span:last-child {
  color: rgba(238, 255, 247, 0.74);
  font-size: 0.76rem;
}
.hero__payment-highlight {
  display: block;
  margin-top: 12px;
  color: #78ffb9;
  font-weight: 800;
}
.cod-section {
  position: relative;
  z-index: 15;
  padding: 44px 0;
  background: linear-gradient(180deg, #f2fff8 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(32, 197, 122, 0.16);
}
.cod-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px 34px;
  color: #0b2b1d;
  background: radial-gradient(circle at 0% 50%, rgba(32, 197, 122, 0.13), transparent 32%), #ffffff;
  border: 1px solid rgba(32, 197, 122, 0.28);
  border-radius: 26px;
  box-shadow: 0 20px 55px rgba(20, 90, 58, 0.1);
}
.cod-card__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #052316;
  background: linear-gradient(135deg, #8fffc6, #32d98c);
  border-radius: 20px;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(32, 197, 122, 0.22);
}
.cod-card .eyebrow { margin-bottom: 7px; color: #169760; }
.cod-card h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.cod-card p { margin-top: 10px; color: #527063; font-size: 0.91rem; }
.button--cod {
  min-width: 210px;
  color: #052316;
  background: linear-gradient(135deg, #8fffc6, #32d98c);
  box-shadow: 0 14px 32px rgba(32, 197, 122, 0.2);
}
.pay-on-delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 11px 12px;
  color: #087248;
  background: rgba(32, 197, 122, 0.09);
  border: 1px solid rgba(32, 197, 122, 0.22);
  border-radius: 12px;
  font-size: 0.78rem;
  text-align: center;
}
.pay-on-delivery span {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: white;
  background: #20c57a;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}
.price-card--featured .pay-on-delivery {
  color: #89ffc1;
  background: rgba(32, 197, 122, 0.12);
  border-color: rgba(32, 197, 122, 0.28);
}
@media (max-width: 900px) {
  .cod-card { grid-template-columns: auto 1fr; }
  .cod-card .button--cod { grid-column: 1 / -1; width: 100%; }
}
@media (max-width: 700px) {
  .cod-hero-badge { width: 100%; text-align: left; }
  .cod-section { padding: 28px 0; }
  .cod-card { grid-template-columns: 1fr; gap: 18px; padding: 25px 22px; text-align: center; }
  .cod-card__icon { margin-inline: auto; }
  .cod-card .button--cod { grid-column: auto; }
}
