/* ===== VARIABLES ===== */
:root {
  /* Colores primarios */
  --color-terracota:     #B85C2C;
  --color-terracota-dk:  #A04E22;
  --color-terracota-lt:  #C96B38;
  --color-orange-accent: #C15B28;

  /* Neutros */
  --color-white:         #FFFFFF;
  --color-bg-light:      #F5F3F0;
  --color-gray-text:     #3D3D3D;
  --color-gray-mid:      #6B6B6B;
  --color-gray-light:    #EBEBEB;

  /* Estado */
  --color-overlay:       rgba(0,0,0,0.45);

  /* Tipografia */
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;

  /* Escala tipografica */
  --text-hero:     clamp(3.5rem, 8vw, 7rem);
  --text-h1:       clamp(2rem, 4.5vw, 4rem);
  --text-h2:       clamp(1.4rem, 2.5vw, 2rem);
  --text-h3:       clamp(1.1rem, 1.8vw, 1.4rem);
  --text-body:     clamp(0.95rem, 1.2vw, 1.05rem);
  --text-small:    0.875rem;

  /* Espaciado */
  --section-py:    clamp(4rem, 8vh, 7rem);
  --section-px:    clamp(2rem, 6vw, 8rem);
  --col-gap:       4rem;
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-gray-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger for list items */
.herramientas-list .reveal:nth-child(1) { transition-delay: 0s; }
.herramientas-list .reveal:nth-child(2) { transition-delay: 0.1s; }
.herramientas-list .reveal:nth-child(3) { transition-delay: 0.2s; }
.herramientas-list .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ===== NAV STICKY ===== */
.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(184, 92, 44, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.nav-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
}

.nav-links a {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

/* ===== SECTIONS BASE ===== */
.section {
  padding: var(--section-py) var(--section-px);
}

.section-hero {
  background: var(--color-terracota);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.section-light {
  background: var(--color-bg-light);
}

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

.section-dark-photo {
  position: relative;
  min-height: 100vh;
  color: white;
  display: flex;
  align-items: center;
}

.section-mes {
  min-height: 80vh;
}

.section-mes.alt {
  background: var(--color-bg-light);
}

.section-cta {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ===== LAYOUT HELPERS ===== */
.two-col {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: var(--col-gap);
  align-items: center;
}

.col-55-45 > :first-child { flex: 55; }
.col-55-45 > :last-child  { flex: 45; }

.col-50-50 > :first-child { flex: 1; }
.col-50-50 > :last-child  { flex: 1; }

.col-40-60 > :first-child { flex: 40; }
.col-40-60 > :last-child  { flex: 60; }

.col-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== UTILITY CLASSES ===== */
.tc { color: var(--color-terracota); }

.display-title {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-terracota);
  font-size: var(--text-h1);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.display-title-white {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-terracota);
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.display-title-dark {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-gray-text);
  font-size: var(--text-h1);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.body-text {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-gray-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.body-white {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.text-large {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-gray-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.statement {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-terracota);
  font-size: 1.3rem;
  margin-top: 1.5rem;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  min-height: 350px;
}

.contain-img {
  width: 100%;
  object-fit: contain;
}

/* ===== SECTION 1 — HERO ===== */
.hero-cols {
  width: 100%;
}

.hero-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-flame-img {
  max-height: 80vh;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.hero-text-col h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-hero);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.hero-separator {
  width: 60px;
  height: 2px;
  background: white;
  margin-bottom: 1.5rem;
}

.hero-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}

.hero-quote strong {
  font-weight: 700;
  font-style: italic;
}

.deco-quote {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  vertical-align: -0.15em;
  opacity: 0.6;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* ===== SECTION 2 — PUERTA ===== */
.arch-img-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.arch-img-wrapper .cover-img {
  min-height: 450px;
}

.arch-flame-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  opacity: 0.8;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.5));
}

/* ===== SECTION 3 — CHISPA ===== */
.circulo-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-terracota);
  font-size: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.3rem;
}

/* ===== SECTION 4 — 6 MESES ===== */
.seis-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: var(--col-gap);
  align-items: flex-start;
}

.seis-left {
  flex-shrink: 0;
}

.giant-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(12rem, 22vw, 20rem);
  color: var(--color-terracota);
  line-height: 0.85;
  display: block;
}

.seis-right {
  flex: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.benefit-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-gray-text);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.benefit-item p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-gray-mid);
}

.benefit-full {
  grid-column: 1 / -1;
}

.seis-bottom {
  display: flex;
  flex-direction: column;
}

.seis-meses-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--color-terracota);
  line-height: 1;
}

.seis-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 2rem);
  color: var(--color-terracota);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== SECTION 5 — MEMBRESIA ===== */
.bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.7);
}

.membresia-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  padding: 0 var(--section-px);
}

.hex-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1.5rem;
}

.membresia-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-h1);
  color: white;
  margin-bottom: 0.8rem;
}

.membresia-cta {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-terracota);
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* ===== SECTIONS 6-11 — MESES ===== */
.mes-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: var(--col-gap);
  position: relative;
}

.mes-left {
  flex: 1;
  position: relative;
}

.mes-divider {
  width: 1px;
  background: var(--color-gray-light);
  flex-shrink: 0;
}

.mes-right {
  flex: 1;
}

.mes-header {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.mes-vertical {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gray-mid);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.month-number {
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 14rem);
  font-weight: 900;
  color: var(--color-terracota);
  line-height: 0.85;
  will-change: transform;
}

.mes-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-terracota);
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.mes-fase {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-gray-mid);
  margin-bottom: 1.5rem;
}

.mes-promesa {
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--color-gray-light);
}

.promesa-label {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gray-mid);
  display: block;
  margin-bottom: 0.5rem;
}

.promesa-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  color: var(--color-terracota);
  font-size: 1.1rem;
  line-height: 1.5;
}

.mes-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-gray-text);
  line-height: 1.7;
}

.herramientas-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-terracota);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.herramientas-list {
  margin-bottom: 2rem;
  padding-left: 0;
}

.herramientas-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-gray-text);
  line-height: 1.6;
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  position: relative;
}

.herramientas-list li::before {
  content: '\00B7';
  position: absolute;
  left: 0;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--color-terracota);
  line-height: 1.2;
}

.llevas-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-gray-text);
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

/* Hover border animation on mes sections */
.section-mes {
  position: relative;
}

.section-mes::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--color-terracota);
  transition: height 0.4s ease;
}

.section-mes:hover::before {
  height: 100%;
}

/* ===== SECTION 12 — INCLUYE ===== */
.incluye-container {
  max-width: 900px;
  margin: 0 auto;
}

.include-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.include-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}

.include-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--color-terracota);
  line-height: 1;
}

.include-bar {
  background: var(--color-terracota);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  font-size: 1.05rem;
  border-radius: 2px;
}

.include-desc {
  padding: 0.4rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-gray-mid);
}

/* ===== SECTION 13 — CONDICIONES ===== */
.condiciones-flame {
  height: 300px;
  width: auto;
  object-fit: contain;
}

.condiciones-text {
  flex: 60;
}

.condiciones-list li {
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: white;
  padding-left: 1.5rem;
  position: relative;
}

.condiciones-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  font-weight: 900;
}

.condiciones-list li strong {
  font-weight: 700;
}

/* ===== SECTION 14 — FASE IV ===== */
.fase-iv-label {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-terracota);
  font-size: 5rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.fase-iv-subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-terracota);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.fase-iv-quote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-gray-text);
  line-height: 1.8;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.deco-quote-big {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-terracota);
  font-size: 4rem;
  line-height: 0;
  vertical-align: -0.3em;
}

/* ===== SECTION 15 — PRICING ===== */
.pricing-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.pricing-heading {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-gray-text);
  font-size: var(--text-h1);
  margin-bottom: 2.5rem;
}

/* Pricing group (subsección) */
.pricing-group {
  margin-bottom: 2.5rem;
}

.pricing-group:last-of-type {
  margin-bottom: 2rem;
}

.pricing-group__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--color-terracota);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.pricing-group__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-terracota);
  margin: 0.5rem auto 0;
}

.pricing-group__footnote {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-gray-mid);
  font-style: italic;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-global-note {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-gray-text);
  background: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Invitación (reemplazo temporal de pricing) */
.inversion-invitacion {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-white);
  border: 2px solid var(--color-terracota);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 24px rgba(184, 92, 44, 0.1);
}

.inversion-invitacion__lead {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--color-terracota);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.inversion-invitacion__body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-gray-text);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.inversion-invitacion__body strong {
  color: var(--color-terracota);
}

.inversion-invitacion__cierre {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-gray-text);
  font-style: italic;
  margin-bottom: 2rem;
}

.inversion-invitacion .btn-cta {
  min-width: 220px;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

/* Pricing card */
.pricing-card {
  background: var(--color-white);
  border: 2px solid var(--color-gray-light);
  border-radius: 12px;
  padding: 2.2rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--color-terracota);
  box-shadow: 0 4px 24px rgba(184, 92, 44, 0.15);
}

.pricing-card--featured:hover {
  box-shadow: 0 8px 36px rgba(184, 92, 44, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-terracota);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* Card row: label + sub */
.pricing-card__row {
  margin-bottom: 0.8rem;
}

.pricing-card__row-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-gray-mid);
  display: block;
}

.pricing-card--featured .pricing-card__row-label {
  color: var(--color-terracota);
}

.pricing-card__row-sub {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-gray-mid);
  display: block;
  margin-top: 0.15rem;
}

/* Card amount */
.pricing-card__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  color: var(--color-gray-text);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.pricing-card--featured .pricing-card__amount {
  color: var(--color-terracota);
}

.pricing-card__amount span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gray-mid);
}

/* Card details */
.pricing-card__details {
  margin-bottom: 1rem;
}

.pricing-card__details p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-gray-mid);
  line-height: 1.5;
  margin: 0;
}

.pricing-card__early {
  font-weight: 700 !important;
  color: var(--color-terracota) !important;
  font-size: 1rem !important;
  margin-bottom: 0.15rem !important;
}

.pricing-card__note {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-gray-mid);
}

/* Card CTA */
.pricing-card .btn-cta {
  margin-top: auto;
  margin-bottom: 0;
  width: 100%;
  max-width: 240px;
}

.btn-cta--outline {
  background: transparent;
  color: var(--color-terracota);
  border: 2px solid var(--color-terracota);
}

.btn-cta--outline:hover {
  background: var(--color-terracota);
  color: white;
}

/* ===== SECTION 16 — CTA ===== */
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: desaturate(30%);
}

.cta-overlay {
  position: absolute;
  inset: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-lead {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--color-gray-mid);
  line-height: 1.4;
}

.cta-hero {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-terracota);
  font-size: var(--text-hero);
  line-height: 1;
  margin-bottom: 2rem;
}

.btn-cta {
  display: inline-block;
  background: var(--color-terracota);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  min-width: 280px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.btn-cta:hover {
  background: var(--color-terracota-lt);
  transform: translateY(-2px);
}

.cta-plat {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-gray-text);
  font-size: 2rem;
}

/* ===== SECTION 17 — CIERRE ===== */
.section-cierre {
  min-height: auto;
  padding: var(--section-py) var(--section-px);
}

.cierre-cols {
  min-height: 50vh;
}

.cierre-flame {
  height: 250px;
  width: auto;
  object-fit: contain;
}

.cierre-quote {
  color: white;
}

.quote-line {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.3;
}

.quote-bold {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.deco-quote-cierre {
  font-weight: 900;
  opacity: 0.4;
  font-size: 1.2em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .month-number {
    font-size: clamp(6rem, 14vw, 10rem);
  }

  .giant-number {
    font-size: clamp(8rem, 16vw, 14rem);
  }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(184, 92, 44, 0.97);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0.8rem;
  }

  .nav-links.open {
    display: flex;
  }

  /* Layout */
  .two-col {
    flex-direction: column;
    gap: 2rem;
  }

  .col-55-45 > :first-child,
  .col-55-45 > :last-child,
  .col-50-50 > :first-child,
  .col-50-50 > :last-child,
  .col-40-60 > :first-child,
  .col-40-60 > :last-child {
    flex: unset;
    width: 100%;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  /* Hero */
  .hero-cols {
    text-align: center;
  }

  .hero-flame-img {
    max-height: 40vh;
  }

  .hero-separator {
    margin-left: auto;
    margin-right: auto;
  }

  /* 6 meses */
  .seis-layout {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .giant-number {
    font-size: 10rem;
  }

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

  .seis-bottom {
    align-items: center;
  }

  /* Mes sections */
  .mes-content {
    flex-direction: column;
  }

  .mes-divider {
    width: 100%;
    height: 1px;
  }

  .month-number {
    font-size: 6rem;
  }

  /* Incluye */
  .include-item {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.5rem;
  }

  .include-number {
    font-size: 2.5rem;
  }

  /* Condiciones */
  .condiciones-flame {
    height: 150px;
  }

  /* Fase IV */
  .fase-iv-label {
    font-size: 3.5rem;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .pricing-card {
    padding: 1.8rem 1.5rem 1.5rem;
  }

  .pricing-card__amount {
    font-size: 2.2rem;
  }

  .pricing-card .btn-cta {
    max-width: 100%;
  }

  .pricing-heading {
    margin-bottom: 1.5rem;
  }

  .pricing-group {
    margin-bottom: 2rem;
  }

  .pricing-group__title {
    font-size: 1.3rem;
    color: var(--color-terracota);
    margin-bottom: 2rem;
  }

  .pricing-global-note {
    font-size: var(--text-small);
    padding: 0.8rem 1.2rem;
  }

  .inversion-invitacion {
    padding: 2rem 1.5rem;
  }

  /* CTA */
  .cta-lead {
    font-size: 1.2rem;
  }

  .btn-cta {
    min-width: unset;
    width: 100%;
    max-width: 320px;
  }

  /* Cierre */
  .cierre-cols {
    text-align: center;
    min-height: auto;
  }

  .cierre-flame {
    height: 150px;
  }

  .quote-line {
    font-size: 1.5rem;
  }

  .quote-bold {
    font-size: 2.5rem;
  }

  /* Mobile general spacing optimization */
  .display-title {
    margin-bottom: 1rem;
  }

  .statement {
    margin-top: 1rem;
  }

  .mes-promesa {
    margin-bottom: 1rem;
    padding-top: 0.8rem;
  }

  .herramientas-list {
    margin-bottom: 1.5rem;
  }

  .herramientas-list li {
    margin-bottom: 0.6rem;
  }

  .condiciones-list li {
    margin-bottom: 1rem;
  }

  .include-list {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 1.2rem;
  }

  .hero-text-col h1 {
    font-size: 3rem;
  }

  .giant-number {
    font-size: 7rem;
  }

  .seis-meses-text {
    font-size: 2.5rem;
  }

  .month-number {
    font-size: 5rem;
  }

  .mes-title {
    font-size: 1.6rem;
  }

  .pricing-card {
    padding: 1.5rem 1rem 1.2rem;
  }

  .pricing-card__amount {
    font-size: 2rem;
  }

  .pricing-card__row-label {
    font-size: 0.95rem;
  }

  .pricing-group__title {
    font-size: 1.2rem;
    color: var(--color-terracota);
    margin-bottom: 1.8rem;
  }

  .cta-hero {
    margin-bottom: 1.5rem;
  }

  .cta-plat {
    font-size: 1.5rem;
  }
}
