/* ======================================================
   TOKENS — Y2K Rosa · Bubblegum + Petal + C2185B
====================================================== */
:root {
  --c-cream:    #FDF5F8;   /* Rosa casi blanco — fondos muy suaves */
  --c-cream-2:  #FFE6EC;   /* Petal Pink — secciones rosadas */
  --c-hero:     #FFFFFF;   /* Hero — blanco elegante */
  --c-rose:     #F8A8BB;   /* Bubblegum — acentos rosas */
  --c-rose-lt:  #FFE6EC;   /* Petal Pink */
  --c-rose-md:  #F8A8BB;   /* Bubblegum */
  --c-rose-bg:  #FFE6EC;   /* fondo de image frames */
  --c-accent:   #B8935A;   /* Dorado cálido — CTA, footer, acentos */
  --c-burg:     #B8935A;   /* alias accent dorado */
  --c-dark:     #2D2D2D;   /* Títulos oscuros — elegante */
  --c-text:     #555555;   /* texto body */
  --c-muted:    #999999;   /* texto secundario */
  --c-white:    #FFFFFF;
  --c-beige:    #C9A87C;   /* Dorado claro — botón CTA suave */
  --c-gold-dk:  #8A6835;   /* Dorado oscuro — hover */

  --font-head: 'Lora', Georgia, serif;
  --font-body: 'Cambria', Georgia, serif;
  --font-script: 'Dancing Script', cursive;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.333rem;
  --text-2xl:  1.777rem;
  --text-3xl:  2.369rem;
  --text-4xl:  3.157rem;

  --sp1:  8px;
  --sp2:  16px;
  --sp3:  24px;
  --sp4:  32px;
  --sp5:  48px;
  --sp6:  64px;
  --sp7:  80px;
  --sp8:  96px;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-pill: 50px;

  --shadow-sm:   0 2px 12px rgba(184,147,90,.10);
  --shadow-md:   0 8px 32px rgba(184,147,90,.18);
  --shadow-rose: 0 12px 40px rgba(248,168,187,.40);

  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1.0);
  --ease-std: cubic-bezier(0.4, 0.0, 0.2, 1.0);
}

/* ======================================================
   RESET & BASE
====================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--c-text);
  background-color: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ======================================================
   TYPOGRAPHY
====================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--c-dark);
  line-height: 1.15;
}
h1, h2 { color: var(--c-accent); }
h1 { font-size: clamp(2rem, 5vw, var(--text-4xl)); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, var(--text-3xl)); font-weight: 700; }
h3 { font-size: var(--text-xl); font-weight: 700; }
h4 { font-size: var(--text-lg); font-weight: 700; }

/* Itálicas en títulos — acento en rosa */
h1 em, h2 em { font-style: italic; color: var(--c-rose); }

.eyebrow { display: none; }

/* ======================================================
   LAYOUT
====================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
}

/* ======================================================
   DECORATIVE ELEMENTS — estilo Femine
====================================================== */
.deco-star {
  position: absolute;
  color: var(--c-rose);
  font-size: 2rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  animation: spin-slow 18s linear infinite;
}
.deco-star.burg  { color: var(--c-burg); }
.deco-star.sm    { font-size: 1rem; }
.deco-star.lg    { font-size: 3.5rem; }

.deco-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-burg);
  pointer-events: none;
}
.deco-dot.rose { background: var(--c-rose-md); }
.deco-dot.sm   { width: 8px; height: 8px; }
.deco-dot.lg   { width: 20px; height: 20px; }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ======================================================
   IMAGE FRAMES — circulares
====================================================== */
.image-frame {
  position: relative;
  background: var(--c-rose-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.frame-emoji {
  font-size: 7rem;
  line-height: 1;
  filter: drop-shadow(0 6px 16px rgba(139,58,98,.12));
  position: relative;
  z-index: 1;
}

.frame-deco {
  position: absolute;
  font-size: 3.5rem;
  opacity: 0.22;
  line-height: 1;
}

.frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ======================================================
   NAVIGATION
====================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--c-cream);
  border-bottom: 1.5px solid var(--c-rose);
  transition: box-shadow 250ms var(--ease-out);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(248,168,187,.18);
}

/* Barra rosa debajo del nav */
.nav-pink-bar {
  background-color: var(--c-hero);
  padding: 8px 0;
}
.nav-pink-bar-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
  display: flex;
  gap: var(--sp2);
  align-items: center;
}
.nav-pink-bar-inner a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  transition: color 150ms, background 150ms;
}
.nav-pink-bar-inner a:hover,
.nav-pink-bar-inner a.nav-active {
  color: var(--c-hero);
  background: var(--c-white);
}

/* Iconos sociales del header */
.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--c-accent);
  border: 1px solid var(--c-beige);
  transition: color 150ms, background 150ms, border-color 150ms;
}
.nav-social-icons a:hover {
  color: var(--c-white);
  background: var(--c-accent);
  border-color: var(--c-accent);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
}

.nav-logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.nav-logo-img {
  height: 90px;
  width: 90px;
  object-fit: contain;
  display: block;
}

.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--c-beige);
  background: var(--c-cream);
  padding: 4px 6px;
  line-height: 1;
  transition: border-color 200ms, box-shadow 200ms;
}
.nav-logo:hover .logo-badge {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 2px var(--c-cream-2);
}
.logo-badge-top {
  font-family: var(--font-script);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--c-beige);
  display: block;
  text-align: center;
}
.logo-badge-main {
  font-family: var(--font-script);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-beige);
  display: block;
  text-align: center;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  gap: var(--sp4);
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-dark);
  position: relative;
  padding-bottom: 4px;
  transition: color 150ms;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-rose);
  transition: width 200ms var(--ease-out);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--c-rose); }

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: transform 250ms var(--ease-std), opacity 150ms;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  padding: var(--sp2) var(--sp3) var(--sp3);
  border-top: 1px solid var(--c-rose-lt);
  background: var(--c-white);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: var(--text-base);
  color: var(--c-text);
  padding: 11px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--c-rose-lt);
  transition: color 150ms;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a[aria-current="page"] { color: var(--c-rose); }

/* ======================================================
   FOOTER
====================================================== */
.site-footer {
  background-color: var(--c-rose-lt);
  padding-block: 14px;
  border-top: none;
}
.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
  text-align: center;
}
.footer-copy {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(45,45,45,.75);
  font-family: var(--font-body);
}

.footer-heart {
  display: inline-block;
  color: var(--c-rose);
  animation: heartbeat 2.6s ease-in-out infinite;
}

/* ======================================================
   BUTTONS — shimmer animado al hover
====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  transition:
    transform 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    background-color 200ms,
    color 200ms;
}

/* Shimmer sweep */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-12deg);
  transition: left 550ms ease;
  pointer-events: none;
}
.btn:hover::before { left: 160%; }
.btn:active { transform: scale(0.97); }

.btn-rose,
.btn-primary,
.btn-dark,
.btn-pink {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
}
.btn-rose:hover,
.btn-primary:hover,
.btn-dark:hover,
.btn-pink:hover {
  background: var(--c-gold-dk);
  border-color: var(--c-gold-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline,
.btn-outline-rose {
  background: transparent;
  color: var(--c-rose);
  border-color: var(--c-rose);
}
.btn-outline:hover,
.btn-outline-rose:hover {
  background: var(--c-rose);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn-dark-outline {
  background: transparent;
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.btn-dark-outline:hover {
  background: var(--c-dark);
  color: var(--c-white);
  transform: translateY(-2px);
}

/* Botones sobre fondo rose (sección social) */
.btn-white {
  background: var(--c-white);
  color: var(--c-rose);
  border: 2px solid var(--c-white);
  border-radius: var(--radius-pill);
  padding: 13px 30px;
  font-size: var(--text-sm);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  transition: transform 200ms, box-shadow 200ms;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn-white-outline {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,.7);
  border-radius: var(--radius-pill);
  padding: 13px 30px;
  font-size: var(--text-sm);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  transition: transform 200ms, background 200ms, border-color 200ms;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--c-white);
  transform: translateY(-2px);
}

/* Botón beige dorado — CTA principal estilo luxury */
.btn-beige {
  background: var(--c-beige);
  color: var(--c-white);
  border-color: var(--c-beige);
}
.btn-beige:hover {
  background: #b49060;
  border-color: #b49060;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,124,.38);
}

/* ======================================================
   HOME — HERO
====================================================== */
.home-hero {
  background-color: var(--c-cream);
  padding-top: var(--sp7);
  padding-bottom: var(--sp7);
  position: relative;
  overflow: hidden;
}

/* Texto ghost enorme — fondo decorativo del hero */
.hero-ghost-text {
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: clamp(5rem, 17vw, 15rem);
  font-weight: 700;
  color: var(--c-rose);
  opacity: 0.07;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
  line-height: 1;
  z-index: 0;
}

/* Peonías decorativas */
.peony-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Mariposas decorativas */
.butterfly-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Tarjeta de confianza flotante */
.hero-trust-card {
  position: absolute;
  top: -44px;
  right: -36px;
  background: var(--c-white);
  border: 1.5px solid var(--c-rose-lt);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(194,24,91,.12);
  min-width: 190px;
  z-index: 3;
  animation: pulse-glow 3s ease-in-out infinite;
}
.trust-card-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: var(--c-cream-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.trust-card-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-dark);
  font-family: var(--font-body);
  line-height: 1.2;
}
.trust-card-text span {
  font-size: var(--text-xs);
  color: var(--c-muted);
  font-family: var(--font-body);
}

/* Badge sobre tarjetas */
.card-badge {
  position: absolute;
  top: -14px;
  right: 14px;
  background: var(--c-rose);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.home-hero-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
  display: flex;
  align-items: center;
  gap: var(--sp6);
}

.hero-text { flex: 1; min-width: 0; }

.hero-text h1 { margin-bottom: var(--sp3); line-height: 1.1; }

.hero-text h1 em { font-style: italic; color: var(--c-rose); }

.hero-text .hero-lead {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: var(--sp4);
}

.hero-btn-group {
  display: flex;
  gap: var(--sp2);
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual { flex-shrink: 0; position: relative; }

/* Animación de flotar — efecto principal */
.hero-frame {
  width: 360px;
  height: 360px;
  animation: float 6s ease-in-out infinite;
}

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

/* Dots decorativos lado derecho */
.hero-dots {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: var(--sp1);
}

.hero-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

/* ======================================================
   HOME — ABOUT
====================================================== */
.home-about {
  background-color: var(--c-white);
  padding-block: var(--sp7);
}

.home-about-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
  display: flex;
  align-items: center;
  gap: var(--sp6);
}

.about-frame-wrap { position: relative; flex-shrink: 0; }

.about-frame { width: 360px; height: 360px; }

.about-content { flex: 1; }
.about-content h2 { margin-bottom: var(--sp2); }
.about-content > p {
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: var(--sp4);
}

/* Stats row — al estilo Femine */
.stats-row {
  display: flex;
  gap: var(--sp2);
  flex-wrap: wrap;
}

.stat-box {
  flex: 1;
  min-width: 90px;
  background: var(--c-white);
  border: 1.5px solid var(--c-rose-lt);
  border-radius: var(--radius-md);
  padding: var(--sp3) var(--sp2);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms, box-shadow 200ms;
}
.stat-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.stat-box.highlight {
  background: var(--c-rose);
  border-color: var(--c-rose);
}

.stat-box .stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1;
  color: var(--c-burg);
}
.stat-box.highlight .stat-number { color: var(--c-white); }

.stat-box .stat-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  display: block;
  margin-top: 6px;
}
.stat-box.highlight .stat-label { color: rgba(255,255,255,.8); }

/* ======================================================
   HOME — FEATURES
====================================================== */
.home-features { background-color: var(--c-white); padding-block: var(--sp7); }

.section-header {
  text-align: center;
  margin-bottom: var(--sp5);
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
}
.section-header h2 { margin-bottom: 6px; }
.section-header p { color: var(--c-muted); font-weight: 300; font-size: var(--text-lg); }

.section-cta {
  text-align: center;
  margin-top: var(--sp5);
  padding-inline: var(--sp3);
}

.features-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp3);
}

.feature-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp4) var(--sp3);
  text-align: left;
  border: 1.5px solid var(--c-rose-lt);
  box-shadow: none;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card.highlighted { background: var(--c-cream-2); border-color: var(--c-rose-md); }

/* Números grandes — estilo 01, 02, 03 del diseño de referencia */
.feature-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--c-rose);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
  transition: opacity 200ms;
}
.feature-card:hover .feature-num { opacity: 0.65; }

.feature-icon {
  width: 38px;
  height: 38px;
  color: var(--c-rose);
  margin: 0 0 var(--sp2);
  display: block;
}
.feature-card.highlighted .feature-icon { color: var(--c-accent); }

.feature-card h3 { font-size: var(--text-lg); margin-bottom: var(--sp1); color: var(--c-dark); }
.feature-card.highlighted h3 { color: var(--c-dark); }

.feature-card p {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.65;
  margin-bottom: var(--sp2);
}
.feature-card.highlighted p { color: var(--c-text); }

.feature-link {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 150ms, opacity 150ms;
}
.feature-card.highlighted .feature-link { color: var(--c-accent); }
.feature-link:hover { gap: 8px; opacity: .85; }

/* ======================================================
   HOME — SEMANAS DESTACADAS
====================================================== */
.home-destacadas {
  background: linear-gradient(160deg, #FFE6EC 0%, #FFF5F8 60%, #FFE6EC 100%);
  padding-block: var(--sp7);
  overflow: hidden;
  position: relative;
}
.home-destacadas::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 75% 50%, rgba(248,168,187,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Layout principal de dos columnas */
.destacadas-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp6);
  align-items: center;
}

.destacadas-subtitle {
  color: var(--c-muted);
  font-size: var(--text-base);
  font-weight: 300;
  margin-top: var(--sp1);
  margin-bottom: var(--sp4);
}

/* Grid de tarjetas — 2 columnas */
.destacadas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp3);
}

/* Tarjeta rediseñada */
.destacada-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp3);
  display: flex;
  align-items: flex-start;
  gap: var(--sp3);
  box-shadow: 0 4px 20px rgba(184,147,90,.10);
  border: 1.5px solid transparent;
  transition: transform 250ms var(--ease-out),
              box-shadow 250ms var(--ease-out),
              border-color 250ms var(--ease-out);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.destacada-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248,168,187,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 250ms;
  pointer-events: none;
}
.destacada-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(184,147,90,.20);
  border-color: var(--c-rose-lt);
}
.destacada-card:hover::after { opacity: 1; }

/* Semana número — círculo */
.destacada-week {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--c-cream-2);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  transition: background 250ms;
}
.destacada-card:hover .destacada-week { background: var(--c-rose-md); }
.destacada-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  transition: color 250ms;
}
.destacada-card:hover .destacada-num { color: var(--c-white); }
.destacada-week-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 700;
  transition: color 250ms;
}
.destacada-card:hover .destacada-week-label { color: rgba(255,255,255,.8); }

/* Cuerpo de la tarjeta */
.destacada-body { flex: 1; min-width: 0; }

.destacada-icon {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
  transition: transform 250ms var(--ease-out);
}
.destacada-card:hover .destacada-icon { transform: scale(1.25); }

.destacada-title {
  font-family: var(--font-head);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 4px;
  line-height: 1.25;
}

.destacada-desc {
  font-size: var(--text-xs);
  color: var(--c-muted);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: var(--sp1);
}

/* Barra de progreso del embarazo */
.destacada-bar {
  height: 3px;
  background: var(--c-cream-2);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: var(--sp1);
}
.destacada-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--c-rose) 0%, var(--c-accent) 100%);
  border-radius: 99px;
  transition: width 600ms var(--ease-out);
}
.destacada-card:hover .destacada-bar-fill { width: var(--pct); }

.destacada-link {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--c-accent);
  transition: opacity 150ms, letter-spacing 200ms;
  display: inline-block;
}
.destacada-link:hover { opacity: .75; letter-spacing: 0.02em; }

/* ─── Columna derecha: imagen ─── */
.destacadas-right { position: relative; }

.destacadas-img-wrap {
  position: relative;
  width: 360px;
  height: 360px;
  animation: float 7s ease-in-out infinite;
}

.destacadas-img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(184,147,90,.22), 0 4px 16px rgba(248,168,187,.30);
  display: block;
}

/* Responsive */
@media (max-width: 1050px) {
  .destacadas-inner { grid-template-columns: 1fr; }
  .destacadas-right { display: flex; justify-content: center; }
  .destacadas-img-wrap { width: 280px; height: 280px; }
  .destacadas-img { width: 280px; height: 280px; }
}
@media (max-width: 700px) {
  .destacadas-grid { grid-template-columns: 1fr; }
  .destacadas-right { display: none; }
}


/* ======================================================
   HOME — CALCULATOR
====================================================== */
.home-calculator { background-color: var(--c-white); padding-block: var(--sp7); }

.calculator-inner {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: var(--sp3);
}

.calc-header { text-align: center; margin-bottom: var(--sp5); }
.calc-header h2 { margin-bottom: 6px; }
.calc-header p  { color: var(--c-muted); font-weight: 300; font-size: var(--text-lg); }

.calc-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-rose-lt);
  border-radius: var(--radius-xl);
  padding: var(--sp5);
  box-shadow: var(--shadow-sm);
}

.calc-toggle-row {
  display: flex;
  gap: var(--sp2);
  margin-bottom: var(--sp4);
  flex-wrap: wrap;
}
.calc-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--c-rose-lt);
  cursor: pointer;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--c-muted);
  background: var(--c-cream);
  transition: border-color 150ms, color 150ms, background 150ms;
  user-select: none;
}
.calc-toggle-btn input[type="radio"] { display: none; }
.calc-toggle-btn.active {
  border-color: var(--c-rose);
  color: var(--c-dark);
  background: var(--c-cream-2);
}

.calc-field   { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--sp3); }
.calc-label   { font-size: var(--text-sm); font-weight: 700; color: var(--c-dark); font-family: var(--font-body); }
.calc-optional { font-weight: 300; color: var(--c-muted); }
.calc-input {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--c-rose-lt);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--c-text);
  background: var(--c-white);
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  min-height: 48px;
}
.calc-input:focus {
  border-color: var(--c-rose);
  box-shadow: 0 0 0 3px rgba(248,168,187,.15);
}
.calc-input.invalid { border-color: var(--c-burg); animation: shake 300ms; }

.calc-email-success {
  display: none;
  text-align: center;
  margin-top: var(--sp2);
  padding: 10px var(--sp2);
  background: var(--c-cream-2);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-accent);
  font-family: var(--font-body);
}
.calc-email-success.visible { display: block; animation: fadeUp 400ms var(--ease-out); }

.calc-result {
  display: none;
  margin-top: var(--sp4);
  border: 1.5px solid var(--c-rose-lt);
  border-radius: var(--radius-xl);
  background: var(--c-cream);
  padding: var(--sp5);
}
.calc-result.visible { display: block; animation: fadeUp 500ms var(--ease-out); }

.calc-result-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp4);
  align-items: center;
}

.calc-week-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  min-width: 100px;
}
.calc-week-num {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  display: block;
}
.calc-week-label {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
}

.calc-trimester-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp2);
}
.calc-trimester-badge.trim-1 { background: var(--c-rose-lt); color: var(--c-text); }
.calc-trimester-badge.trim-2 { background: var(--c-rose); color: var(--c-white); }
.calc-trimester-badge.trim-3 { background: var(--c-accent); color: var(--c-white); }

.calc-message { font-size: var(--text-base); font-weight: 300; color: var(--c-text); line-height: 1.65; }

.calc-fruit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp1);
  text-align: center;
  min-width: 110px;
}
.calc-fruit-emoji { font-size: 3.5rem; line-height: 1; display: block; }
.calc-fruit-emoji.bounce { animation: fruit-bounce 650ms cubic-bezier(0.36, 0.07, 0.19, 0.97); }

@keyframes fruit-bounce {
  0%, 100% { transform: scale(1) translateY(0); }
  20%       { transform: scale(1.28) translateY(-10px); }
  40%       { transform: scale(0.9)  translateY(3px); }
  60%       { transform: scale(1.1)  translateY(-5px); }
  80%       { transform: scale(0.97) translateY(0); }
}

.calc-fruit-text { font-size: var(--text-sm); font-weight: 300; color: var(--c-muted); line-height: 1.5; }
.calc-fruit-text strong { color: var(--c-accent); font-weight: 700; display: block; margin-top: 2px; }

/* Suscripción debajo del resultado */
.calc-subscribe {
  margin-top: var(--sp4);
  background: var(--c-cream);
  border: 1.5px solid var(--c-rose-lt);
  border-radius: var(--radius-xl);
  padding: var(--sp4) var(--sp5);
  display: flex;
  align-items: center;
  gap: var(--sp3);
  flex-wrap: wrap;
}
.calc-subscribe-label {
  font-family: var(--font-head);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}
.calc-subscribe-row {
  display: flex;
  gap: var(--sp2);
  flex: 1;
  min-width: 260px;
}
.calc-subscribe-email { flex: 1; }
@media (max-width: 767px) {
  .calc-subscribe { flex-direction: column; align-items: stretch; }
  .calc-subscribe-row { flex-direction: column; }
}

/* ======================================================
   HOME — SOCIAL CTA
====================================================== */
.home-social {
  background-color: var(--c-rose);
  padding-block: var(--sp7);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-social::before,
.home-social::after {
  content: '✦';
  position: absolute;
  color: rgba(255,255,255,.10);
  font-size: 9rem;
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-head);
}
.home-social::before { top: -20px; left: -10px; }
.home-social::after  { bottom: -20px; right: -10px; }

.home-social-inner {
  max-width: 580px;
  margin-inline: auto;
  padding-inline: var(--sp3);
  position: relative;
  z-index: 1;
}
.home-social h2 { color: var(--c-white); margin-bottom: var(--sp2); }
.home-social p {
  color: rgba(255,255,255,.85);
  font-weight: 300;
  font-size: var(--text-lg);
  line-height: 1.75;
  margin-bottom: var(--sp4);
}

.social-btn-group {
  display: flex;
  gap: var(--sp2);
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================================
   PAGE HERO (páginas interiores)
====================================================== */
.page-hero {
  background-color: var(--c-cream-2);
  padding-top: var(--sp7);
  padding-bottom: var(--sp6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 680px;
  margin-inline: auto;
  padding-inline: var(--sp3);
  position: relative;
  z-index: 1;
}
.page-hero h1 { margin-bottom: var(--sp2); }
.page-hero p {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.8;
}

/* ======================================================
   SEMANAS — WEEK GRID
====================================================== */
.weeks-section { background-color: var(--c-cream); padding-block: var(--sp6); }

.weeks-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp2);
}

/* ======================================================
   WEEK CARDS
====================================================== */
.week-card {
  background: var(--c-white);
  border: 1px solid var(--c-rose-lt);
  border-radius: var(--radius-lg);
  padding: var(--sp4) var(--sp3);
  text-align: center;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

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

.week-card .wk-num {
  font-family: var(--font-head);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--c-rose);
  line-height: 1;
}

.week-card .wk-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
}

.week-card .wk-emoji { font-size: 2.8rem; line-height: 1.2; }

.week-card .wk-fruit {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-burg);
}

.week-card .wk-hito {
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--c-muted);
  line-height: 1.5;
  margin-top: 4px;
}

.week-card .wk-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--sp1);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-rose);
  transition: gap 150ms, opacity 150ms;
}
.week-card:hover .wk-cta { gap: 8px; }

.week-card.compact { padding: var(--sp2); gap: 4px; }
.week-card.compact .wk-num   { font-size: var(--text-xl); }
.week-card.compact .wk-emoji { font-size: 2rem; }

.featured-grid {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp3);
}

/* ======================================================
   CONSEJOS — TRIMESTER BLOCKS
====================================================== */
.trimester-block { padding-block: var(--sp7); }
.trimester-block.bg-white { background-color: var(--c-cream); }
.trimester-block.bg-blush { background-color: var(--c-cream-2); }
.trimester-block.bg-peach { background-color: var(--c-white); }

.trimester-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp3);
}

.trimester-header { margin-bottom: var(--sp5); }
.trimester-header h2 { margin-bottom: 4px; }
.trimester-range { font-size: var(--text-lg); font-weight: 400; color: var(--c-text); }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp3);
}

/* ======================================================
   TIP CARDS
====================================================== */
.tip-card {
  background: var(--c-white);
  border: 1px solid var(--c-rose-lt);
  border-radius: var(--radius-lg);
  padding: var(--sp4);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.tip-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-rose); }

.tip-icon { width: 42px; height: 42px; color: var(--c-rose); margin-bottom: var(--sp2); }

.tip-card h3 { font-size: var(--text-lg); margin-bottom: var(--sp1); color: var(--c-dark); }

.tip-card p { font-size: var(--text-sm); font-weight: 300; color: var(--c-muted); line-height: 1.7; }

/* ======================================================
   CONTACTO
====================================================== */
.contact-section {
  background: linear-gradient(180deg, #FFF5F8 0%, var(--c-cream) 60%);
  padding-block: var(--sp7);
}

.contact-form {
  background: linear-gradient(145deg, #ffffff 0%, #FFF0F6 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp4);
  border: 1.5px solid var(--c-rose-lt);
  box-shadow: 0 6px 32px rgba(248,168,187,.12);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-rose);
  box-shadow: 0 0 0 4px rgba(248,168,187,.18);
  background: #FFF8FB;
  transition: border-color 150ms, box-shadow 200ms, background 200ms;
}

.contact-inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: var(--sp3);
}

.contact-inner .contact-heading { text-align: center; margin-bottom: var(--sp5); }

.contact-form { display: flex; flex-direction: column; gap: var(--sp3); }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label { font-size: var(--text-sm); font-weight: 700; color: var(--c-dark); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--c-rose-lt);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--c-text);
  background: var(--c-white);
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
  min-height: 48px;
}
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.65; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-rose);
  box-shadow: 0 0 0 3px rgba(201,114,154,.12);
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: var(--c-burg);
  animation: shake 300ms;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-4px); }
  75%       { transform: translateX(4px); }
}

.form-submit .btn { width: 100%; }

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp5) var(--sp4);
  background: var(--c-cream-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-rose-lt);
}
.form-success.visible { display: block; animation: fadeUp 400ms var(--ease-out); }
.form-success .success-emoji { font-size: 3.5rem; margin-bottom: var(--sp2); }
.form-success h3 { margin-bottom: var(--sp1); }
.form-success p  { color: var(--c-muted); font-weight: 300; }

.contact-social {
  margin-top: var(--sp6);
  padding-top: var(--sp5);
  border-top: 1px solid var(--c-rose-lt);
  text-align: center;
}
.contact-social h3 {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  font-weight: 700;
  font-style: italic;
  color: var(--c-dark);
  margin-bottom: var(--sp4);
}
.contact-social-buttons { display: flex; gap: var(--sp2); justify-content: center; flex-wrap: wrap; margin-bottom: var(--sp3); }
.contact-closing { font-size: var(--text-sm); font-weight: 300; color: var(--c-muted); }

/* Grid de iconos sociales grandes */
.contact-social-grid {
  display: flex;
  gap: var(--sp5);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp3);
}

.social-icon-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--c-accent);
  transition: transform 220ms var(--ease-out), color 220ms;
}
.social-icon-big:hover {
  transform: translateY(-5px) scale(1.1);
  color: var(--c-rose);
}
.social-icon-big span {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Hero de contacto — gradiente con blob nube central y decoraciones laterales */
.contact-hero {
  padding-top: var(--sp5);
  padding-bottom: calc(var(--sp4) + 70px);
  background: #FFCDD2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero .page-hero-inner {
  position: relative;
  z-index: 2;
}
.contact-hero-title {
  color: var(--c-rose);
  margin-bottom: 4px;
  font-size: clamp(1.2rem, 3.5vw, var(--text-2xl));
}.contact-hero-title {
  color: var(--c-rose);
  margin-bottom: 4px;
  font-size: clamp(1.2rem, 3.5vw, var(--text-2xl));
}

/* Nubes que salen de los costados */
.contact-cloud {
  position: absolute;
  pointer-events: none;
  fill: rgba(255,255,255,0.78);
  z-index: 1;
}
.contact-cloud-l { left: -80px;  top: 50%; transform: translateY(-50%); width: 340px; }
.contact-cloud-r { right: -80px; top: 50%; transform: translateY(-50%); width: 320px; }

/* Mariposas decorativas — posicionadas en las esquinas del formulario */
.contact-butterfly {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

/* Pill rosado detrás del título — mismo rosa que semanas/consejos */
.contact-title-pill {
  display: inline-block;
  background: var(--c-cream-2);
  border-radius: var(--radius-xl);
  padding: 14px 52px 18px;
  margin-bottom: var(--sp2);
  box-shadow: 0 4px 18px rgba(248,168,187,0.22);
}



/* ======================================================
   REVEAL ANIMATIONS
====================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 500ms var(--ease-out),
    transform 500ms var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }
.delay-5 { transition-delay: 400ms; }
.delay-6 { transition-delay: 480ms; }

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

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 767px) {
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }

  .home-hero { padding-top: var(--sp6); padding-bottom: var(--sp5); }
  .home-hero-inner { flex-direction: column; gap: var(--sp5); }
  .hero-frame { width: 280px; height: 280px; order: -1; }
  .hero-btn-group { flex-direction: column; align-items: flex-start; }
  .hero-btn-group .btn { width: 100%; justify-content: center; }
  .hero-dots { display: none; }

  .home-about-inner { flex-direction: column; gap: var(--sp5); }
  .about-frame { width: 260px; height: 260px; margin-inline: auto; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp2); }
  .weeks-grid    { grid-template-columns: repeat(2, 1fr); }
  .tips-grid     { grid-template-columns: 1fr; }

  .calc-fields-row     { grid-template-columns: 1fr; }
  .calc-result-grid    { grid-template-columns: 1fr; text-align: center; gap: var(--sp3); }
  .calc-fruit-text     { max-width: none; }

  .social-btn-group       { flex-direction: column; align-items: center; }
  .contact-social-buttons { flex-direction: column; align-items: center; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .weeks-grid    { grid-template-columns: repeat(3, 1fr); }
  .tips-grid     { grid-template-columns: repeat(2, 1fr); }
  .home-about-inner { flex-direction: column; gap: var(--sp5); }
  .about-frame   { margin-inline: auto; }
  .calc-toggle-row { flex-direction: column; }
}

.home-about,
.home-destacadas,
.home-calculator { position: relative; }

/* ======================================================
   CLOUD DIVIDERS — separadores suaves tipo nube
====================================================== */

/* Espacio extra para alojar la nube al fondo de cada sección */
.home-hero,
.home-about,
.home-destacadas,
.home-calculator { padding-bottom: calc(var(--sp7) + 70px); }

.home-hero::after,
.home-about::after,
.home-destacadas::after,
.home-calculator::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 80px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 100%;
}

/* Hero (#FDF5F8) → About (blanco) */
.home-hero::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'><path d='M0,80 L0,54 Q72,22 144,54 Q216,78 288,54 Q360,22 432,54 Q504,78 576,54 Q648,22 720,54 Q792,78 864,54 Q936,22 1008,54 Q1080,78 1152,54 Q1224,22 1296,54 Q1368,78 1440,54 L1440,80 Z' fill='%23FFFFFF'/></svg>");
}

/* About (blanco) → Destacadas (#FFE6EC) */
.home-about::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'><path d='M0,80 L0,58 Q72,78 144,58 Q216,26 288,58 Q360,78 432,58 Q504,26 576,58 Q648,78 720,58 Q792,26 864,58 Q936,78 1008,58 Q1080,26 1152,58 Q1224,78 1296,58 Q1368,26 1440,58 L1440,80 Z' fill='%23FFE6EC'/></svg>");
}

/* Destacadas (#FFE6EC) → Expertise (blanco) */
.home-destacadas::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'><path d='M0,80 L0,58 Q72,78 144,58 Q216,26 288,58 Q360,78 432,58 Q504,26 576,58 Q648,78 720,58 Q792,26 864,58 Q936,78 1008,58 Q1080,26 1152,58 Q1224,78 1296,58 Q1368,26 1440,58 L1440,80 Z' fill='%23FFFFFF'/></svg>");
}

/* Calculator (blanco) → Footer (#FFE6EC) */
.home-calculator::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'><path d='M0,80 L0,54 Q72,22 144,54 Q216,78 288,54 Q360,22 432,54 Q504,78 576,54 Q648,22 720,54 Q792,78 864,54 Q936,22 1008,54 Q1080,78 1152,54 Q1224,22 1296,54 Q1368,78 1440,54 L1440,80 Z' fill='%23FFE6EC'/></svg>");
}

/* Pulso rosado para el cartel de información verificada */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(194,24,91,.12); }
  50%       { box-shadow: 0 12px 44px rgba(248,168,187,.55), 0 0 0 5px rgba(248,168,187,.12); }
}

/* Latido del corazón en el footer */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.28); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.14); }
  56%       { transform: scale(1); }
}

/* Animación de entrada para los números de feature cards */
@keyframes num-appear {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 0.4; transform: translateY(0); }
}
.feature-card.reveal.visible .feature-num {
  animation: num-appear 550ms var(--ease-out) 120ms both;
}

/* ======================================================
   CLOUD DIVIDERS — páginas interiores
====================================================== */
.weeks-section,
.trimester-block,
.contact-section { position: relative; }

.page-hero       { padding-bottom: calc(var(--sp6) + 70px); }
.weeks-section   { padding-bottom: calc(var(--sp6) + 70px); }
.trimester-block { padding-bottom: calc(var(--sp7) + 70px); }
.contact-section { padding-bottom: calc(var(--sp7) + 70px); }

.page-hero::after,
.weeks-section::after,
.trimester-block.bg-white::after,
.trimester-block.bg-blush::after,
.trimester-block.bg-peach::after,
.contact-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 80px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 100%;
}

/* page-hero (#FFE6EC) → contenido (cream #FDF5F8) */
.page-hero::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'><path d='M0,80 L0,54 Q72,22 144,54 Q216,78 288,54 Q360,22 432,54 Q504,78 576,54 Q648,22 720,54 Q792,78 864,54 Q936,22 1008,54 Q1080,78 1152,54 Q1224,22 1296,54 Q1368,78 1440,54 L1440,80 Z' fill='%23FDF5F8'/></svg>");
}

/* weeks-section (#FDF5F8) → footer (#FFE6EC) */
.weeks-section::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'><path d='M0,80 L0,54 Q72,22 144,54 Q216,78 288,54 Q360,22 432,54 Q504,78 576,54 Q648,22 720,54 Q792,78 864,54 Q936,22 1008,54 Q1080,78 1152,54 Q1224,22 1296,54 Q1368,78 1440,54 L1440,80 Z' fill='%23FFE6EC'/></svg>");
}

/* trimester bg-white (blanco) → bg-blush (#FFE6EC) */
.trimester-block.bg-white::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'><path d='M0,80 L0,54 Q72,22 144,54 Q216,78 288,54 Q360,22 432,54 Q504,78 576,54 Q648,22 720,54 Q792,78 864,54 Q936,22 1008,54 Q1080,78 1152,54 Q1224,22 1296,54 Q1368,78 1440,54 L1440,80 Z' fill='%23FFE6EC'/></svg>");
}

/* trimester bg-blush (#FFE6EC) → bg-peach (#FDF5F8) */
.trimester-block.bg-blush::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'><path d='M0,80 L0,58 Q72,78 144,58 Q216,26 288,58 Q360,78 432,58 Q504,26 576,58 Q648,78 720,58 Q792,26 864,58 Q936,78 1008,58 Q1080,26 1152,58 Q1224,78 1296,58 Q1368,26 1440,58 L1440,80 Z' fill='%23FDF5F8'/></svg>");
}

/* trimester bg-peach (#FDF5F8) → footer (#FFE6EC) */
.trimester-block.bg-peach::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'><path d='M0,80 L0,54 Q72,22 144,54 Q216,78 288,54 Q360,22 432,54 Q504,78 576,54 Q648,22 720,54 Q792,78 864,54 Q936,22 1008,54 Q1080,78 1152,54 Q1224,22 1296,54 Q1368,78 1440,54 L1440,80 Z' fill='%23FFE6EC'/></svg>");
}

/* contact-section (#FDF5F8) → footer (#FFE6EC) */
.contact-section::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'><path d='M0,80 L0,54 Q72,22 144,54 Q216,78 288,54 Q360,22 432,54 Q504,78 576,54 Q648,22 720,54 Q792,78 864,54 Q936,22 1008,54 Q1080,78 1152,54 Q1224,22 1296,54 Q1368,78 1440,54 L1440,80 Z' fill='%23FFE6EC'/></svg>");
}

/* ======================================================
   REDUCED MOTION
====================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-frame { animation: none; }
  .deco-star  { animation: none; }
}

/* ======================================================
   CONTACTO
====================================================== */
.contact-hero {
  background-color: var(--c-white);
  position: relative;
  overflow: hidden;
  padding-top: var(--sp8);
  padding-bottom: calc(var(--sp8) + 60px);
}

/* Nubes estilo 3D pastel (basado en ref) */
.contact-cloud {
  position: absolute;
  z-index: 2;
}

.contact-cloud-l {
  left: -60px;
  top: 45%;
  transform: translateY(-50%);
  width: 350px;
  fill: var(--c-rose-lt);
  filter: drop-shadow(-8px 12px 0px var(--c-rose)); /* Sombra bloque 3D sólida */
}

.contact-cloud-r {
  right: -60px;
  top: 55%;
  transform: translateY(-50%) scaleX(-1);
  width: 320px;
  fill: var(--c-cream);
  filter: drop-shadow(-8px 12px 0px var(--c-rose-lt)); /* Sombra bloque 3D (el -8 se invierte visualmente por scaleX) */
}



/* Mariposas en las 4 esquinas del formulario */
.form-butterfly-wrapper {
  position: relative;
}

.contact-butterfly {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  width: 50px;
}

.contact-butterfly-tl {
  top: -20px;
  left: -20px;
  transform: rotate(-15deg);
  animation: float 6s ease-in-out infinite;
}

.contact-butterfly-br {
  bottom: -20px;
  right: -20px;
  transform: rotate(-10deg) scale(-1);
  animation: float 7.5s ease-in-out infinite 1.5s;
}

/* Textos del hero */
.contact-hero .page-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 650px;
  margin: 0 auto;
}

.contact-hero-title {
  font-family: var(--font-head);
 font-size: clamp(1.2rem, 3.5vw, var(--text-2xl));
  color: var(--c-accent);
  margin-bottom: var(--sp3);
}

.contact-hero p {
  font-size: var(--text-lg);
  color: var(--c-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* Ola de separación animada o estática */
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 120px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'><path d='M0,120 L0,60 Q360,120 720,60 T1440,60 L1440,120 Z' fill='%23FDF5F8'/></svg>");
  z-index: 1;
}

/* Formulario */
.contact-section {
  background-color: var(--c-cream);
  padding-bottom: var(--sp8);
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--sp3);
  position: relative;
  z-index: 3;
}

.contact-form {
  background: var(--c-white);
  padding: var(--sp5);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--c-rose-lt);
  margin-bottom: var(--sp5);
}

.form-group {
  margin-bottom: var(--sp3);
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--c-cream-2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--c-text);
  background-color: var(--c-cream);
  transition: border-color 0.3s, background-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-rose);
  background-color: var(--c-white);
}

.form-submit {
  text-align: left;
}

.form-success {
  display: none;
}



@media (max-width: 768px) {
  .contact-cloud-l { left: -120px; width: 250px; }
  .contact-cloud-r { right: -120px; width: 250px; }
  .contact-butterfly { width: 40px; }
  .contact-butterfly-tl { top: -16px; left: -16px; }
  .contact-butterfly-br { bottom: -16px; right: -16px; }
}

/* Social icons title color */
.contact-social h3 {
  color: var(--c-accent);
}
.contact-social h3 em {
  color: var(--c-accent);
}
/* Unificamos el tamaño de Contacto para computadoras */
.contact-hero-title {
  font-size: clamp(2rem, 5vw, var(--text-4xl)) !important;
  font-weight: 700 !important;
  color: var(--c-accent) !important;
  text-align: center;
}

/* Unificamos el tamaño de Contacto para computadoras */
.contact-hero-title, .contact-hero h1, .page-hero-inner h1 {
  font-size: clamp(2rem, 5vw, var(--text-4xl)) !important;
  font-weight: 700 !important;
  color: var(--c-accent) !important;
  text-align: center;
}

/* Regla ultra forzada y directa para que en el celular quede chico sí o sí */
@media (max-width: 767px) {
  html body .contact-hero .contact-hero-title,
  html body .page-hero .contact-hero-title,
  html body .contact-hero h1,
  html body .page-hero h1 {
    font-size: 1.4rem !important; /* Lo bajé a 1.4rem para que quede bien fino, tierno y controlado */
  }
}