:root {
  --bg: #06101f;
  --bg-deep: #020712;
  --blue: #06294d;
  --blue-card: #07345f;
  --panel: rgba(9, 23, 43, 0.82);
  --panel-solid: #0b1729;
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #c7d1df;
  --green: #13b85a;
  --green-dark: #087a3c;
  --green-strong: #009451;
  --yellow: #ffd32a;
  --yellow-strong: #ffbf00;
  --danger: #ff6262;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1160px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(19, 184, 90, 0.16), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 55%, #03050c 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
  padding-bottom: 76px;
}

body::selection {
  background: var(--yellow);
  color: var(--bg-deep);
}

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

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

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

.announcement {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(90deg, #008247, var(--green-strong), #08a45a);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.purchase-ticker {
  position: sticky;
  top: 39px;
  z-index: 29;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  background: rgba(4, 37, 70, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #f7fbff;
  font-size: 0.86rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.purchase-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(19, 184, 90, 0.7);
  animation: livePulse 1.8s infinite;
}

[data-purchase-text] {
  transition: opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(92vh - 36px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("assets/hero-copa.png") center right / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.97) 0%, rgba(2, 20, 39, 0.88) 43%, rgba(2, 20, 39, 0.36) 72%, rgba(2, 8, 18, 0.78) 100%),
    radial-gradient(circle at 25% 48%, rgba(255, 211, 42, 0.16), transparent 21rem),
    radial-gradient(circle at 40% 70%, rgba(19, 184, 90, 0.24), transparent 27rem);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 34px 0 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 68px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.brand::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 24px rgba(255, 211, 42, 0.75);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(255, 211, 42, 0.32);
  border-radius: 999px;
  background: rgba(255, 211, 42, 0.1);
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(19, 184, 90, 0.9);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.45rem, 8vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
}

h1 span,
h2 span {
  color: var(--yellow);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5.4vw, 3.55rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.hero__subtitle {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(1.04rem, 2.8vw, 1.28rem);
}

.price-box,
.offer-price {
  display: grid;
  gap: 2px;
  margin-bottom: 22px;
}

.price-box {
  width: fit-content;
  min-width: min(100%, 410px);
  border: 1px solid rgba(255, 211, 42, 0.35);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 211, 42, 0.1), rgba(19, 184, 90, 0.08));
  box-shadow: 0 0 48px rgba(255, 211, 42, 0.12);
  padding: 16px 20px;
}

.price-box span,
.offer-price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.price-box strong,
.offer-price strong {
  color: var(--yellow);
  font-size: clamp(2.2rem, 8vw, 4rem);
  line-height: 1;
  text-shadow: 0 0 28px rgba(255, 211, 42, 0.34);
}

.price-box em {
  color: #a8ffc9;
  font-size: 1rem;
  font-style: normal;
  font-weight: 850;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  padding: 16px 22px;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px) scale(1.01);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 211, 42, 0.72);
  outline-offset: 4px;
}

.btn--primary {
  background: linear-gradient(180deg, var(--yellow), var(--yellow-strong));
  color: #07101c;
  box-shadow: 0 18px 42px rgba(255, 191, 0, 0.3), 0 0 0 rgba(255, 211, 42, 0), inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  animation: ctaGlow 2.8s ease-in-out infinite;
}

.btn--secondary {
  border: 1px solid rgba(19, 184, 90, 0.7);
  background: rgba(6, 41, 77, 0.66);
  color: #9dffca;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero__actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.trust-list,
.benefit-list,
.included-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list {
  grid-template-columns: 1fr;
  max-width: 860px;
  gap: 10px;
}

.trust-list li,
.benefit-list li,
.included-list li {
  position: relative;
  padding-left: 26px;
  color: #e6edf8;
  font-weight: 700;
}

.trust-list li {
  min-height: 52px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(7, 52, 95, 0.46);
  padding: 12px 14px;
}

.trust-list li::before {
  display: none;
}

.trust-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--yellow);
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 211, 42, 0.48);
}

.trust-list li::before,
.benefit-list li::before,
.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(19, 184, 90, 0.75);
}

.demo .section-copy .btn,
.offer .section-copy .btn {
  margin-top: 18px;
}

.section {
  padding: 70px 0;
  overflow: hidden;
}

.section-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.section-copy .eyebrow,
.section-heading .eyebrow {
  margin-bottom: 16px;
}

.section-copy p,
.section-heading p {
  max-width: 690px;
  font-size: 1.05rem;
}

.section-heading {
  margin-bottom: 28px;
  text-align: center;
}

.section-heading p {
  margin-inline: auto;
}

.video-card,
.image-frame,
.offer-box,
.final-cta__box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(19, 184, 90, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow), 0 0 48px rgba(19, 184, 90, 0.1);
  overflow: hidden;
}

.video-card {
  max-width: 460px;
  margin-inline: auto;
  padding: 8px;
  border-color: rgba(255, 211, 42, 0.38);
  box-shadow: var(--shadow), 0 0 70px rgba(255, 211, 42, 0.16);
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  background: #000;
  object-fit: cover;
}

.cards,
.review-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

.card,
.mini-card,
.review-card,
details {
  border: 1px solid rgba(55, 118, 174, 0.42);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(7, 52, 95, 0.9), rgba(5, 28, 52, 0.92));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.mini-card:hover,
.review-card:hover,
details:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 211, 42, 0.42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 34px rgba(19, 184, 90, 0.08);
}

.card {
  min-height: 170px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card--highlight {
  border-color: rgba(255, 211, 42, 0.72);
  background:
    linear-gradient(145deg, rgba(19, 184, 90, 0.95), rgba(0, 138, 76, 0.92));
  box-shadow: 0 24px 65px rgba(0, 148, 81, 0.26);
}

.card--highlight h3 {
  color: var(--yellow);
}

.card p,
.review-card p {
  margin-bottom: 0;
}

.image-frame img,
.offer-media img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame {
  aspect-ratio: 4 / 3;
}

.chips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 22px;
}

.chips span {
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(96, 145, 188, 0.42);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: #dfffea;
  font-weight: 800;
  padding: 10px 14px;
}

.chips--center {
  max-width: 900px;
  margin-inline: auto;
}

.gallery-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.gallery-grid figure {
  min-height: 240px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel-solid);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.specs-grid {
  grid-template-columns: 1fr;
}

.specs .card:nth-child(3n + 1) {
  border-color: rgba(19, 184, 90, 0.28);
  background: linear-gradient(180deg, rgba(5, 65, 83, 0.92), rgba(5, 38, 65, 0.94));
}

.specs .card h3 {
  color: #ffffff;
}

.specs .card:nth-child(3n + 1) h3 {
  color: var(--green);
}

.note {
  margin: 22px 0 0;
  color: #aeb9c8;
  font-size: 0.92rem;
  text-align: center;
}

.offer-box {
  display: grid;
  gap: 28px;
  padding: 18px;
  border-color: rgba(255, 211, 42, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 42, 0.1), transparent 22rem),
    linear-gradient(180deg, rgba(7, 52, 95, 0.95), rgba(5, 28, 52, 0.98));
}

.offer-media {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.save-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 950;
  padding: 10px 14px;
  box-shadow: 0 12px 30px rgba(19, 184, 90, 0.34);
}

.cards--five,
.cards--four {
  grid-template-columns: 1fr;
}

.mini-card {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #f1f6ff;
  font-weight: 850;
  text-align: center;
}

.secure,
.year-round,
.final-cta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(19, 184, 90, 0.055));
}

.secure .center-action,
.urgency .center-action {
  width: 100%;
  margin-top: 22px;
}

.secure .center-action .btn,
.urgency .center-action .btn {
  width: 100%;
}

.comparison,
.year-round {
  background: #f7f9fc;
  color: #001b35;
}

.comparison p,
.year-round p {
  color: #31506f;
}

.comparison .eyebrow,
.year-round .eyebrow {
  background: rgba(0, 148, 81, 0.1);
  color: #007c45;
  border-color: rgba(0, 148, 81, 0.22);
}

.comparison .card,
.year-round .chips span {
  background: #ffffff;
  border-color: #dfe5ed;
  color: #001b35;
  box-shadow: 0 18px 48px rgba(0, 27, 53, 0.08);
}

.comparison .card--highlight {
  color: #ffffff;
  background: linear-gradient(145deg, #009451, #008247);
  border-color: var(--yellow);
}

.comparison .card--highlight p {
  color: #ffffff;
}

.review-grid {
  grid-template-columns: 1fr;
}

.review-card {
  padding: 20px;
}

.stars {
  margin-bottom: 12px;
  color: var(--yellow);
  letter-spacing: 0.08em;
}

.review-card strong {
  display: block;
  margin-top: 16px;
  color: #ffffff;
}

.review-card strong::before {
  content: "";
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 999px;
  background: rgba(19, 184, 90, 0.2);
  vertical-align: middle;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin-inline: auto;
}

details {
  overflow: hidden;
}

summary {
  cursor: pointer;
  color: #ffffff;
  font-weight: 900;
  list-style: none;
  padding: 18px 20px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--yellow);
  font-size: 1.25rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta__box {
  padding: 34px 20px;
  text-align: center;
  border-color: rgba(255, 211, 42, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 42, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(7, 52, 95, 0.94), rgba(3, 12, 25, 0.96));
}

.final-cta__box p {
  margin-inline: auto;
}

.footer {
  border-top: 1px solid var(--line);
  background: #020712;
  padding: 36px 0 100px;
}

.footer__inner {
  display: grid;
  gap: 18px;
}

.footer strong {
  font-size: 1.2rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer a {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer p {
  max-width: 860px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 20;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #04220f;
  font-weight: 950;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35), 0 0 28px rgba(37, 211, 102, 0.35);
}

.mobile-sticky {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 19;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(2, 7, 18, 0.94);
  padding: 10px 14px;
  backdrop-filter: blur(14px);
  transform: translateY(0);
  transition: transform 180ms ease;
}

.mobile-sticky.is-hidden {
  transform: translateY(110%);
}

.mobile-sticky span {
  font-size: 0.92rem;
  font-weight: 950;
}

.mobile-sticky a {
  border-radius: 999px;
  background: var(--yellow);
  color: #06101f;
  font-size: 0.86rem;
  font-weight: 950;
  padding: 12px 14px;
  white-space: nowrap;
  box-shadow: 0 0 28px rgba(255, 211, 42, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 18px 42px rgba(255, 191, 0, 0.3), 0 0 0 rgba(255, 211, 42, 0), inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 20px 54px rgba(255, 191, 0, 0.46), 0 0 34px rgba(255, 211, 42, 0.42), inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(19, 184, 90, 0.72);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(19, 184, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(19, 184, 90, 0);
  }
}

@media (min-width: 560px) {
  .trust-list,
  .specs-grid,
  .cards--four {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 820px) {
  body {
    padding-bottom: 0;
  }

  .hero {
    min-height: calc(88vh - 36px);
  }

  .hero__content {
    padding: 38px 0 82px;
  }

  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: 96px 0;
  }

  .section-grid,
  .offer-box {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  }

  .section-grid--reverse {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  }

  .cards--three {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards--five {
    grid-template-columns: repeat(5, 1fr);
  }

  .specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .gallery-grid figure:first-child {
    grid-row: span 2;
  }

  .gallery-grid figure:first-child,
  .gallery-grid figure:first-child img {
    min-height: 520px;
  }

  .final-cta__box {
    padding: 56px;
  }

  .mobile-sticky {
    display: none;
  }

  .whatsapp-float {
    bottom: 22px;
  }

  .chips--center {
    grid-template-columns: repeat(4, 1fr);
  }

  .secure .center-action,
  .urgency .center-action {
    display: block;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    margin-bottom: 34px;
  }

  .hero__actions .btn,
  .section-copy .btn,
  .center-action .btn,
  .final-cta__box .btn {
    width: 100%;
  }

  .mobile-sticky {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mobile-sticky a {
    display: block;
  }

  .announcement {
    font-size: 0.78rem;
  }

  .purchase-ticker {
    top: 38px;
    font-size: 0.78rem;
    padding-inline: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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