/* ============================================================
   MAMUELAS KIDS — Hoja de estilos principal
   Versión 1.0 — Para editar: busca los comentarios con 📸
   ============================================================ */

/* --- Variables de marca --- */
:root {
  --turquesa:    #2AA7AA;
  --turquesa-cl: #6FCFD2;
  --turquesa-bg: #E8F8F8;
  --rosa:        #E85D8E;
  --rosa-cl:     #F47CA6;
  --rosa-bg:     #FDE8EF;
  --verde:       #B7C216;
  --verde-bg:    #F4F7D6;
  --blanco:      #FFFFFF;
  --gris-bg:     #F5F5F5;
  --gris-borde:  #E8E8E8;
  --texto:       #333333;
  --texto-sec:   #777777;
  --sombra:      0 4px 32px rgba(0,0,0,0.07);
  --sombra-hover:0 8px 40px rgba(0,0,0,0.13);
  --radio:       16px;
  --radio-btn:   100px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--texto);
  background: var(--blanco);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- Tipografía --- */
h1, h2, h3, h4 { font-family: 'Nunito Sans', sans-serif; font-weight: 900; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
.lora { font-family: 'Lora', Georgia, serif; font-style: italic; }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--turquesa);
  display: block;
  margin-bottom: 14px;
}

/* --- Layout utilitarios --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* --- Botones --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radio-btn);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sombra-hover); }
.btn:active { transform: translateY(0); }
.btn-rosa {
  background: var(--rosa);
  color: var(--blanco);
}
.btn-outline {
  background: transparent;
  color: var(--turquesa);
  border: 2.5px solid var(--turquesa);
}
.btn-outline:hover { background: var(--turquesa-bg); }
.btn-blanco {
  background: var(--blanco);
  color: var(--rosa);
}
.btn-sm { padding: 12px 24px; font-size: 0.9rem; }

/* ============================================================
   LOGO SVG
   ============================================================ */
.nav-logo img {
  height: 52px;
  width: auto;
  max-width: 230px;
  display: block;
}

/* ============================================================
   NAVEGACIÓN
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gris-borde);
  padding: 0 28px;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
/* Letras multicolor simulando el logo de marca */
.lm { color: var(--turquesa); }
.lr { color: var(--rosa); }
.lv { color: var(--verde); }
.nav-logo-tag {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 0.72rem;
  color: var(--rosa);
  letter-spacing: 0.04em;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--texto);
  transition: color 0.15s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--turquesa); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 26px; height: 2.5px;
  background: var(--texto);
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-menu-mobile {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--gris-borde);
  padding: 24px 28px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.nav-menu-mobile.open { display: flex; }
.nav-menu-mobile a {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--texto);
  padding: 8px 0;
  border-bottom: 1px solid var(--gris-borde);
}
.nav-menu-mobile .btn { margin-top: 8px; text-align: center; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 74px;
  display: flex;
  align-items: center;
  background: var(--blanco);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '♥';
  position: absolute;
  font-size: 600px;
  line-height: 1;
  color: var(--turquesa);
  opacity: 0.025;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Nunito Sans', sans-serif;
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rosa);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--rosa);
  border-radius: 2px;
}
.hero h1 { color: var(--texto); margin-bottom: 24px; }
.hero h1 em {
  font-style: normal;
  color: var(--turquesa);
}
.hero-sub {
  font-size: 1.13rem;
  color: var(--texto-sec);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Foto hero */
.hero-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 600px;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -1px; left: -1px;
  background: var(--turquesa);
  color: white;
  padding: 18px 24px;
  border-radius: 0 var(--radio) 0 28px;
}
.hero-badge-num { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.hero-badge-txt { font-size: 0.75rem; font-weight: 700; opacity: 0.85; margin-top: 2px; }

/* ============================================================
   STRIP DE PILARES
   ============================================================ */
.pilares-strip {
  background: var(--turquesa);
  padding: 52px 28px;
}
.pilares-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: center;
}
.pilar {
  text-align: center;
  padding: 0 40px;
  color: white;
}
.pilar-icon { font-size: 2.2rem; margin-bottom: 10px; }
.pilar-name { font-size: 1.25rem; font-weight: 900; margin-bottom: 6px; }
.pilar-desc { font-size: 0.88rem; opacity: 0.82; line-height: 1.55; }
.pilar-divider { background: rgba(255,255,255,0.25); height: 64px; }
.pilares-tagline {
  text-align: center;
  margin-top: 36px;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: white;
  opacity: 0.9;
  letter-spacing: 0.04em;
}

/* ============================================================
   PRIMERA VISITA
   ============================================================ */
.primera-visita { background: var(--blanco); }
.pv-header { text-align: center; margin-bottom: 56px; }
.pv-header .eyebrow { color: var(--rosa); display: block; }
.pv-header h2 { margin: 0 auto; max-width: 720px; }
.pv-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.pv-text p {
  color: var(--texto-sec);
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 1.02rem;
}
.pv-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.pv-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pv-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.pv-step {
  background: var(--gris-bg);
  border-radius: var(--radio);
  padding: 26px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pv-step:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.pv-step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--rosa);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.pv-step h3 { font-size: 0.96rem; margin-bottom: 8px; line-height: 1.35; }
.pv-step p { font-size: 0.84rem; color: var(--texto-sec); line-height: 1.6; }
.pv-closing {
  text-align: center;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--turquesa);
  margin: 0 auto 36px;
  max-width: 600px;
}
.pv-cta { text-align: center; }

/* ============================================================
   SOBRE MANUELA
   ============================================================ */
.sobre {
  background: var(--blanco);
}
.sobre-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.sobre-img-wrap {
  position: relative;
}
@media (min-width: 961px) {
  .sobre-img-wrap { position: sticky; top: 100px; }
}
.sobre-img-wrap img,
.sobre-img-wrap .ph-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.sobre-content .eyebrow { color: var(--rosa); }
.sobre-quote {
  font-size: 1.25rem;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  color: var(--turquesa);
  margin: 28px 0;
  padding-left: 22px;
  border-left: 3px solid var(--turquesa);
  line-height: 1.6;
}
.sobre-bio { color: var(--texto-sec); margin-bottom: 20px; line-height: 1.75; }
.sobre-bio:last-of-type { margin-bottom: 32px; }

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios {
  background: var(--gris-bg);
}
.servicios-header { text-align: center; margin-bottom: 60px; }
.servicios-header h2 { margin-bottom: 16px; }
.servicios-header p { max-width: 560px; margin: 0 auto; color: var(--texto-sec); }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.servicio-card {
  background: var(--blanco);
  border-radius: var(--radio);
  padding: 44px 36px 40px;
  box-shadow: var(--sombra);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-bottom: 4px solid transparent;
}
.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}
.servicio-card:nth-child(1) { border-bottom-color: var(--rosa); }
.servicio-card:nth-child(2) { border-bottom-color: var(--turquesa); }
.servicio-card:nth-child(3) { border-bottom-color: var(--verde); }
.servicio-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.card-1 .servicio-icon { background: var(--rosa-bg); }
.card-2 .servicio-icon { background: var(--turquesa-bg); }
.card-3 .servicio-icon { background: var(--verde-bg); }
.servicio-card h3 { margin-bottom: 14px; }
.servicio-card p { color: var(--texto-sec); font-size: 0.96rem; line-height: 1.7; }
.servicio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--gris-bg);
  color: var(--texto-sec);
}

/* ============================================================
   LA EXPERIENCIA (espacio físico)
   ============================================================ */
.experiencia {
  background: var(--blanco);
}
.experiencia-header { text-align: center; margin-bottom: 64px; }
.experiencia-header .eyebrow { justify-content: center; display: block; }
.experiencia-header h2 { margin-bottom: 16px; }
.experiencia-header h2 span { color: var(--rosa); }
.experiencia-header p { max-width: 560px; margin: 0 auto; color: var(--texto-sec); }
.experiencia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.exp-card {
  border-radius: var(--radio);
  overflow: hidden;
  position: relative;
}
.exp-card.large { grid-column: span 2; }
.exp-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.exp-card.large .exp-img { aspect-ratio: 16/9; }
.exp-caption {
  padding: 16px 20px 18px;
  background: white;
  border: 1px solid var(--gris-borde);
  border-top: none;
  border-radius: 0 0 var(--radio) var(--radio);
}
.exp-caption strong { display: block; font-size: 0.96rem; font-weight: 800; margin-bottom: 4px; }
.exp-caption span { font-size: 0.82rem; color: var(--texto-sec); }

/* ============================================================
   JOURNEY STRIP
   ============================================================ */
.journey-strip {
  background: var(--gris-bg);
  padding: 80px 0;
}
.journey-title {
  text-align: center;
  margin-bottom: 48px;
}
.journey-title h2 { margin-bottom: 12px; }
.journey-title p { color: var(--texto-sec); max-width: 500px; margin: 0 auto; }
.journey-bar-steps {
  display: flex;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.journey-step {
  flex: 1;
  padding: 26px 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.3);
  transition: transform 0.2s;
}
.journey-step:last-child { border-right: none; }
.journey-step:hover { transform: translateY(-4px); }
.journey-step:nth-child(1) { background: var(--rosa);    color: white; border-radius: var(--radio) 0 0 var(--radio); }
.journey-step:nth-child(2) { background: var(--verde);   color: rgba(0,0,0,0.7); }
.journey-step:nth-child(3) { background: var(--turquesa);color: white; }
.journey-step:nth-child(4) { background: #D94C7E;        color: white; }
.journey-step:nth-child(5) { background: #9AA80F;        color: white; }
.journey-step:nth-child(6) { background: #1E8C8F;        color: white; border-radius: 0 var(--radio) var(--radio) 0; }
.journey-step-icon { font-size: 1.7rem; margin-bottom: 8px; }
.journey-step-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; margin-bottom: 6px; }
.journey-step-emotion { font-size: 0.85rem; font-weight: 600; line-height: 1.4; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonios {
  background: var(--blanco);
}
.testimonios-header { text-align: center; margin-bottom: 60px; }
.testimonios-header h2 { margin-bottom: 12px; }
.testimonios-header p { color: var(--texto-sec); }
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--gris-bg);
  border-radius: var(--radio);
  padding: 36px 32px;
  position: relative;
}
.testi-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--rosa);
  font-family: Georgia, serif;
  margin-bottom: 12px;
  opacity: 0.4;
}
.testi-text {
  font-size: 1rem;
  color: var(--texto);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { font-weight: 800; font-size: 0.9rem; color: var(--texto); }
.testi-kid { font-size: 0.82rem; color: var(--texto-sec); margin-top: 2px; }
.testi-stars { color: var(--rosa); font-size: 0.9rem; margin-bottom: 6px; }
.testi-placeholder-note {
  font-size: 0.72rem;
  color: var(--rosa);
  background: var(--rosa-bg);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-preview {
  background: var(--gris-bg);
}
.blog-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.blog-preview-header h2 { margin: 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--blanco);
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-hover); }
.blog-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.blog-card-body { padding: 26px 26px 28px; }
.blog-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--turquesa);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.08rem; margin-bottom: 10px; line-height: 1.45; }
.blog-card p { font-size: 0.88rem; color: var(--texto-sec); margin-bottom: 20px; line-height: 1.6; }
.blog-card-link {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--rosa);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.blog-card-link:hover { gap: 10px; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: linear-gradient(135deg, var(--rosa) 0%, var(--turquesa) 100%);
  padding: 100px 28px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '♥';
  position: absolute;
  font-size: 500px;
  opacity: 0.06;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-final h2 {
  color: white;
  max-width: 600px;
  margin: 0 auto 16px;
}
.cta-final p {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 500px;
  margin: 0 auto 44px;
}
.cta-final-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.btn-blanco-outline {
  background: transparent;
  color: white;
  border: 2.5px solid rgba(255,255,255,0.6);
}
.btn-blanco-outline:hover { background: rgba(255,255,255,0.12); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}
.footer-brand-name {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 4px;
}
.footer-brand-tag {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  color: var(--rosa-cl);
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 0.88rem; color: #888; max-width: 280px; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 14px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid #333;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: #888;
  transition: all 0.15s;
}
.social-link:hover { border-color: var(--rosa); color: var(--rosa); }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: #555; margin-bottom: 20px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-col a { color: #888; transition: color 0.15s; }
.footer-col a:hover { color: var(--turquesa); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 28px 0;
  border-top: 1px solid #262626;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #555;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 900;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ============================================================
   PLACEHOLDERS DE IMAGEN
   ============================================================ */
.ph-img {
  background: linear-gradient(135deg, var(--turquesa-bg) 0%, #d0f0f0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed var(--turquesa);
}
.ph-img-rosa {
  background: linear-gradient(135deg, var(--rosa-bg) 0%, #fce0ea 100%);
  border-color: var(--rosa);
}
.ph-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--turquesa);
  text-align: center;
  padding: 0 16px;
  line-height: 1.5;
}
.ph-label-rosa { color: var(--rosa); }
.ph-icon { font-size: 2rem; opacity: 0.5; }

/* ============================================================
   PRODUCTOS
   ============================================================ */
.productos { background: var(--blanco); }
.productos-header { text-align: center; margin-bottom: 56px; }
.productos-header h2 { margin-bottom: 14px; }
.productos-header p { max-width: 580px; margin: 0 auto; color: var(--texto-sec); }
.productos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.producto-card {
  background: var(--gris-bg);
  border-radius: var(--radio);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.producto-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-hover); }
.producto-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.producto-img.producto-img-contain {
  object-fit: contain;
  background: var(--gris-bg);
  padding: 18px;
  box-sizing: border-box;
}
.producto-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.producto-name {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--texto);
  line-height: 1.3;
}
.producto-desc {
  font-size: 0.86rem;
  color: var(--texto-sec);
  margin-bottom: 20px;
  line-height: 1.65;
  flex: 1;
}
.producto-footer { display: flex; flex-direction: column; gap: 10px; }
.producto-envio {
  font-size: 0.74rem;
  color: var(--turquesa);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============================================================
   PÁGINA FINANCIERA
   ============================================================ */
.fin-page {
  min-height: 100vh;
  background: var(--gris-bg);
  padding: 60px 28px 80px;
}
.fin-inner {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radio);
  padding: 56px 64px 60px;
  box-shadow: var(--sombra);
}
.fin-logo { margin-bottom: 32px; }
.fin-logo img { height: 48px; width: auto; }
.fin-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--turquesa), var(--rosa));
  border-radius: 2px;
  margin: 28px 0;
}
.fin-title { font-size: 1.6rem; font-weight: 900; color: var(--texto); margin-bottom: 8px; }
.fin-subtitle { font-size: 0.95rem; color: var(--texto-sec); margin-bottom: 24px; }
.fin-desc { font-size: 0.92rem; color: var(--texto-sec); line-height: 1.8; margin-bottom: 36px; }
.fin-doc-card {
  border: 1.5px solid var(--gris-borde);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.fin-doc-info h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.fin-doc-info p { font-size: 0.82rem; color: var(--texto-sec); line-height: 1.6; }
.fin-footer-note {
  margin-top: 40px;
  font-size: 0.78rem;
  color: #aaa;
  line-height: 1.7;
  border-top: 1px solid var(--gris-borde);
  padding-top: 20px;
}

/* ============================================================
   BLOG PÁGINA
   ============================================================ */
.blog-hero {
  background: var(--gris-bg);
  padding: 140px 28px 80px;
  text-align: center;
}
.blog-hero h1 { margin-bottom: 16px; }
.blog-hero p { max-width: 500px; margin: 0 auto; color: var(--texto-sec); }
.blog-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 28px;
}

/* ============================================================
   PÁGINA ARTÍCULO
   ============================================================ */
.article-hero {
  padding: 140px 28px 60px;
  max-width: 780px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--turquesa);
  background: var(--turquesa-bg);
  padding: 5px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article-date { font-size: 0.84rem; color: var(--texto-sec); }
.article-dates { font-size: 0.84rem; color: var(--texto-sec); margin: -16px 0 24px; }
.article-disclaimer { font-size: 0.78rem; color: var(--texto-sec); font-style: italic; margin-top: 24px; }
.article-hero h1 { margin-bottom: 20px; }
.article-intro { font-size: 1.18rem; color: var(--texto-sec); line-height: 1.75; }
.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px 80px;
}
.article-body h2 { margin: 48px 0 18px; color: var(--texto); }
.article-body p { margin-bottom: 20px; color: var(--texto-sec); line-height: 1.8; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; color: var(--texto-sec); line-height: 1.8; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--texto); }
.article-cta-box {
  background: linear-gradient(135deg, var(--rosa-bg) 0%, var(--turquesa-bg) 100%);
  border-radius: var(--radio);
  padding: 40px 36px;
  text-align: center;
  margin: 48px 0 0;
}
.article-cta-box h3 { margin-bottom: 10px; }
.article-cta-box p { color: var(--texto-sec); margin-bottom: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-img-wrap { max-height: 380px; aspect-ratio: 16/9; }
  .sobre-inner { grid-template-columns: 1fr; gap: 48px; }
  .sobre-img-wrap { max-width: 400px; }
  .servicios-grid { grid-template-columns: 1fr; }
  .pv-top { grid-template-columns: 1fr; gap: 40px; }
  .pv-img-wrap { max-width: 440px; margin: 0 auto; }
  .pv-steps { grid-template-columns: repeat(2, 1fr); }
  .experiencia-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-card.large { grid-column: span 2; }
  .journey-bar-steps { overflow-x: auto; padding-bottom: 16px; }
  .journey-step { min-width: 130px; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .productos-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-all-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pilares-inner { grid-template-columns: 1fr; gap: 32px; }
  .pilar-divider { display: none; }
  .fin-inner { padding: 40px 36px; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .experiencia-grid { grid-template-columns: 1fr; }
  .exp-card.large { grid-column: span 1; }
  .pv-steps { grid-template-columns: 1fr; }
  .productos-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .blog-grid, .blog-all-grid { grid-template-columns: 1fr; }
  .blog-preview-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-final-btns { flex-direction: column; align-items: center; }
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .journey-step { min-width: 110px; padding: 18px 12px; }
  .fin-inner { padding: 32px 20px; }
  .fin-doc-card { flex-direction: column; align-items: flex-start; }
}
