/* ============================================================
   MUJER ARTESANA — v4
   style.css
   Mobile-first · WCAG 2.1 AA · AIDA methodology
   Paleta preservada de v3
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --rosa:         #E8559A;
  --rosa-light:   #F5A8CE;
  --rosa-pale:    #FCE4F1;
  --morado:       #7C3AED;
  --morado-dark:  #5B21B6;
  --morado-mid:   #A855F7;
  --azul:         #2563EB;
  --azul-light:   #60A5FA;
  --azul-pale:    #DBEAFE;
  --blanco:       #FFFFFF;
  --gris-claro:   #F8F7FF;
  --gris-texto:   #1E1040;
  --sombra:       rgba(124,58,237,.12);

  /* Tipografía */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  /* Espaciado fluido */
  --section-pad:  clamp(60px, 8vw, 100px) 5%;
}

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

html {
  scroll-behavior: smooth;
  /* Accesibilidad: respeta preferencia de movimiento reducido */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  background-color: var(--gris-claro);
  color: var(--gris-texto);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── ACCESIBILIDAD — Skip link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--morado-dark);
  color: #fff;
  padding: .6rem 1.2rem;
  border-radius: 0 0 8px 8px;
  font-size: .9rem;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; outline: 3px solid var(--rosa); outline-offset: 2px; }

/* ── ACCESIBILIDAD — Visually hidden ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── ACCESIBILIDAD — Focus visible global ── */
:focus-visible {
  outline: 3px solid var(--rosa);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes floatSpark {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: .35; }
  50%      { transform: translateY(-14px) rotate(15deg); opacity: .65; }
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  50%      { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}



/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,58,237,.15);
  animation: slideDown .6s ease both;
}

.nav-logo-link { text-decoration: none; display: inline-flex; align-items: center; }

/* Logo imagen — nav */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Logo imagen — footer (ligeramente más grande) */
.logo-img--footer {
  height: 56px;
  filter: brightness(0) invert(1); /* invierte a blanco sobre fondo oscuro del footer */
}

/* Mantener compatibilidad si queda algún .logo de texto en otra versión */
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gris-texto);
  letter-spacing: -.5px;
}
.logo span { color: var(--rosa); }

.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--gris-texto);
  text-decoration: none; letter-spacing: .3px;
  transition: color .25s;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--morado); }

.nav-cta {
  background: linear-gradient(135deg, var(--rosa), var(--morado));
  color: #fff; border: none; border-radius: 50px;
  padding: 10px 24px; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: background .25s, transform .2s;
  font-family: var(--font-body);
}
.nav-cta:hover { background: linear-gradient(135deg, var(--morado), var(--azul)); transform: scale(1.04); }


/* ══════════════════════════════════════════
   HERO — AIDA: ATENCIÓN
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 5% 60px;
  background: linear-gradient(135deg, #fdf0f8 0%, #f3eaff 50%, #e8f0ff 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,85,154,.22) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(124,58,237,.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

.hero-text { z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--rosa), var(--morado)); color: #fff;
  font-size: .8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp .7s .2s ease both;
}
.hero-badge::before { content: '🌿'; font-size: 1rem; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1.1;
  color: var(--gris-texto);
  animation: fadeUp .7s .35s ease both;
}
.hero h1 em { color: var(--rosa); font-style: italic; }

.hero-sub {
  font-size: 1.15rem; line-height: 1.7; color: #4a3570;
  max-width: 500px; margin: 20px 0 36px;
  animation: fadeUp .7s .5s ease both;
}

.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeUp .7s .65s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rosa), var(--morado)); color: #fff;
  border: none; border-radius: 50px;
  padding: 15px 32px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all .25s;
  box-shadow: 0 6px 24px rgba(124,58,237,.35);
  font-family: var(--font-body);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--morado), var(--azul)); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,99,235,.3); }

.btn-secondary {
  background: transparent; color: var(--gris-texto);
  border: 2px solid var(--gris-texto); border-radius: 50px;
  padding: 13px 30px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all .25s;
  font-family: var(--font-body);
}
.btn-secondary:hover { background: var(--morado); color: #fff; border-color: var(--morado); transform: translateY(-2px); }

/* Hero visual — tarjetas emoji */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; justify-content: center; align-items: center;
  animation: fadeUp .8s .4s ease both;
}
.hero-emoji-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 460px;
}
.ecard {
  border-radius: 22px; padding: 28px 22px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px var(--sombra);
  transition: transform .3s;
}
.ecard:hover { transform: translateY(-6px); }
.ecard:nth-child(1) { grid-row: span 2; background: linear-gradient(145deg, #fce4f1, #e8559a); }
.ecard:nth-child(2) { background: linear-gradient(145deg, #ede9ff, #7c3aed); }
.ecard:nth-child(3) { background: linear-gradient(145deg, #dbeafe, #2563eb); }
.ecard-icon  { font-size: 2.4rem; }
.ecard-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--gris-texto); }
.ecard-sub   { font-size: .8rem; color: rgba(255,255,255,.85); line-height: 1.4; }


/* ══════════════════════════════════════════
   STATS BAR — Prueba social
══════════════════════════════════════════ */
.stats {
  padding: 60px 5%;
  background: linear-gradient(135deg, var(--morado-dark) 0%, var(--morado) 50%, var(--azul) 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item  { padding: 20px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 900;
  color: var(--rosa-light); line-height: 1;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.75); margin-top: 8px; line-height: 1.4; }


/* ══════════════════════════════════════════
   CONSENTIDO BOX — AIDA: INTERÉS + DESEO + ACCIÓN
══════════════════════════════════════════ */
.consentido-box {
  padding: var(--section-pad);
  background: linear-gradient(160deg, #1a0533 0%, #2d1060 40%, #1e0a3c 70%, #0f172a 100%);
  position: relative; overflow: hidden;
}
.consentido-box::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,85,154,.25) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.consentido-box::after {
  content: '';
  position: absolute; bottom: -80px; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}

/* Chispitas decorativas */
.csb-sparkle {
  position: absolute; pointer-events: none;
  font-size: 1.4rem; opacity: .35;
  animation: floatSpark 4s ease-in-out infinite;
}
.csb-sparkle:nth-child(1) { top: 12%; left:  8%; animation-delay: 0s; }
.csb-sparkle:nth-child(2) { top: 22%; right: 12%; animation-delay: 1s; }
.csb-sparkle:nth-child(3) { bottom: 18%; left: 20%; animation-delay: 2s; }
.csb-sparkle:nth-child(4) { top: 60%; right:  6%; animation-delay: 1.5s; }

.csb-inner   { position: relative; z-index: 2; }
.csb-header  { text-align: center; margin-bottom: 70px; }

.csb-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, rgba(232,85,154,.25), rgba(124,58,237,.25));
  border: 1px solid rgba(232,85,154,.4);
  color: var(--rosa-light); font-size: .82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 20px; border-radius: 50px;
  margin-bottom: 22px;
}
.csb-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 900; color: #fff; line-height: 1.1;
  margin-bottom: 18px;
}
.csb-title em { color: var(--rosa); font-style: italic; }
.csb-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.7);
  max-width: 580px; margin: 0 auto; line-height: 1.8;
}

/* Grid de cajas */
.csb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
  list-style: none;
}

.csb-card {
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px; overflow: hidden;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  cursor: pointer; position: relative;
}
.csb-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(232,85,154,.25);
  border-color: rgba(232,85,154,.45);
}
.csb-card.featured {
  border-color: rgba(232,85,154,.4);
  box-shadow: 0 0 0 1px rgba(232,85,154,.25), 0 20px 60px rgba(232,85,154,.15);
}

/* Ribbon */
.csb-ribbon {
  position: absolute; top: 18px; right: -28px;
  background: linear-gradient(135deg, var(--rosa), var(--morado));
  color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 36px; transform: rotate(35deg);
  box-shadow: 0 4px 14px rgba(232,85,154,.5);
  z-index: 3;
}

.csb-img-wrap { position: relative; height: 220px; overflow: hidden; }
.csb-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; transition: transform .4s;
}
.csb-card:hover .csb-img-placeholder { transform: scale(1.08); }

/* Colores por tema */
.csb-card[data-theme="rosa"]   .csb-img-placeholder { background: linear-gradient(135deg,#3d0d2b,#6b1a4a,#3d0d2b); }
.csb-card[data-theme="morado"] .csb-img-placeholder { background: linear-gradient(135deg,#1e0640,#3b1270,#1e0640); }
.csb-card[data-theme="azul"]   .csb-img-placeholder { background: linear-gradient(135deg,#071833,#0d3060,#071833); }
.csb-card[data-theme="dorado"] .csb-img-placeholder { background: linear-gradient(135deg,#2a1a00,#5c3d00,#2a1a00); }
.csb-card[data-theme="verde"]  .csb-img-placeholder { background: linear-gradient(135deg,#0a1f10,#1a4a25,#0a1f10); }
.csb-card[data-theme="coral"]  .csb-img-placeholder { background: linear-gradient(135deg,#3a0d10,#6b2020,#3a0d10); }

.csb-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,5,35,.85) 0%, transparent 55%);
}
.csb-occasion {
  position: absolute; bottom: 14px; left: 16px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: .75rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
}

.csb-body    { padding: 24px 24px 28px; }
.csb-name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 900; color: #fff;
  margin-bottom: 8px; line-height: 1.3;
}
.csb-desc    { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 18px; }
.csb-items   { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; list-style: none; }
.csb-item-chip {
  background: rgba(232,85,154,.15);
  border: 1px solid rgba(232,85,154,.3);
  color: var(--rosa-light);
  font-size: .72rem; font-weight: 600;
  padding: 4px 11px; border-radius: 50px;
}
.csb-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px; gap: 12px; flex-wrap: wrap;
}
.csb-price-note {
  font-size: .9rem; color: rgba(255,255,255,.55);
  font-weight: 500;
}
.csb-btn {
  background: linear-gradient(135deg, var(--rosa), var(--morado));
  color: #fff; border: none; border-radius: 50px;
  padding: 10px 22px; font-size: .88rem; font-weight: 700;
  cursor: pointer; transition: all .25s;
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-body);
  white-space: nowrap;
}
.csb-btn:hover { background: linear-gradient(135deg, var(--morado), var(--azul)); transform: scale(1.05); box-shadow: 0 8px 24px rgba(124,58,237,.5); }

/* ── CTA BANNER + FORMULARIO WHATSAPP ── */
.csb-cta-banner {
  background: linear-gradient(135deg, rgba(232,85,154,.18), rgba(124,58,237,.22));
  border: 1px solid rgba(232,85,154,.3);
  border-radius: 28px;
  padding: 50px 48px;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 48px; position: relative; overflow: hidden;
}
.csb-cta-banner::before {
  content: '🎁';
  position: absolute; right: 240px; top: 50%;
  transform: translateY(-50%);
  font-size: 7rem; opacity: .08;
  pointer-events: none;
}

.csb-cta-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900; color: #fff; line-height: 1.2;
  margin-bottom: 12px;
}
.csb-cta-text h3 em { color: var(--rosa); font-style: italic; }
.csb-cta-text p { font-size: .98rem; color: rgba(255,255,255,.65); max-width: 480px; line-height: 1.7; }

.csb-cta-actions { flex-shrink: 0; min-width: 300px; }

/* ── FORMULARIO WHATSAPP ── */
.wa-form { display: flex; flex-direction: column; gap: 14px; }

.wa-form-row { display: flex; flex-direction: column; gap: 5px; }

.wa-label {
  font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .3px;
}

.wa-input {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 11px 16px;
  font-size: .92rem;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color .2s, background .2s;
  width: 100%;
  outline: none;
}
.wa-input::placeholder { color: rgba(255,255,255,.35); }
.wa-input:focus {
  border-color: var(--rosa-light);
  background: rgba(255,255,255,.14);
}
/* Estado de error — seguridad: feedback visual sin exponer datos */
.wa-input.error { border-color: #ff6b8a; }

.wa-textarea { resize: vertical; min-height: 80px; }

.wa-err {
  font-size: .76rem;
  color: #ff9ab5;
  min-height: 1em;
  font-weight: 500;
}
.wa-hint { font-size: .72rem; color: rgba(255,255,255,.35); }

/* Botón WhatsApp principal */
.csb-wa-btn {
  background: #25D366; color: #fff;
  border: none; border-radius: 50px;
  padding: 16px 28px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all .25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  white-space: nowrap; width: 100%;
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
  text-decoration: none;
  font-family: var(--font-body);
  margin-top: 4px;
}
.csb-wa-btn:hover {
  background: #1da851; transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,.5);
}
.csb-wa-sub {
  font-size: .78rem; color: rgba(255,255,255,.45);
  text-align: center; margin-top: 8px;
}


/* ══════════════════════════════════════════
   TENDENCIAS — AIDA: INTERÉS
══════════════════════════════════════════ */
.trends { padding: var(--section-pad); background: var(--gris-claro); }

/* Cabeceras de sección — reutilizables */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: .8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--morado); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--gris-texto); line-height: 1.15;
}
.section-title em { color: var(--rosa); font-style: italic; }
.section-sub {
  font-size: 1.05rem; color: #4a3570;
  max-width: 560px; margin: 14px auto 0; line-height: 1.7;
}

.trends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trend-card {
  background: #fff; border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(124,58,237,.15);
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.trend-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--rosa), var(--morado));
  border-radius: 4px 0 0 4px;
}
.trend-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--sombra); }
.trend-icon { font-size: 2.2rem; margin-bottom: 16px; }
.trend-stat {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900; color: var(--morado);
}
.trend-title { font-size: 1rem; font-weight: 600; color: var(--gris-texto); margin: 8px 0 10px; }
.trend-desc  { font-size: .9rem; color: #4a3570; line-height: 1.6; }


/* ══════════════════════════════════════════
   HISTORIA — AIDA: DESEO
══════════════════════════════════════════ */
.historia {
  padding: var(--section-pad);
  background: linear-gradient(160deg, #1e1040 0%, var(--morado-dark) 50%, #1a1060 100%);
  position: relative; overflow: hidden;
}
.historia::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A44C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.historia .section-header { margin-bottom: 70px; }
.historia .section-tag    { color: var(--morado-mid); }
.historia .section-title  { color: #f3eaff; }
.historia .section-title em { color: var(--morado-mid); }
.historia .section-sub    { color: rgba(245,237,216,.7); }

/* Historia intro */
.historia-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  margin-bottom: 80px;
  position: relative; z-index: 1;
}
.historia-intro-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900; color: #f3eaff; line-height: 1.25; margin-bottom: 20px;
}
.historia-intro-text h3 em { color: var(--morado-mid); font-style: italic; }
.historia-intro-text p { font-size: .98rem; color: rgba(245,237,216,.72); line-height: 1.85; margin-bottom: 14px; }

.historia-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hfact {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,164,76,.2);
  border-radius: 16px; padding: 20px 18px; text-align: center;
  transition: background .3s;
}
.hfact:hover { background: rgba(168,85,247,.15); }
.hfact-num   { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--rosa-light); }
.hfact-label { font-size: .8rem; color: rgba(245,237,216,.6); margin-top: 6px; line-height: 1.4; }

.sub-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900; color: #f3eaff;
  text-align: center; margin-bottom: 40px;
  position: relative; z-index: 1;
}
.sub-section-title em { color: var(--rosa-light); font-style: italic; }
.sub-section-title span {
  display: block; font-family: var(--font-body); font-size: .85rem;
  font-weight: 400; color: rgba(245,237,216,.5);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}

/* Colombia strip */
.colombia-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; position: relative; z-index: 1;
}
.col-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(168,85,247,.2);
  border-radius: 20px; padding: 28px 22px; text-align: center;
  transition: background .3s, transform .3s;
  position: relative; overflow: hidden;
}
.col-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rosa), var(--azul));
}
.col-card:hover { background: rgba(168,85,247,.12); transform: translateY(-6px); }
.col-icon   { font-size: 2.8rem; margin-bottom: 14px; }
.col-region {
  font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--morado-mid); margin-bottom: 8px;
}
.col-title  { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.col-desc   { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.col-badge  {
  display: inline-block; margin-top: 12px;
  background: rgba(232,85,154,.2); color: var(--rosa-light);
  font-size: .72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
  border: 1px solid rgba(232,85,154,.35);
}


/* ══════════════════════════════════════════
   EXPERIENCIAS — AIDA: DESEO
══════════════════════════════════════════ */
.experiencias {
  padding: var(--section-pad);
  background: linear-gradient(180deg, #f3eaff 0%, var(--gris-claro) 100%);
}

/* FILTER BAR */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 40px; padding: 18px 22px;
  background: #fff; border-radius: 18px;
  box-shadow: 0 4px 20px var(--sombra);
  border: 1px solid rgba(124,58,237,.12);
}
.filter-label { font-size: .78rem; font-weight: 700; color: var(--gris-texto); letter-spacing: .5px; text-transform: uppercase; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  padding: 7px 15px; border-radius: 50px;
  font-size: .8rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid rgba(124,58,237,.25);
  background: #fff; color: var(--morado);
  transition: all .2s; white-space: nowrap;
  font-family: var(--font-body);
}
.filter-chip:hover  { background: var(--morado); color: #fff; border-color: var(--morado); }
.filter-chip.active { background: linear-gradient(135deg,var(--rosa),var(--morado)); color: #fff; border-color: transparent; box-shadow: 0 3px 12px rgba(124,58,237,.3); }
.filter-chip[aria-pressed="true"] { background: linear-gradient(135deg,var(--rosa),var(--morado)); color: #fff; border-color: transparent; }

.filter-sort { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.sort-select {
  padding: 8px 14px; border-radius: 50px;
  border: 1.5px solid rgba(124,58,237,.25);
  font-size: .8rem; font-weight: 600; color: var(--morado);
  background: #fff; cursor: pointer; outline: none;
  font-family: var(--font-body); transition: border .2s;
}
.sort-select:focus { border-color: var(--morado); }

/* Región destacada */
.region-featured  { margin-bottom: 80px; }
.region-header    { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; padding-bottom: 18px; border-bottom: 2px solid rgba(124,58,237,.2); flex-wrap: wrap; }
.region-flag      { font-size: 2.4rem; }
.region-label     { font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--rosa); margin-bottom: 4px; }
.region-name      { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--gris-texto); }
.region-name em   { color: var(--rosa); font-style: italic; }
.region-desc-text { font-size: .92rem; color: #4a3570; max-width: 600px; line-height: 1.6; margin-left: auto; align-self: flex-end; }

/* Hero card grid */
.exp-hero-grid    { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; margin-bottom: 24px; }
.exp-card-hero    {
  background: #fff; border-radius: 28px; overflow: hidden;
  box-shadow: 0 8px 40px var(--sombra);
  transition: transform .3s, box-shadow .3s; cursor: pointer; position: relative;
}
.exp-card-hero:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(124,58,237,.22); }
.exp-hero-img     { height: 320px; overflow: hidden; position: relative; }
.exp-hero-badge   { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,16,64,.65) 0%, transparent 60%); }
.exp-hero-body    { padding: 26px 28px 30px; }
.exp-hero-body .exp-artesana { font-size: .8rem; }
.exp-hero-body .exp-name     { font-size: 1.4rem; margin-bottom: 12px; color: var(--gris-texto); }
.exp-hero-body .exp-desc     { margin-bottom: 20px; }
.exp-hero-footer  { display: flex; justify-content: flex-end; padding-top: 16px; border-top: 1px solid rgba(124,58,237,.12); }

.exp-side-grid    { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.exp-region-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Región secundaria */
.region-block        { margin-bottom: 70px; }
.region-block-header { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid rgba(124,58,237,.15); }
.region-block-icon   { font-size: 1.8rem; }
.region-block-title  { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--gris-texto); }
.region-block-title em { color: var(--rosa); font-style: italic; }
.region-block-sub    { font-size: .85rem; color: var(--morado-mid); margin-left: auto; }

/* Tarjeta de experiencia */
.exp-card {
  background: #fff; border-radius: 24px; overflow: hidden;
  box-shadow: 0 4px 24px var(--sombra);
  transition: transform .3s, box-shadow .3s; cursor: pointer;
}
.exp-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(124,58,237,.18); }
.exp-img-wrap   { position: relative; height: 200px; overflow: hidden; }
.exp-emoji-cover {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f3eaff 0%, #e8f0ff 100%);
  font-size: 3rem; transition: transform .4s;
}
.exp-card:hover .exp-emoji-cover,
.exp-card-hero:hover .exp-emoji-cover { transform: scale(1.08); }
.exp-hero-img .exp-emoji-cover { font-size: 4.5rem; }

.exp-tag {
  position: absolute; top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--rosa), var(--morado)); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}
.exp-body       { padding: 22px 24px 26px; }
.exp-artesana   { font-size: .78rem; font-weight: 600; color: var(--azul); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 6px; }
.exp-name       { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gris-texto); line-height: 1.3; margin-bottom: 10px; }
.exp-desc       { font-size: .88rem; color: #4a3570; line-height: 1.6; margin-bottom: 16px; }
.exp-footer     { display: flex; align-items: center; justify-content: flex-end; padding-top: 16px; border-top: 1px solid rgba(124,58,237,.12); }
.exp-btn {
  background: linear-gradient(135deg, var(--morado-dark) 0%, var(--morado) 50%, var(--azul) 100%);
  color: #f3eaff; border: none; border-radius: 50px;
  padding: 9px 20px; font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: all .25s;
  font-family: var(--font-body);
}
.exp-btn:hover { background: linear-gradient(135deg, var(--rosa), var(--morado)); transform: scale(1.05); }


/* ══════════════════════════════════════════
   ABOUT — AIDA: DESEO (prueba social)
══════════════════════════════════════════ */
.about-section { padding: 80px 0; }
.about-banner {
  margin: 0 5%; border-radius: 32px;
  padding: 70px 60px;
  background: linear-gradient(135deg, #1e1040 0%, var(--morado-dark) 50%, #1a2080 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.about-banner::before {
  content: '🌺';
  position: absolute; right: 40px; top: 30px;
  font-size: 8rem; opacity: .08; pointer-events: none;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900; color: #f3eaff; line-height: 1.2; margin-bottom: 20px;
}
.about-text h2 em { color: var(--rosa-light); font-style: italic; }
.about-text p  { font-size: 1rem; color: var(--rosa-light); line-height: 1.8; margin-bottom: 14px; }
.about-list    { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: #f3eaff; }
.about-list li::before { content: '✦'; color: var(--rosa-light); font-size: 1rem; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.astat {
  background: rgba(255,255,255,.07); border-radius: 16px;
  padding: 24px 20px; text-align: center;
  border: 1px solid rgba(168,85,247,.3);
  transition: background .3s;
}
.astat:hover { background: rgba(168,85,247,.2); }
.astat-num   { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--rosa-light); }
.astat-label { font-size: .82rem; color: rgba(255,255,255,.65); margin-top: 6px; line-height: 1.4; }


/* ══════════════════════════════════════════
   SOCIAL CTA — AIDA: ACCIÓN
══════════════════════════════════════════ */
.social-cta {
  padding: 80px 5%; text-align: center;
  background: linear-gradient(135deg, var(--rosa-pale) 0%, var(--azul-pale) 100%);
}
.social-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900; color: var(--gris-texto); margin-bottom: 16px;
}
.social-cta p { font-size: 1.05rem; color: #4a3570; max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }

.social-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.social-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .3s; box-shadow: 0 4px 20px rgba(0,0,0,.12);
  font-family: var(--font-body);
}
.social-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,0,0,.2); }
.social-icon { width: 22px; height: 22px; flex-shrink: 0; }

.btn-tiktok     { background: linear-gradient(135deg, #010101 0%, #1a1a2e 100%); color: #fff; }
.btn-instagram  { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
.btn-whatsapp   { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: #fff; }


/* ══════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════ */
.newsletter {
  padding: 80px 5%; text-align: center;
  background: linear-gradient(135deg, var(--morado-dark), var(--azul));
}
.newsletter h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: #f3eaff; margin-bottom: 12px; }
.newsletter p  { font-size: 1rem; color: rgba(245,237,216,.8); margin-bottom: 32px; }
.newsletter-form { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.newsletter-input {
  padding: 14px 24px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1); color: #f3eaff;
  font-size: .95rem; width: 320px; max-width: 100%;
  outline: none; transition: border .25s;
  font-family: var(--font-body);
}
.newsletter-input::placeholder { color: rgba(245,237,216,.5); }
.newsletter-input:focus { border-color: var(--morado-mid); }
.newsletter-btn {
  background: var(--morado-mid); color: var(--gris-texto);
  border: none; border-radius: 50px;
  padding: 14px 32px; font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: all .25s;
  font-family: var(--font-body);
}
.newsletter-btn:hover { background: #fff; color: var(--morado); transform: scale(1.04); }


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: #0f0826; padding: 50px 5% 30px; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(245,237,216,.12);
  margin-bottom: 30px;
}
.footer-logo .logo { font-size: 1.5rem; }
.footer-brand p  { font-size: .88rem; color: rgba(255,255,255,.5); margin: 14px 0 24px; line-height: 1.7; max-width: 300px; }

.footer-social { display: flex; gap: 12px; }
.f-social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  background: rgba(255,255,255,.08); transition: all .25s;
  color: rgba(255,255,255,.7);
}
.f-social-btn:hover { background: var(--rosa); color: #fff; transform: scale(1.1); }
.f-social-btn svg  { display: block; }

.footer-col h4 {
  font-size: .85rem; font-weight: 700; color: #fff;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul   { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .88rem; color: rgba(255,255,255,.45);
  text-decoration: none; transition: color .25s;
}
.footer-col ul a:hover { color: var(--rosa-light); }

/* Tributo 8M */
.footer-8m {
  border-top: 1px solid rgba(232,85,154,.2);
  padding: 28px 5% 0; margin-top: 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; text-align: center;
}
.footer-8m-icon { font-size: 1.4rem; }
.footer-8m-text { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.footer-8m-text strong { color: var(--rosa-light); font-weight: 700; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; margin-top: 28px;
}
.footer-legal  { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-love   { font-size: .85rem; color: rgba(255,255,255,.45); text-align: center; line-height: 1.6; }
.footer-love strong { color: var(--rosa-light); }
.footer-love span   { font-size: .78rem; opacity: .7; }


/* ══════════════════════════════════════════
   FLOAT BUTTON WhatsApp — ACCIÓN persistente
══════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  transition: transform .25s, box-shadow .25s;
  animation: pulseDot 2.5s ease-in-out infinite;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37,211,102,.65);
  animation: none;
}


/* ══════════════════════════════════════════
   RESPONSIVE — tablet
══════════════════════════════════════════ */
@media (max-width: 1000px) {
  .csb-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Hero */
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
  .hero-sub     { margin: 20px auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-visual  { margin-top: 40px; }

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

  /* Tendencias */
  .trends-grid { grid-template-columns: 1fr 1fr; }

  /* Historia */
  .historia-intro   { grid-template-columns: 1fr; gap: 40px; }
  .colombia-strip   { grid-template-columns: 1fr 1fr; }

  /* Experiencias */
  .exp-hero-grid    { grid-template-columns: 1fr; }
  .exp-side-grid    { grid-template-rows: unset; grid-template-columns: 1fr 1fr; }
  .exp-region-grid  { grid-template-columns: 1fr 1fr; }
  .region-header    { flex-wrap: wrap; }
  .region-desc-text { margin-left: 0; }

  /* About */
  .about-banner { grid-template-columns: 1fr; padding: 50px 36px; }

  /* Footer */
  .footer-top   { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom{ flex-direction: column; text-align: center; }

  /* CTA Banner formulario */
  .csb-cta-banner { flex-direction: column; padding: 36px 28px; gap: 32px; }
  .csb-cta-banner::before { display: none; }
  .csb-cta-actions { min-width: unset; width: 100%; }
}

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

/* ── Hamburguesa — oculta en escritorio ── */
.nav-hamburger { display: none; }

/* ── Overlay oscuro ── */
.nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 98;
  background: rgba(10,4,28,.55);
  backdrop-filter: blur(2px);
  animation: fadeIn .25s ease;
}
.nav-overlay.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (max-width: 600px) {
  /* Nav */
  nav { padding: 14px 4%; }

  /* Ocultar CTA de escritorio en móvil */
  .nav-cta--desktop { display: none; }

  /* ── Menú lateral deslizante ── */
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(80vw, 300px);
    height: 100dvh;          /* dvh = incluye barra de navegador móvil */
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 80px 0 32px;
    z-index: 99;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(124,58,237,.18);
    list-style: none;
    /* Sigue siendo display:flex para que funcione el transform */
    display: flex;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    display: block;
    padding: 16px 28px;
    font-size: 1rem; font-weight: 600;
    border-bottom: 1px solid rgba(124,58,237,.08);
    transition: background .2s, color .2s;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: var(--rosa-pale);
    color: var(--morado);
  }

  /* CTA dentro del menú móvil */
  .nav-links::after {
    content: 'Contáctenos ✦';
    display: block;
    margin: 24px 20px 0;
    text-align: center;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--rosa), var(--morado));
    color: #fff; border-radius: 50px;
    font-size: .95rem; font-weight: 700;
    cursor: pointer;
    /* El scroll lo maneja el JS via click en el enlace de Contáctenos */
  }

  /* ── Botón hamburguesa ── */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px; height: 42px;
    background: transparent;
    border: 1.5px solid rgba(124,58,237,.25);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: background .2s, border-color .2s;
    z-index: 101;        /* sobre el menú */
    position: relative;
  }
  .nav-hamburger:hover {
    background: var(--rosa-pale);
    border-color: var(--rosa);
  }

  /* Las tres barras */
  .ham-bar {
    display: block;
    width: 20px; height: 2px;
    background: var(--gris-texto);
    border-radius: 2px;
    transform-origin: center;
    transition: transform .28s ease, opacity .2s ease, background .2s;
  }

  /* Animación a X cuando está abierto */
  .nav-hamburger.open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--rosa); }
  .nav-hamburger.open .ham-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--rosa); }

  /* Grids */
  .trends-grid, .exp-region-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-emoji-cards { max-width: 320px; }
  .exp-side-grid { grid-template-columns: 1fr; }
  .region-block-sub { display: none; }
  .colombia-strip { grid-template-columns: 1fr; }
  .historia-facts { grid-template-columns: 1fr 1fr; }

  /* Filter */
  .filter-bar  { padding: 14px; }
  .filter-sort { margin-left: 0; width: 100%; }
  .sort-select { width: 100%; }

  /* Float */
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}


/* ══════════════════════════════════════════
   CONTÁCTENOS — v5
   Sección nueva: formulario de contacto
   con envío a WhatsApp
══════════════════════════════════════════ */
.contactenos {
  padding: var(--section-pad);
  background: linear-gradient(160deg, #0f0826 0%, #1e1040 40%, #0d1a3a 100%);
  position: relative; overflow: hidden;
}

/* Destellos decorativos */
.ct-sparkle {
  position: absolute; pointer-events: none;
  font-size: 1.4rem; opacity: .3;
  animation: floatSpark 4s ease-in-out infinite;
}
.ct-sparkle:nth-child(1) { top:  8%; left:  5%; animation-delay: 0s; }
.ct-sparkle:nth-child(2) { top: 15%; right: 8%; animation-delay: 1.2s; }
.ct-sparkle:nth-child(3) { bottom: 12%; left: 18%; animation-delay: 2.4s; }
.ct-sparkle:nth-child(4) { top: 55%; right:  4%; animation-delay: 0.8s; }

.ct-inner { position: relative; z-index: 2; }

/* ── Encabezado ── */
.ct-header { text-align: center; margin-bottom: 60px; }

.ct-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, rgba(232,85,154,.25), rgba(37,99,235,.2));
  border: 1px solid rgba(232,85,154,.4);
  color: var(--rosa-light); font-size: .82rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 22px; border-radius: 50px;
  margin-bottom: 22px;
}

.ct-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 16px;
}
.ct-title em { color: var(--rosa); font-style: italic; }

.ct-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 560px; margin: 0 auto; line-height: 1.8;
}

/* ── Cuerpo principal: form + info ── */
.ct-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* ── Formulario ── */
.ct-form-wrap {
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  padding: 40px 40px 44px;
}

.ct-form { display: flex; flex-direction: column; gap: 22px; }

.ct-row { display: flex; flex-direction: column; gap: 7px; }

.ct-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.8); letter-spacing: .3px;
}
.ct-label-icon { font-size: 1rem; }
.ct-req { color: var(--rosa-light); font-weight: 800; margin-left: 2px; }
.ct-optional { font-size: .75rem; font-weight: 400; color: rgba(255,255,255,.4); margin-left: 4px; }

/* Inputs base */
.ct-input {
  background: rgba(255,255,255,.09);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 13px 18px;
  font-size: .95rem; color: #fff;
  font-family: var(--font-body);
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%; outline: none;
  -webkit-appearance: none; appearance: none;
}
.ct-input::placeholder { color: rgba(255,255,255,.3); }
.ct-input:focus {
  border-color: var(--rosa-light);
  background: rgba(255,255,255,.13);
  box-shadow: 0 0 0 3px rgba(232,85,154,.18);
}
.ct-input.error { border-color: #ff6b8a; box-shadow: 0 0 0 3px rgba(255,107,138,.15); }

/* Select — flecha personalizada */
select.ct-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F5A8CE' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
select.ct-input option { background: #1e1040; color: #fff; }
select.ct-input optgroup { background: #140832; color: var(--rosa-light); font-style: normal; font-size: .8rem; }

/* Teléfono: indicativo + número */
.ct-phone-wrap {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
}
.ct-prefix { padding-right: 44px; }
.ct-phone-input { border-radius: 14px; }

/* Textarea */
.ct-textarea { resize: vertical; min-height: 110px; }

/* Contador de caracteres */
.ct-chars-wrap {
  display: flex; justify-content: space-between; align-items: center;
}
.ct-hint  { font-size: .72rem; color: rgba(255,255,255,.3); }
.ct-chars { font-size: .72rem; color: var(--rosa-light); font-weight: 600; }

/* Error inline */
.ct-err {
  font-size: .77rem; color: #ff9ab5; font-weight: 500; min-height: 1.1em;
}

/* Botón submit */
.ct-submit-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; border: none; border-radius: 16px;
  padding: 18px 28px; font-size: 1.05rem; font-weight: 700;
  cursor: pointer; transition: all .28s;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  width: 100%; font-family: var(--font-body);
  box-shadow: 0 8px 30px rgba(37,211,102,.3);
  margin-top: 6px;
}
.ct-submit-btn:hover {
  background: linear-gradient(135deg, #1da851, #0e6b5e);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(37,211,102,.45);
}
.ct-submit-btn:disabled {
  opacity: .65; cursor: not-allowed; transform: none;
}

.ct-submit-note {
  font-size: .78rem; color: rgba(255,255,255,.4);
  text-align: center; margin-top: 10px; line-height: 1.5;
}

/* ── Consentimiento de datos ── */
.ct-consent {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(232,85,154,.25);
  border-radius: 12px; padding: 14px 16px;
}
.ct-consent-check {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--rosa); cursor: pointer;
}
.ct-consent-label {
  font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.6; cursor: pointer;
}
.ct-consent-label a {
  color: var(--rosa-light); font-weight: 600; text-decoration: underline;
  text-underline-offset: 2px;
}
.ct-consent-label a:hover { color: #fff; }
.ct-consent.error { border-color: #ff6b8a; background: rgba(255,107,138,.08); }

/* ── Panel de información lateral ── */
.ct-info {
  display: flex; flex-direction: column; gap: 16px;
}

.ct-info-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(232,85,154,.2);
  border-radius: 16px; padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: background .3s;
}
.ct-info-card:hover { background: rgba(232,85,154,.1); }

.ct-info-icon {
  font-size: 1.6rem; flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,85,154,.15); border-radius: 12px;
}
.ct-info-text { display: flex; flex-direction: column; gap: 2px; }
.ct-info-text strong { font-size: .9rem; color: #fff; font-weight: 700; }
.ct-info-text span   { font-size: .82rem; color: rgba(255,255,255,.55); }

/* Accesos rápidos */
.ct-quick { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }

.ct-quick-label {
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px;
}

.ct-quick-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 50px;
  font-size: .88rem; font-weight: 700;
  text-decoration: none; transition: all .25s;
  justify-content: center; font-family: var(--font-body);
}
.ct-wa { background: rgba(37,211,102,.18); color: #25D366; border: 1.5px solid rgba(37,211,102,.4); }
.ct-wa:hover { background: #25D366; color: #fff; }
.ct-ig { background: rgba(232,85,154,.15); color: var(--rosa-light); border: 1.5px solid rgba(232,85,154,.35); }
.ct-ig:hover { background: var(--rosa); color: #fff; }

/* QR WhatsApp */
.ct-qr-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(37,211,102,.3);
  border-radius: 20px;
  padding: 20px;
  display: flex; align-items: center; gap: 18px;
  transition: background .3s, border-color .3s;
}
.ct-qr-card:hover { background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.55); }

.ct-qr-img {
  width: 100px; height: 100px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  /* Borde blanco fino para que el QR destaque sobre fondo oscuro */
  box-shadow: 0 0 0 4px #fff, 0 6px 20px rgba(0,0,0,.4);
}

.ct-qr-text { display: flex; flex-direction: column; gap: 6px; }
.ct-qr-label { font-size: .95rem; font-weight: 700; color: #25D366; }
.ct-qr-sub   { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.5; }

/* Testimonio */
.ct-testimonial {
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--rosa);
  border-radius: 0 14px 14px 0;
  padding: 18px 20px;
  margin-top: 4px;
}
.ct-testimonial p {
  font-size: .88rem; color: rgba(255,255,255,.65);
  line-height: 1.65; font-style: italic; margin-bottom: 10px;
}
.ct-testimonial footer { font-size: .8rem; color: rgba(255,255,255,.45); }
.ct-testimonial footer strong { color: var(--rosa-light); }

/* ── Estado de éxito del formulario ── */
.ct-success {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; text-align: center;
  padding: 50px 30px;
  background: linear-gradient(145deg, rgba(37,211,102,.12), rgba(37,211,102,.06));
  border: 1px solid rgba(37,211,102,.3);
  border-radius: 28px;
}
.ct-success.visible { display: flex; }
.ct-success-icon { font-size: 4rem; }
.ct-success h3 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: #fff;
}
.ct-success p { font-size: .95rem; color: rgba(255,255,255,.65); max-width: 360px; line-height: 1.7; }
.ct-success-back {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50px;
  padding: 10px 24px; font-size: .88rem; font-weight: 600;
  cursor: pointer; font-family: var(--font-body); transition: background .2s; margin-top: 8px;
}
.ct-success-back:hover { background: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════
   RESPONSIVE — Contáctenos
══════════════════════════════════════════ */
@media (max-width: 960px) {
  .ct-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ct-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .ct-quick, .ct-testimonial, .ct-qr-card { grid-column: span 2; }
}

@media (max-width: 600px) {
  .ct-form-wrap { padding: 26px 20px 30px; }
  .ct-phone-wrap { grid-template-columns: 110px 1fr; }
  .ct-info { grid-template-columns: 1fr; }
  .ct-quick, .ct-testimonial { grid-column: auto; }
  .ct-body { gap: 28px; }
}
