/* ═══════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════ */
:root {
  --fucsia: #bf2c53;
  --fucsia-dark: #8a1f3a;
  --fucsia-hover: #a82649;
  --amarillo-claro: #fff1d4;
  --amarillo-pastel: #ffd988;
  --tierra: #d6c8ba;
  --verde: #67796b;
  --blanco: #ffffff;
  --negro: #1a1a18;
  --sombra: 0 2px 12px rgba(0,0,0,0.08);
  --sombra-hover: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-pill: 50px;
  --max-width: 1100px;
  --section-padding: 100px 0;
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--negro);
  background: var(--blanco);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.2;
  font-weight: 600;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ═══════════════════════════════════════
   COVER — Full screen welcome
   ═══════════════════════════════════════ */
.cover {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('fotos/fondos/cover-desktop.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 100;
}

.cover-content {
  animation: coverFadeIn 1.2s ease forwards;
}

.cover-logo {
  height: 420px;
  width: auto;
}

.cover-scroll {
  position: absolute;
  bottom: 40px;
  color: #8a7a6a;
  text-decoration: none;
  animation: coverBounce 2s ease infinite;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.cover-scroll:hover {
  opacity: 1;
}

@keyframes coverFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes coverBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

@media (max-width: 768px) {
  .cover {
    background-image: url('fotos/fondos/cover-movil.jpg');
  }
  .cover-logo {
    height: 280px;
  }
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--fucsia);
  color: var(--blanco);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}

.btn-primary:hover {
  background: var(--fucsia-hover);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-block;
  background: var(--blanco);
  color: var(--fucsia);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}

.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.microcopy {
  font-size: 0.85rem;
  color: #777;
  margin-top: 12px;
}

/* ═══════════════════════════════════════
   NAV
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow var(--transition);
  transform: translateY(-100%);
}

.nav.nav-visible {
  transform: translateY(0);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 160px;
  width: auto;
  margin: -46px 0 -46px -16px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: #555;
  transition: color var(--transition);
  position: relative;
}

.nav-menu a:hover {
  color: var(--fucsia);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fucsia);
  transition: width var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--negro);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav .btn-primary {
  padding: 10px 28px;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  padding: 160px 0 100px;
  background: url('fotos/fondos/1.jpg') center bottom/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 50%, rgba(255,255,255,0.3) 100%);
}

/* Decorative icon elements */
.deco-icon {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Section dividers with Icono_09 */
.section-divider {
  text-align: center;
  padding: 20px 0;
  background: var(--blanco);
  line-height: 0;
}

.section-divider img {
  display: inline-block;
  width: 90px;
  height: auto;
  opacity: 0.55;
}

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

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  text-align: left;
}

.seo-h1 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-h1 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-pretitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-headline {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-headline .accent {
  color: var(--fucsia);
}

.hero-headline-sub {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  display: block;
  margin-top: 8px;
}

.hero .subtitle {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  max-width: 540px;
  margin: 0 0 40px;
  color: #444;
  line-height: 1.8;
}

.hero .credentials {
  font-size: 0.82rem;
  color: #999;
  margin-top: 32px;
  letter-spacing: 0.02em;
}

.hero .credentials span {
  margin: 0 6px;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ═══════════════════════════════════════
   SECTION: TE RECONOCES
   ═══════════════════════════════════════ */
.reconoces {
  padding: var(--section-padding);
  position: relative;
  background: var(--tierra);
}

.reconoces::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('fotos/patrones/Patron_-03.png') center/600px repeat;
  opacity: 0.08;
  pointer-events: none;
}

.reconoces h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  text-align: center;
  margin-bottom: 36px;
  color: var(--negro);
}

.frases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.frase-card {
  background: var(--blanco);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: var(--sombra);
  font-style: italic;
  font-size: 0.9rem;
  color: #555;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
  line-height: 1.4;
  white-space: nowrap;
}

.frase-card:hover {
  transform: scale(1.03);
  box-shadow: var(--sombra-hover);
  color: var(--fucsia);
}

.frase-card::before {
  content: '\201C';
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--fucsia);
  margin-right: 4px;
  font-style: normal;
}

.reconoces-cierre {
  display: flex;
  align-items: center;
  gap: 48px;
}

.reconoces-cierre-img {
  flex-shrink: 0;
  width: 280px;
}

.reconoces-cierre-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.reconoces .transicion {
  text-align: left;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--negro);
}

.reconoces .transicion strong {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  color: var(--fucsia);
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════
   SECTION: QUIEN ES JUNCAL
   ═══════════════════════════════════════ */
.quien {
  padding: var(--section-padding);
  background: var(--blanco);
}

.quien-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.quien-foto {
  border-radius: var(--radius);
  overflow: hidden;
}

.quien-foto img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
}

.foto-caption {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--verde);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
  opacity: 0.85;
}

.quien-texto h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 28px;
  color: var(--negro);
}

.quien-texto p {
  margin-bottom: 18px;
  color: #444;
  font-size: 0.98rem;
}

.quien-texto .highlight {
  font-weight: 600;
  color: var(--negro);
  font-size: 1.05rem;
  font-style: italic;
}

.credenciales-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.credenciales-list li {
  background: var(--amarillo-claro);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
}

.quien-frase-cierre {
  margin-top: 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fucsia);
  font-style: italic;
}

/* ═══════════════════════════════════════
   SECTION: METODO SULIBE
   ═══════════════════════════════════════ */
.metodo {
  padding: var(--section-padding);
  position: relative;
  background: var(--amarillo-claro);
}

.metodo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('fotos/patrones/Patron_ 1.png') center/500px repeat;
  opacity: 0.08;
  pointer-events: none;
}

.metodo h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 12px;
}

.metodo .metodo-sub {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1rem;
}

.metodo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.metodo-card {
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--sombra);
  border-top: 3px solid var(--amarillo-pastel);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.metodo-card:nth-child(1) { border-top-color: var(--amarillo-pastel); }
.metodo-card:nth-child(2) { border-top-color: var(--verde); }
.metodo-card:nth-child(3) { border-top-color: var(--fucsia); }

.metodo-card-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 12px;
  opacity: 0.7;
}

.metodo-card .inicial {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 700;
  color: var(--fucsia);
  line-height: 1;
  margin-bottom: 4px;
}

.metodo-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--negro);
}

.metodo-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
}

.metodo-card.transforma {
  border-left: 4px solid var(--fucsia);
}

.metodo-img {
  max-width: 600px;
  margin: 0 auto 50px;
}

.metodo-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  object-fit: cover;
  aspect-ratio: 16/9;
}

.metodo-promesa {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
}

.metodo-promesa strong {
  color: var(--negro);
}

/* ═══════════════════════════════════════
   SECTION: SERVICIOS
   ═══════════════════════════════════════ */
.servicios {
  padding: var(--section-padding);
  background: var(--blanco);
}

.servicios h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
}

.servicios-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 50px;
}

.servicio-card {
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--sombra);
  border-left: 5px solid;
  transition: transform var(--transition);
}

.servicio-card:hover {
  transform: translateY(-3px);
}

.servicio-card:nth-child(1) { border-left-color: var(--fucsia); }
.servicio-card:nth-child(2) { border-left-color: var(--verde); }
.servicio-card:nth-child(3) { border-left-color: var(--tierra); }

.servicio-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--negro);
}

.servicio-card > p {
  color: #555;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.servicio-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.servicio-card ul li {
  font-size: 0.9rem;
  color: #555;
  padding-left: 22px;
  position: relative;
}

.servicio-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background: url('fotos/icono/Icono_07.png') center/contain no-repeat;
  opacity: 0.6;
}

.servicios .cta-mid {
  text-align: center;
}

.servicios .cta-mid p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
}

/* ═══════════════════════════════════════
   SECTION: QUE CAMBIA EN TI
   ═══════════════════════════════════════ */
.beneficios {
  padding: var(--section-padding);
  background: #f5ede5;
}

.beneficios h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.beneficio-item {
  background: var(--blanco);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  border-left: 3px solid var(--amarillo-pastel);
  transition: transform var(--transition);
}

.beneficio-item:hover {
  transform: translateY(-3px);
}

.beneficio-item:nth-child(even) {
  border-left-color: var(--fucsia);
}

.beneficio-item:nth-child(3n) {
  border-left-color: var(--verde);
}

.beneficio-item h3 {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--fucsia);
  margin-bottom: 8px;
  font-weight: 700;
}

.beneficio-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   SECTION: COMO FUNCIONA
   ═══════════════════════════════════════ */
.como-funciona {
  padding: var(--section-padding);
  background: var(--amarillo-claro);
}

.como-funciona h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
}

.proceso-img {
  max-width: 700px;
  margin: 0 auto 50px;
}

.proceso-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  object-fit: cover;
  aspect-ratio: 16/9;
}

.pasos {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto 50px;
}

.paso {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.paso-num {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 700;
  color: var(--fucsia);
  line-height: 1;
  min-width: 60px;
}

.paso-texto h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--negro);
  font-weight: 600;
}

.paso-texto p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.como-funciona .cta-center {
  text-align: center;
}

.como-funciona .cta-center .microcopy {
  color: #888;
}

/* ═══════════════════════════════════════
   SECTION: TESTIMONIOS
   ═══════════════════════════════════════ */
.testimonios {
  padding: var(--section-padding);
  background: url('fotos/fondos/5.jpg') center/cover no-repeat;
  position: relative;
}

.testimonios::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.55);
}

.testimonios .container {
  position: relative;
  z-index: 1;
}

.testimonios h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
}

.testimonio-card {
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--sombra);
  text-align: center;
}

.testimonio-card .quote {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-style: italic;
  color: #444;
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
}

.testimonio-card .quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--fucsia);
  font-style: normal;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.testimonio-card .autor {
  font-weight: 700;
  color: var(--negro);
  font-size: 0.95rem;
}

.testimonio-card .cargo {
  color: #888;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   SECTION: MANIFIESTO
   ═══════════════════════════════════════ */
.manifiesto {
  padding: var(--section-padding);
  background: var(--tierra);
}

.manifiesto h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center;
  color: var(--negro);
  margin-bottom: 40px;
}

.manifiesto-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.manifiesto-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--negro);
  margin-bottom: 20px;
}

.manifiesto-cierre {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-family: var(--font-title);
  font-size: 1.2rem !important;
  color: var(--fucsia) !important;
}

/* ═══════════════════════════════════════
   SECTION: FAQ
   ═══════════════════════════════════════ */
.faq {
  padding: var(--section-padding);
  position: relative;
  background: var(--blanco);
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('fotos/patrones/Patron_-04.png') center/550px repeat;
  opacity: 0.06;
  pointer-events: none;
}

.faq h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--negro);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 16px;
}

.faq-question:hover {
  color: var(--fucsia);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   SECTION: FORMULARIO
   ═══════════════════════════════════════ */
.formulario {
  padding: var(--section-padding);
  background: url('fotos/fondos/6.jpg') center top/cover no-repeat;
  position: relative;
}

.formulario::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.80);
}

.formulario .container {
  position: relative;
  z-index: 1;
}

.formulario h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 12px;
}

.formulario .form-sub {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 48px;
}

.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
  background: var(--amarillo-claro);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--sombra);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--negro);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--negro);
  background: var(--blanco);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--fucsia);
  box-shadow: 0 0 0 3px rgba(191, 44, 83, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--fucsia);
  cursor: pointer;
}

.form-check label {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
  cursor: pointer;
}

.form-check label a {
  color: var(--fucsia);
  text-decoration: underline;
}

.form-check label a:hover {
  color: var(--fucsia-dark);
}

.form-wrapper .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

.form-wrapper .microcopy {
  text-align: center;
}

.form-privacidad {
  font-size: 0.78rem;
  color: #999;
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   SECTION: CTA FINAL
   ═══════════════════════════════════════ */
.cta-final {
  padding: 100px 0;
  background: var(--fucsia-dark);
  color: var(--blanco);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cta-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

.cta-final .fracaso {
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.9;
  opacity: 0.9;
}

.cta-final .exito {
  max-width: 650px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.9;
  font-style: italic;
  opacity: 0.9;
}

.cta-final h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 28px;
}

.cta-final .microcopy {
  color: rgba(255,255,255,0.7);
}

.cta-final .texto-final {
  margin-top: 40px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--negro);
  padding: 48px 0;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

.footer-logo img {
  height: 200px;
  width: auto;
  margin: -50px auto -30px;
}

.footer-contacto {
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.footer-contacto a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-contacto a:hover {
  color: var(--blanco);
}

.footer-sep {
  margin: 0 12px;
  color: rgba(255,255,255,0.3);
}

.footer-legal {
  margin-bottom: 16px;
  font-size: 0.8rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--blanco);
}

.footer .copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════
   WHATSAPP BUTTON
   ═══════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ═══════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--negro);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  flex: 1;
}

.cookie-text a {
  color: var(--amarillo-pastel);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--blanco);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
}

.cookie-accept {
  background: var(--fucsia);
  color: var(--blanco);
}

.cookie-accept:hover {
  background: var(--fucsia-hover);
  transform: translateY(-1px);
}

.cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
  color: var(--blanco);
  border-color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blanco);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.06);
  }

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

  .nav-menu li {
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

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

  .hero-text {
    text-align: center;
    order: 1;
  }

  .hero-image {
    order: 0;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero .subtitle {
    margin: 0 auto 40px;
  }

  .quien-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quien-foto {
    max-width: 400px;
    margin: 0 auto;
  }

  .reconoces-cierre {
    flex-direction: column;
    text-align: center;
  }

  .reconoces-cierre-img {
    width: 220px;
  }

  .reconoces .transicion {
    text-align: center;
  }

  /* Tablet: reduce deco icons */
  .deco-icon {
    transform: scale(0.75) !important;
  }

  .beneficios-grid {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .hero {
    padding: 130px 0 70px;
  }

  .frase-card {
    white-space: normal;
    font-size: 0.85rem;
  }

  .metodo-cards {
    grid-template-columns: 1fr;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .paso {
    gap: 20px;
  }

  .paso-num {
    font-size: 3rem;
    min-width: 45px;
  }

  .testimonio-card {
    padding: 32px 24px;
  }

  .form-wrapper {
    padding: 32px 24px;
  }

  .nav .btn-primary {
    padding: 8px 20px;
    font-size: 0.82rem;
  }

  .nav-logo img {
    height: 120px;
    margin: -32px 0 -32px -10px;
  }

  .btn-primary, .btn-white {
    padding: 14px 32px;
    font-size: 0.95rem;
  }

  .cta-final {
    padding: 70px 0;
  }

  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }

  /* Backgrounds responsive */
  .hero::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.80) 60%, rgba(255,255,255,0.5) 100%);
  }

  .reconoces::before {
    background-size: 350px;
    opacity: 0.06;
  }

  .metodo::before {
    background-size: 300px;
    opacity: 0.06;
  }

  .faq::before {
    background-size: 300px;
    opacity: 0.04;
  }

  .testimonios::before {
    background: rgba(255,255,255,0.70);
  }

  .formulario::before {
    background: rgba(255,255,255,0.88);
  }

  /* Deco icons smaller on mobile */
  .deco-icon {
    transform: scale(0.6) !important;
    opacity: 0.15 !important;
  }

  /* Section dividers smaller */
  .section-divider img {
    width: 60px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text {
    font-size: 0.8rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
