

:root {
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: "Arial Black", Arial, sans-serif;
  --ink: #0b1637;
  --ink-soft: #263453;
  --cream: #f5efe5;
  --paper: #fffdf9;
  --coral: #ff6042;
  --coral-dark: #dc3e24;
  --lime: #c8f44b;
  --line: rgba(11, 22, 55, 0.14);
  --shadow: 0 22px 60px rgba(11, 22, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
  line-height: 1.55;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: white;
  padding: 10px 16px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--lime);
  padding: 7px 20px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-align: center;
}

.announcement span {
  opacity: 0.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 22, 55, 0.97);
  color: white;
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  transform: rotate(-4deg);
  border-radius: 10px;
  background: var(--coral);
  font-family: var(--font-display), sans-serif;
  font-size: 1.15rem;
}

.brand-name {
  display: block;
  font-family: var(--font-display), sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-tag {
  display: block;
  margin-top: 3px;
  color: #bdc7dd;
  font-size: 0.68rem;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.9rem;
  font-weight: 750;
}

.desktop-nav a:not(.nav-cta) {
  color: #e4e8f2;
}

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

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 11px 19px;
  background: var(--coral);
  color: white !important;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  background: var(--coral-dark);
  box-shadow: 0 10px 24px rgba(255, 96, 66, 0.28);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
}

.btn.secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.btn.dark {
  background: var(--ink);
}

.btn.dark:hover {
  background: #172856;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero::before {
  position: absolute;
  top: -120px;
  left: -90px;
  width: 380px;
  height: 380px;
  border: 80px solid rgba(200, 244, 75, 0.09);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  width: min(1280px, 100%);
  min-height: 670px;
  margin: 0 auto;
  grid-template-columns: 0.96fr 1.04fr;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px clamp(30px, 5vw, 76px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: var(--lime);
  padding: 8px 13px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.05rem, 6vw, 6.2rem);
  line-height: 0.95;
}

.hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.hero-lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: #dbe1ed;
  font-size: clamp(1.04rem, 1.7vw, 1.23rem);
}

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

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 25px;
  margin: 32px 0 0;
  padding: 0;
  color: #c8d0e2;
  font-size: 0.83rem;
  font-weight: 750;
  list-style: none;
}

.proof-row li::before {
  margin-right: 7px;
  color: var(--lime);
  content: "●";
}

.hero-media {
  position: relative;
  min-height: 670px;
  background: #15244a;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 23%),
    linear-gradient(0deg, rgba(11, 22, 55, 0.48) 0%, transparent 45%);
  content: "";
}

.hero-sticker {
  position: absolute;
  right: clamp(20px, 5vw, 60px);
  bottom: 40px;
  z-index: 2;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  transform: rotate(6deg);
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display), sans-serif;
  font-size: 1rem;
  line-height: 1.05;
  text-align: center;
  box-shadow: var(--shadow);
}

.section {
  padding: 92px 20px;
}

.section.compact {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.cream {
  background: var(--cream);
}

.section.ink {
  background: var(--ink);
  color: white;
}

.section-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 11px;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ink .section-kicker {
  color: var(--lime);
}

.section-title {
  max-width: 850px;
  font-size: clamp(2.25rem, 5vw, 4.55rem);
  line-height: 1.02;
}

.section-lead {
  max-width: 730px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.ink .section-lead {
  color: #cdd5e5;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 27px 20px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 750;
}

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  padding: 27px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.card .arrow-link {
  display: inline-block;
  margin-top: 17px;
  color: var(--coral-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.card-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 14px;
  background: var(--cream);
  font-size: 1.35rem;
}

.price-card {
  display: flex;
  min-height: 400px;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--coral);
  transform: translateY(-12px);
}

.price-card.featured::before {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 20px 0 16px;
  background: var(--coral);
  padding: 7px 12px;
  color: white;
  content: "MÁS ELEGIDO";
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.pack-name {
  margin: 0;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price {
  margin: 12px 0 0;
  font-family: var(--font-display), sans-serif;
  font-size: 3.2rem;
  line-height: 1;
}

.price small {
  font-family: var(--font-body), sans-serif;
  font-size: 0.82rem;
  font-weight: 750;
}

.feature-list {
  display: grid;
  margin: 22px 0 26px;
  padding: 0;
  gap: 11px;
  font-size: 0.9rem;
  list-style: none;
}

.feature-list li::before {
  margin-right: 8px;
  color: var(--coral);
  content: "✓";
  font-weight: 900;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.price-note {
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(38px, 7vw, 90px);
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 480px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-media::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  width: 58%;
  height: 58%;
  border-radius: 28px;
  background: var(--coral);
  content: "";
}

.technique-list {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.technique {
  border-radius: 14px;
  background: white;
  padding: 14px 15px;
  font-size: 0.88rem;
  font-weight: 800;
}

.timeline {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display), sans-serif;
}

.step h3 {
  margin: 18px 0 7px;
}

.step p {
  margin: 0;
  color: #cdd5e5;
  font-size: 0.88rem;
}

.faq-list {
  display: grid;
  max-width: 860px;
  margin-top: 35px;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 0 20px;
}

.faq-list summary {
  cursor: pointer;
  padding: 19px 40px 19px 0;
  font-weight: 850;
}

.faq-list details p {
  margin: -4px 0 20px;
  color: var(--ink-soft);
}

.cta-panel {
  display: grid;
  overflow: hidden;
  border-radius: 32px;
  background: var(--coral);
  color: white;
  grid-template-columns: 1.25fr 0.75fr;
}

.cta-copy {
  padding: clamp(38px, 7vw, 72px);
}

.cta-copy h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 0.98;
}

.cta-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: #fff4f0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: rgba(11, 22, 55, 0.11);
  padding: 35px;
}

.cta-actions .btn {
  width: 100%;
  background: var(--ink);
}

.cta-actions .btn.secondary {
  border-color: white;
  background: transparent;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 86px 20px 80px;
  color: white;
}

.page-hero::after {
  position: absolute;
  top: -100px;
  right: -90px;
  width: 390px;
  height: 390px;
  border: 80px solid rgba(255, 96, 66, 0.18);
  border-radius: 50%;
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 23px;
  color: #bfc8da;
  font-size: 0.78rem;
}

.breadcrumbs a:hover {
  color: var(--lime);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  line-height: 0.98;
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #d9dfeb;
  font-size: 1.1rem;
}

.page-hero .eyebrow {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 0.76rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
}

.prose h2 {
  margin: 0 0 18px;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.prose h3 {
  margin: 32px 0 10px;
  font-size: 1.25rem;
}

.prose p {
  color: var(--ink-soft);
}

.sidebar-card {
  position: sticky;
  top: 110px;
  height: fit-content;
  border-radius: 22px;
  background: var(--cream);
  padding: 25px;
}

.sidebar-card h2 {
  margin: 0;
  font-size: 1.25rem;
}

.sidebar-card p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.sidebar-card .btn {
  width: 100%;
  margin-top: 8px;
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.link-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 9px 14px;
  font-size: 0.83rem;
  font-weight: 750;
}

.link-chip:hover {
  border-color: var(--coral);
  color: var(--coral-dark);
}

.map-frame {
  overflow: hidden;
  margin-top: 30px;
  border: 0;
  border-radius: 24px;
  background: #e7e1d8;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  background: #07102a;
  padding: 68px 20px 28px;
  color: white;
}

.footer-grid {
  display: grid;
  width: min(1140px, 100%);
  margin: 0 auto;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 50px;
}

.footer-brand {
  font-family: var(--font-display), sans-serif;
  font-size: 1.65rem;
}

.footer-grid p,
.footer-grid a {
  color: #bfc8da;
  font-size: 0.86rem;
}

.footer-grid a:hover {
  color: var(--lime);
}

.footer-links {
  display: grid;
  margin-top: 13px;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  width: min(1140px, 100%);
  margin: 45px auto 0;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  color: #8590a8;
  font-size: 0.75rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: #1ebd5a;
  padding: 13px 18px;
  color: white;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 12px 35px rgba(11, 22, 55, 0.23);
}

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

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    padding: 8px 11px;
    font-weight: 800;
    list-style: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 48px;
    right: 0;
    display: grid;
    width: 250px;
    gap: 1px;
    border-radius: 15px;
    background: white;
    padding: 9px;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    border-radius: 9px;
    padding: 11px 12px;
    font-weight: 750;
  }

  .mobile-menu nav a:hover {
    background: var(--cream);
  }

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

  .hero-copy {
    padding-top: 70px;
    padding-bottom: 55px;
  }

  .hero-media {
    min-height: 470px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 24%),
      linear-gradient(0deg, rgba(11, 22, 55, 0.35), transparent);
  }

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

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

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

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

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

  .sidebar-card {
    position: static;
  }

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

@media (max-width: 640px) {
  .announcement span {
    display: none;
  }

  .nav-shell {
    width: min(100% - 28px, 1180px);
    min-height: 66px;
  }

  .brand-tag {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-sticker {
    width: 108px;
    height: 108px;
    font-size: 0.8rem;
  }

  .section {
    padding: 70px 17px;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .card-grid,
  .category-grid,
  .timeline,
  .technique-list {
    grid-template-columns: 1fr;
  }

  .split-media img {
    min-height: 360px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    padding: 28px;
  }

  .page-hero {
    padding-top: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 13px;
    bottom: 13px;
    width: 52px;
    justify-content: center;
    overflow: hidden;
    padding: 13px;
    white-space: nowrap;
  }

  .whatsapp-float span {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
