﻿:root {
  --black: #05070a;
  --ink: #0b1220;
  --blue: #0a84ff;
  --blue-2: #37b7ff;
  --mint: #33d6a6;
  --white: #ffffff;
  --soft: #f5f7fb;
  --line: rgba(255, 255, 255, 0.18);
  --muted: rgba(255, 255, 255, 0.72);
  --text-muted: #637083;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #05070a 0 34rem, #f5f7fb 34rem 100%);
}

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(1120px, calc(100% - 28px));
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 12, 21, 0.68);
  backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
  height: 42px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.75);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 12px 32px rgba(10, 132, 255, 0.34);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary.light {
  color: var(--ink);
  border-color: rgba(11, 18, 32, 0.16);
  background: rgba(255, 255, 255, 0.82);
}

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

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 128px max(22px, calc((100vw - 1120px) / 2)) 8svh;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.94) 0%, rgba(5, 7, 10, 0.65) 45%, rgba(5, 7, 10, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.14) 0%, rgba(5, 7, 10, 0.78) 100%);
}

.hero-content {
  width: min(760px, 100%);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.section-heading h2,
.pricing-copy h2,
.loyalty-copy h2,
.contact h2 {
  margin: 0;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.88;
  font-weight: 900;
}

.hero-copy {
  width: min(650px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2.2vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics {
  gap: 10px;
  margin-top: 34px;
}

.hero-metrics span {
  display: grid;
  gap: 3px;
  min-width: 154px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  backdrop-filter: blur(14px);
}

.hero-metrics strong {
  color: var(--white);
}

.section-pad {
  padding: 96px max(22px, calc((100vw - 1120px) / 2));
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: end;
  background: var(--white);
}

.intro h2,
.section-heading h2,
.pricing-copy h2,
.loyalty-copy h2,
.contact h2 {
  font-size: clamp(2.2rem, 5vw, 5.6rem);
  line-height: 0.98;
  font-weight: 900;
}

.intro p,
.pricing-copy p,
.loyalty-copy p,
.contact p,
.service-card p,
.step p,
.qr-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.intro p {
  margin: 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.services {
  background: #f5f7fb;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(11, 18, 32, 0.13);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.62);
}

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

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(11, 18, 32, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(20, 30, 44, 0.06);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: rgba(10, 132, 255, 0.24);
  box-shadow: 0 24px 58px rgba(20, 30, 44, 0.13);
}

.service-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--ink);
}

.service-card h3,
.step h3 {
  margin: 36px 0 10px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.15;
}

.service-card p,
.step p,
.qr-card p {
  margin: 0;
}

.pricing {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
  color: var(--white);
  background: var(--black);
}

.pricing-copy,
.pricing-panel {
  border-radius: var(--radius);
}

.pricing-copy {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 46px);
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.2), rgba(5, 7, 10, 0.96)),
    url("../images/Banner Rivera's.png") center / cover;
  box-shadow: var(--shadow);
}

.pricing-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
}

.pricing-copy .button {
  align-self: flex-start;
  margin-top: 18px;
}

.pricing-panel {
  display: grid;
  align-content: stretch;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(145deg, #111827, #07101e);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 118px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-row span {
  color: var(--muted);
  font-weight: 700;
}

.panel-row strong {
  font-size: clamp(1.25rem, 2.4vw, 2.1rem);
}

.process {
  background: var(--white);
}

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

.step {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius);
  background: #f5f7fb;
  border: 1px solid rgba(11, 18, 32, 0.08);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--blue);
  font-weight: 900;
  background: #e8f3ff;
}

.loyalty {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
  background:
    linear-gradient(135deg, #f5f7fb, #ffffff 46%, #ebfff8);
}

.loyalty-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(11, 18, 32, 0.08);
}

.loyalty-copy .section-kicker {
  color: #099268;
}

.loyalty-copy .button {
  align-self: flex-start;
  margin-top: 18px;
}

.qr-card {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.qr-frame {
  aspect-ratio: 0.78;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.qr-frame object {
  width: 100%;
  height: 100%;
}

.qr-frame a {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 24px;
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.qr-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  background: var(--black);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 300px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(10, 132, 255, 0.22), rgba(255, 255, 255, 0.03)),
    #090d14;
}

.contact-inner img {
  width: 170px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(22px, calc((100vw - 1120px) / 2));
  color: rgba(255, 255, 255, 0.62);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
  color: var(--white);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(1.5%, -1.2%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto auto;
    min-height: 58px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    width: 118px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 116px;
  }

  .intro,
  .pricing,
  .loyalty,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-inner {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .site-shell {
    background: var(--black);
  }

  .nav {
    top: 10px;
    width: calc(100% - 16px);
    padding: 8px 8px 8px 12px;
  }

  .brand {
    width: 104px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 86svh;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.3) 0%, rgba(5, 7, 10, 0.94) 72%),
      linear-gradient(90deg, rgba(5, 7, 10, 0.78), rgba(5, 7, 10, 0.34));
  }

  .hero h1 {
    font-size: clamp(3.4rem, 20vw, 5.4rem);
  }

  .hero-actions,
  .hero-metrics {
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-metrics span {
    min-width: 0;
  }

  .section-pad {
    padding: 70px 18px;
  }

  .intro h2,
  .section-heading h2,
  .pricing-copy h2,
  .loyalty-copy h2,
  .contact h2 {
    font-size: clamp(2.05rem, 13vw, 3.6rem);
  }

  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step {
    min-height: 220px;
  }

  .pricing-copy {
    min-height: 460px;
  }

  .panel-row {
    min-height: 92px;
    padding: 18px;
  }

  .qr-frame {
    min-height: 360px;
  }

  .contact-inner img {
    width: 126px;
  }

  .footer {
    flex-direction: column;
    padding: 26px 18px;
  }
}

.nav[data-reveal] {
  transform: translateX(-50%) translateY(28px);
}

.nav[data-reveal].is-visible {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 620px) {
  .nav .nav-cta {
    width: auto;
    min-width: 128px;
  }

  .hero-actions .button,
  .contact .button,
  .pricing .button,
  .loyalty .button {
    width: 100%;
  }
}

.intro > *,
.pricing > *,
.loyalty > *,
.contact-inner > *,
.service-card,
.step,
.panel-row {
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
span,
strong {
  overflow-wrap: anywhere;
}

.rewards {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  background: linear-gradient(135deg, #f5f7fb, #ffffff 48%, #eef8ff);
}

.reward-poster,
.qr-download-card {
  min-width: 0;
  border-radius: var(--radius);
}

.reward-poster {
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 46px);
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 18px 60px rgba(20, 30, 44, 0.08);
}

.reward-poster img {
  width: min(100%, 520px);
  max-height: 720px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(20, 30, 44, 0.16);
}

.qr-download-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 52px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(55, 183, 255, 0.25), transparent 34%),
    linear-gradient(145deg, #101827, #05070a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.qr-download-card h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 900;
  text-wrap: balance;
}

.qr-download-card p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.qr-image {
  display: grid;
  place-items: center;
  align-self: center;
  width: min(100%, 430px);
  padding: clamp(16px, 4vw, 28px);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.qr-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.qr-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  image-rendering: pixelated;
}

.qr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 900px) {
  .rewards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .rewards {
    gap: 14px;
  }

  .reward-poster,
  .qr-download-card {
    padding: 18px;
  }

  .reward-poster img {
    width: 100%;
    max-height: none;
  }

  .qr-download-card h2 {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .qr-download-card p {
    font-size: 1rem;
  }

  .qr-image {
    width: 100%;
    padding: 18px;
  }

  .qr-actions .button {
    width: 100%;
  }
}

.intro {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.intro-copy {
  min-width: 0;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
}

.intro-brand-mark {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.intro-brand-mark::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.28), rgba(10, 132, 255, 0));
  filter: blur(18px);
}

.intro-brand-mark::after {
  content: "systems • builds • repair";
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(5, 7, 10, 0.18);
}

.intro-brand-mark img {
  width: 82%;
  height: 82%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(20, 30, 44, 0.22);
  transform: rotate(-2deg);
}

@media (max-width: 900px) {
  .intro-copy {
    min-height: auto;
  }

  .intro-brand-mark {
    width: min(100%, 300px);
  }
}

@media (max-width: 620px) {
  .intro-brand-mark {
    width: min(82vw, 260px);
  }

  .intro-brand-mark::after {
    left: 8px;
    bottom: 8px;
    font-size: 0.72rem;
  }
}

.intro-brand-mark {
  padding: 34px;
  background:
    radial-gradient(circle at 30% 20%, rgba(55, 183, 255, 0.24), transparent 42%),
    linear-gradient(145deg, #111a2c, #05070a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 32px 100px rgba(20, 30, 44, 0.24);
}

.intro-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: none;
}

.price-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.price-note span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

@media (max-width: 620px) {
  .price-note span {
    flex: 1 1 100%;
    justify-content: center;
  }
}

.about-legal {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  align-items: stretch;
  color: var(--white);
  background: var(--black);
}

.about-visual,
.legal-panel {
  min-width: 0;
  border-radius: var(--radius);
}

.about-visual {
  position: sticky;
  top: 104px;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  overflow: hidden;
  background: #08111f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.about-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.04);
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.05), rgba(5, 7, 10, 0.72));
}

.about-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: rgba(5, 7, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.legal-panel {
  padding: clamp(24px, 4vw, 48px);
  background: linear-gradient(145deg, #111827, #080c13);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  font-weight: 900;
  text-wrap: balance;
}

.legal-copy {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.legal-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.72;
}

.whatsapp-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.26);
}

.whatsapp-channel span {
  display: block;
  color: #33d6a6;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-channel strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 1.08rem;
}

.footer {
  align-items: center;
}

.footer a + a {
  margin-left: 16px;
}

@media (max-width: 900px) {
  .about-legal {
    grid-template-columns: 1fr;
  }

  .about-visual {
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .whatsapp-channel {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .about-visual {
    min-height: 300px;
    padding: 18px;
  }

  .legal-panel {
    padding: 22px;
  }

  .legal-copy p {
    font-size: 0.94rem;
  }

  .footer a + a {
    margin-left: 0;
  }
}

.coupons {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(5, 7, 10, 0.96), rgba(10, 20, 35, 0.98)),
    #05070a;
}

.coupon-copy,
.coupon-visual {
  min-width: 0;
  border-radius: var(--radius);
}

.coupon-copy {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 18% 12%, rgba(10, 132, 255, 0.26), transparent 36%),
    linear-gradient(145deg, #111827, #070b12);
}

.coupon-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.98;
  font-weight: 900;
  text-wrap: balance;
}

.coupon-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.coupon-copy .button {
  margin-top: 24px;
}

.coupon-visual {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
  background: linear-gradient(145deg, #2a2d33, #11151d);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.coupon-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
}

.coupon-visual img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .coupons {
    grid-template-columns: 1fr;
  }

  .coupon-copy {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .coupon-copy,
  .coupon-visual {
    padding: 18px;
  }

  .coupon-copy h2 {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .coupon-copy p {
    font-size: 1rem;
  }

  .coupon-visual img {
    max-height: none;
    aspect-ratio: 1.18;
  }
}

.legal-intro {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.65;
}

.privacy-details {
  margin-top: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.privacy-details summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.privacy-details summary small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(55, 183, 255, 0.12);
  border: 1px solid rgba(55, 183, 255, 0.22);
}

.privacy-details[open] summary small {
  font-size: 0;
}

.privacy-details[open] summary small::after {
  content: "Cerrar";
  font-size: 0.78rem;
}

.privacy-details .legal-copy {
  margin-top: 0;
  padding: 0 20px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-details .legal-copy p:first-child {
  padding-top: 18px;
}

@media (max-width: 620px) {
  .privacy-details summary {
    align-items: flex-start;
    flex-direction: column;
  }
}

.courses {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
  align-items: stretch;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(10, 132, 255, 0.22), transparent 32%),
    linear-gradient(180deg, #05070a, #0a101a);
}

.course-visual,
.course-copy {
  min-width: 0;
  border-radius: var(--radius);
}

.course-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #08111f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.course-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transform: scale(1.04);
}

.course-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.78), rgba(5, 7, 10, 0.08)),
    linear-gradient(180deg, rgba(5, 7, 10, 0.02), rgba(5, 7, 10, 0.62));
}

.course-floating-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  width: min(360px, calc(100% - 56px));
  padding: 18px;
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(5, 7, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
}

.course-floating-card span {
  display: block;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-floating-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.course-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 560px;
  padding: clamp(26px, 4vw, 52px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.course-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 6rem);
  line-height: 0.95;
  font-weight: 900;
  text-wrap: balance;
}

.course-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.65;
}

.course-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.course-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.course-copy .button {
  margin-top: 26px;
}

@media (max-width: 900px) {
  .courses {
    grid-template-columns: 1fr;
  }

  .course-visual,
  .course-copy {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .course-visual,
  .course-copy {
    min-height: auto;
  }

  .course-visual {
    aspect-ratio: 0.92;
  }

  .course-copy {
    padding: 22px;
  }

  .course-copy h2 {
    font-size: clamp(2.25rem, 13vw, 3.7rem);
  }

  .course-copy p {
    font-size: 1rem;
  }

  .course-floating-card {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .course-points span {
    flex: 1 1 100%;
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }
}

.nav .brand {
  width: 96px;
  height: 46px;
  justify-content: center;
  overflow: visible;
}

.nav .brand img {
  width: 78px;
  height: 46px;
  object-fit: contain;
  transform: none;
}

@media (max-width: 620px) {
  .nav .brand {
    width: 88px;
    height: 42px;
  }

  .nav .brand img {
    width: 72px;
    height: 42px;
  }
}


@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .intro-copy,
  .intro h2 {
    width: 100%;
  }

  .intro h2 {
    max-width: 760px;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}

@media (max-width: 620px) {
  .intro {
    gap: 28px;
  }

  .intro h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
    line-height: 1.02;
    text-wrap: balance;
  }

  .intro-copy {
    gap: 22px;
  }
}
