:root {
  --bg: #070b18;
  --bg-soft: #0b1020;
  --panel: rgba(16, 25, 54, 0.82);
  --panel-strong: #101936;
  --line: rgba(143, 161, 255, 0.22);
  --text: #f8fbff;
  --muted: #aeb9dd;
  --muted-2: #7f8db9;
  --accent: #00d1ff;
  --accent-2: #6d5cff;
  --accent-3: #a855f7;
  --whatsapp: #25d366;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 209, 255, 0.16), transparent 38rem),
    radial-gradient(circle at 85% 10%, rgba(168, 85, 247, 0.16), transparent 35rem),
    linear-gradient(180deg, #070b18 0%, #0b1020 42%, #070b18 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.page-glow {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

.page-glow-one {
  left: -8rem;
  top: 20%;
  background: var(--accent);
}

.page-glow-two {
  right: -8rem;
  top: 45%;
  background: var(--accent-3);
}

.site-header {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.05rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  font-weight: 950;
  letter-spacing: -0.06em;
  box-shadow: 0 18px 34px rgba(109, 92, 255, 0.28);
}

.brand-text {
  color: #dce7ff;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-text strong {
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #dfe7ff;
  font-size: 0.95rem;
}

.nav a {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  transition: 180ms ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav .nav-cta {
  color: #06130a;
  background: var(--whatsapp);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
}

.nav .nav-cta:hover {
  color: #06130a;
  background: #49df80;
}

.section-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #b4c7ff;
  background: rgba(109, 92, 255, 0.16);
  border: 1px solid rgba(143, 161, 255, 0.24);
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}

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

h1 {
  margin-bottom: 1rem;
  margin-top: 1.2rem;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.085em;
}

.hero-subtitle {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.75;
  margin-bottom: 1.6rem;
}

.hero-subtitle strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.3rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.btn-primary {
  color: #06130a;
  background: var(--whatsapp);
  box-shadow: 0 20px 46px rgba(37, 211, 102, 0.25);
}

.btn-primary:hover {
  background: #49df80;
  box-shadow: 0 26px 56px rgba(37, 211, 102, 0.32);
}

.btn-secondary {
  color: #e8eeff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  max-width: 650px;
}

.quick-info div {
  padding: 1rem;
  background: rgba(16, 25, 54, 0.72);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.2);
}

.quick-icon {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.quick-info strong,
.quick-info small {
  display: block;
}

.quick-info small {
  color: var(--muted-2);
  margin-top: 0.2rem;
}

.hero-art {
  position: relative;
}

.hero-art img {
  width: 100%;
  filter: drop-shadow(0 36px 60px rgba(0, 0, 0, 0.38));
  animation: float 6.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.catalog-section,
.payment-section {
  padding: 4rem 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.7rem;
}

.section-heading h2 {
  margin-top: 1rem;
  margin-bottom: 0.65rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.04rem;
}

.small-heading {
  margin-top: 3rem;
  margin-bottom: 1.2rem;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(13, 77, 255, 0.22), rgba(168, 85, 247, 0.16)),
    rgba(16, 25, 54, 0.84);
  border: 1px solid rgba(124, 151, 255, 0.28);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: auto -8rem -10rem auto;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(0, 209, 255, 0.16);
  filter: blur(40px);
  pointer-events: none;
}

.featured-media img {
  border-radius: 30px;
  transform: rotate(-1deg);
}

.featured-content {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  color: #07111f;
  background: #7dd3fc;
  font-weight: 950;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.featured-content h3 {
  margin: 1rem 0 0.65rem;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.featured-text {
  color: #cad6ff;
  line-height: 1.7;
  font-size: 1.07rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1rem 0 1.3rem;
}

.price {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9;
  font-weight: 1000;
  letter-spacing: -0.08em;
  background: linear-gradient(135deg, #fff, #9be8ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-note {
  color: var(--muted);
  font-weight: 800;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  padding: 0.72rem;
  border-radius: 24px;
  background: rgba(16, 25, 54, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(125, 211, 252, 0.36);
  background: rgba(19, 30, 65, 0.9);
}

.service-card img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 420 / 250;
  object-fit: cover;
}

.service-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.92rem 0.35rem 0.68rem;
}

.service-info h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.service-info span {
  font-weight: 950;
  color: #fff;
}

.service-card a {
  display: flex;
  justify-content: center;
  padding: 0.8rem;
  border-radius: 16px;
  color: #dfffe9;
  background: rgba(37, 211, 102, 0.13);
  border: 1px solid rgba(37, 211, 102, 0.22);
  font-size: 0.92rem;
  font-weight: 850;
  transition: 180ms ease;
}

.service-card a:hover {
  color: #06130a;
  background: var(--whatsapp);
}

.payment-section {
  padding-top: 2rem;
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: calc(var(--radius) + 6px);
  background: rgba(16, 25, 54, 0.62);
  border: 1px solid var(--line);
}

.bank-grid img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.final-cta {
  margin-top: 2rem;
  margin-bottom: 4rem;
  padding: clamp(1.3rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.12), rgba(168, 85, 247, 0.16)), rgba(16, 25, 54, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin: 0.9rem 0 0.5rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.045em;
}

.final-cta p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06130a;
  background: var(--whatsapp);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.35);
  z-index: 60;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.2rem 0 2.8rem;
  color: var(--muted-2);
  text-align: center;
  border-top: 1px solid rgba(143, 161, 255, 0.14);
  line-height: 1.6;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0.3rem 0;
}

.fine-print {
  font-size: 0.84rem;
}

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

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

.delay-1 {
  transition-delay: 120ms;
}

@media (max-width: 1020px) {
  .hero,
  .featured-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-art {
    max-width: 720px;
    margin: 0 auto;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
  }

  .brand-text {
    white-space: normal;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .nav a {
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0 3rem;
  }

  .quick-info,
  .cards-grid,
  .bank-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .full-mobile,
  .final-cta .btn {
    width: 100%;
  }

  .featured-card {
    padding: 0.9rem;
  }

  .featured-content {
    padding: 0.2rem 0.2rem 0.9rem;
  }

  .price-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 1rem;
    bottom: 1rem;
  }
}

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

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* Terms and conditions */
.terms-section {
  padding: 2rem 0 4rem;
}

.terms-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.terms-card {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(16, 25, 54, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.terms-card h3 {
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.terms-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.text-button,
.inline-button {
  color: #bdefff;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  cursor: pointer;
}

.text-button {
  display: inline-flex;
  margin-top: 0.35rem;
  font-size: 0.98rem;
}

.terms-consent {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 2rem));
  z-index: 80;
}

.terms-consent-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0.95rem 0.9rem 1.1rem;
  border-radius: 22px;
  background: rgba(12, 18, 38, 0.94);
  border: 1px solid rgba(143, 161, 255, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.terms-consent p {
  margin: 0;
  color: #d8e1ff;
  line-height: 1.45;
  font-size: 0.92rem;
}

.consent-accept {
  flex: 0 0 auto;
  min-height: 2.6rem;
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 999px;
  color: #06130a;
  background: var(--whatsapp);
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.22);
}

.terms-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.terms-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.terms-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.74);
  backdrop-filter: blur(8px);
}

.terms-modal-panel {
  position: relative;
  width: min(860px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: clamp(1.1rem, 3vw, 1.7rem);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(16, 25, 54, 0.98), rgba(9, 14, 31, 0.98));
  border: 1px solid rgba(143, 161, 255, 0.3);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  outline: none;
}

.terms-modal-panel h2 {
  margin: 1rem 2.6rem 1rem 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.terms-modal-body {
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
}

.terms-modal-body h3 {
  margin: 0.5rem 0 0;
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
}

.terms-modal-body p {
  margin-bottom: 0;
}

.terms-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(143, 161, 255, 0.16);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1020px) {
  .terms-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .terms-consent {
    bottom: 0.85rem;
  }

  .terms-consent-content {
    align-items: stretch;
    flex-direction: column;
  }

  .consent-accept,
  .terms-modal-actions .btn {
    width: 100%;
  }

  .terms-modal-actions {
    flex-direction: column-reverse;
  }
}
