/* =====================================================
   CENTRO CRECIENDO JUNTOS — Stylesheet
   Libraries: simpleParallax.js + Anime.js
   ===================================================== */

/* ---- Variables ---- */
:root {
  --azul:        #08265c;
  --azul-claro:  #4b8df7;
  --rosa:        #ec5aa3;
  --rosa-dark:   #d44d91;
  --verde:       #52c776;
  --morado:      #9b6cff;
  --amarillo:    #ffc857;
  --turquesa:    #43cfd0;
  --texto:       #1d2b4f;
  --gris:        #667085;
  --fondo:       #f8fbff;

  --shadow-card: 0 16px 35px rgba(20,50,100,.07);
  --shadow-btn:  0 14px 30px rgba(236,90,163,.24);
  --transition:  all .25s ease;
  --font:        'Inter', Arial, sans-serif;
  --nav-h:       92px;
  --radius-lg:   20px;
  --radius-xl:   28px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: #fff;
  color: var(--texto);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* =====================================================
   HEADER
   ===================================================== */
header {
  height: var(--nav-h);
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.97);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 30px rgba(20,50,100,.06);
  transition: box-shadow .35s, background .35s;
  gap: 16px;
}
header.scrolled {
  box-shadow: 0 8px 40px rgba(20,50,100,.12);
  background: rgba(255,255,255,.99);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--rosa);
  font-size: 22px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo small {
  display: block;
  color: var(--texto);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .8px;
  margin-top: -2px;
  text-transform: uppercase;
}
.logo-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 25% 30%, #29a8ff 0 18%, transparent 19%),
    radial-gradient(circle at 68% 25%, #ffb703 0 20%, transparent 21%),
    radial-gradient(circle at 42% 72%, #ff4fa3 0 22%, transparent 23%),
    radial-gradient(circle at 74% 70%, #6dd47e 0 18%, transparent 19%),
    #fff2fb;
  box-shadow: 0 8px 24px rgba(236,90,163,.18);
  flex-shrink: 0;
}

/* Nav */
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 700;
}
nav a {
  color: #19233d;
  position: relative;
  transition: color .2s;
}
nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--rosa);
  border-radius: 2px;
  transition: width .3s cubic-bezier(0.16,1,0.3,1);
}
nav a:hover::after,
nav a.active::after { width: 100%; }
nav a:hover, nav a.active { color: var(--rosa); }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--texto);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border-radius: 14px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 14.5px;
  cursor: pointer;
  transition: transform .25s cubic-bezier(0.16,1,0.3,1), box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, #ec5aa3, #f06daf);
  color: white;
  box-shadow: var(--shadow-btn);
  border: none;
}
.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(236,90,163,.32);
}
.btn-outline {
  background: white;
  color: var(--texto);
  border: 1.5px solid #d9e1ec;
  box-shadow: 0 10px 26px rgba(20,50,100,.06);
}
.btn-outline:hover {
  border-color: var(--rosa);
  color: var(--rosa);
  box-shadow: 0 14px 30px rgba(20,50,100,.1);
}

/* Badge dot on btn-outline */
.whatsapp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(37,211,102,.25);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 650px;
  padding: 80px 7% 58px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  background:
    radial-gradient(circle at 0% 5%, rgba(236,90,163,.10), transparent 22%),
    radial-gradient(circle at 38% 4%, rgba(75,141,247,.12), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

/* Decorative blobs */
.blob-left {
  position: absolute;
  width: 360px; height: 360px;
  left: -120px; top: 45px;
  border-radius: 50%;
  background: rgba(236,90,163,.07);
  pointer-events: none;
}
.blob-blue {
  position: absolute;
  width: 360px; height: 520px;
  left: 33%; top: -160px;
  border-radius: 0 0 220px 220px;
  background: rgba(74,177,255,.09);
  transform: rotate(-8deg);
  pointer-events: none;
}
.dots {
  position: absolute;
  width: 130px; height: 130px;
  background-image: radial-gradient(rgba(236,90,163,.25) 3px, transparent 3px);
  background-size: 22px 22px;
  left: 22px; bottom: 62px;
  pointer-events: none;
}

/* Hero text */
.hero-text {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236,90,163,.09);
  border: 1px solid rgba(236,90,163,.22);
  color: var(--rosa-dark);
  font-size: .8rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  opacity: 0; /* anime in */
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rosa);
  box-shadow: 0 0 0 2px rgba(236,90,163,.3);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 2px rgba(236,90,163,.3); }
  50%      { box-shadow: 0 0 0 5px rgba(236,90,163,.1); }
}

.hero-text h1 {
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.12;
  color: var(--azul);
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  opacity: 0; /* anime in */
}
.hero-text p {
  color: #526072;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
  opacity: 0; /* anime in */
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  opacity: 0; /* anime in */
}
.hero-points {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  opacity: 0; /* anime in */
}
.point {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #596579;
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.4;
}
.point-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.pink-bg   { background: #ffeaf4; }
.blue-bg   { background: #e7f0ff; }
.purple-bg { background: #f1e9ff; }

/* Hero image */
.hero-img-wrap {
  position: relative;
  z-index: 2;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}
.hero-photo {
  width: 100%;
  height: 540px;
  object-fit: cover;
  /* border-radius & shadow applied to simpleParallax wrapper below */
}

/* simpleParallax wrapper inherits the hero image styling */
.hero-img-wrap .simpleParallax {
  border-radius: 300px 0 0 300px !important;
  border-left: 5px solid rgba(236,90,163,.65);
  box-shadow: 0 28px 70px rgba(28,61,111,.14);
  overflow: hidden !important;
  width: 100%;
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: 340px;
  padding: 20px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #3d8bf2, #5ba2ff);
  color: white;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.5;
  box-shadow: 0 20px 45px rgba(61,139,242,.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 4;
  opacity: 0; /* anime in */
}
.heart {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* =====================================================
   QUIÉNES SOMOS
   ===================================================== */
.who-we-are {
  padding: 90px 7%;
  background: linear-gradient(160deg, #fff8fc 0%, #f6faff 100%);
}
.wwa-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 72px;
  align-items: center;
}

/* Text side */
.wwa-text { opacity: 0; transform: translateX(-36px); }
.wwa-tag {
  display: inline-block;
  background: #fff0f7;
  color: var(--rosa);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.wwa-text h2 {
  color: var(--azul);
  font-size: clamp(30px, 3.5vw, 40px);
  margin-bottom: 14px;
  line-height: 1.15;
}
.wwa-text .line { margin: 0 0 22px; }
.wwa-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--texto);
  margin-bottom: 14px;
}
.wwa-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gris);
  margin-bottom: 14px;
}

/* Values */
.wwa-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.wwa-value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wwa-value-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.wwa-value strong {
  display: block;
  color: var(--azul);
  font-size: 14.5px;
  margin-bottom: 3px;
}
.wwa-value p {
  font-size: 13.5px;
  color: var(--gris);
  margin: 0;
  line-height: 1.55;
}

/* Stats bar */
.wwa-stats {
  display: flex;
  gap: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(20,50,100,.08);
  overflow: hidden;
  margin-top: 8px;
}
.wwa-stat {
  flex: 1;
  padding: 20px 18px;
  text-align: center;
  border-right: 1px solid #edf1f7;
  opacity: 0;
}
.wwa-stat:last-child { border-right: none; }
.wwa-stat strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--rosa);
  line-height: 1;
  margin-bottom: 4px;
}
.wwa-stat span {
  font-size: 12px;
  color: var(--gris);
  font-weight: 600;
}

/* Visual side */
.wwa-visual { opacity: 0; transform: translateX(36px); position: relative; }
.wwa-img-stack { position: relative; }
.wwa-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(20,50,100,.14);
}

/* simpleParallax wrapper for main image */
.wwa-img-stack .simpleParallax {
  border-radius: 28px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 56px rgba(20,50,100,.14);
  display: block;
}

.wwa-img-secondary {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid white;
  box-shadow: 0 16px 36px rgba(20,50,100,.14);
  position: absolute;
  bottom: -28px;
  left: -28px;
}
.wwa-cert {
  position: absolute;
  top: 28px;
  right: -24px;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(236,90,163,.15);
  max-width: 210px;
}
.wwa-cert strong { display: block; font-size: 13.5px; color: var(--azul); }
.wwa-cert span { font-size: 12px; color: var(--gris); }

/* =====================================================
   EQUIPO (TEAM)
   ===================================================== */
.team {
  padding: 80px 7% 90px;
  background: white;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.team-card {
  background: white;
  border-radius: 24px;
  padding: 36px 24px 28px;
  text-align: center;
  border: 1px solid #edf1f7;
  box-shadow: 0 12px 32px rgba(20,50,100,.07);
  transition: transform .3s cubic-bezier(0.16,1,0.3,1), box-shadow .3s;
  opacity: 0;
  transform: translateY(28px);
}
.team-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 52px rgba(20,50,100,.13);
}

/* Photo */
.team-photo-wrap {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  padding: 4px;
  background: conic-gradient(var(--ring) 0%, var(--ring) 75%, #edf1f7 75%);
  position: relative;
}
.team-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: white;
  z-index: 0;
}
.team-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  display: block;
}

/* Badge */
.team-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: .3px;
}
.team-card h3 {
  color: var(--azul);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--rosa);
  font-weight: 700;
  margin-bottom: 14px;
}
.team-bio {
  font-size: 13.5px;
  color: var(--gris);
  line-height: 1.65;
  margin-bottom: 0;
}
.team-divider {
  width: 40px; height: 2px;
  background: #edf1f7;
  border-radius: 2px;
  margin: 18px auto 16px;
}
.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.team-social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #f5f7fb;
  display: grid;
  place-items: center;
  color: var(--gris);
  transition: background .2s, color .2s, transform .2s;
}
.team-social-btn:hover {
  background: var(--rosa);
  color: white;
  transform: translateY(-2px);
}

/* =====================================================
   TERAPIAS SECTION
   ===================================================== */
#terapias {
  padding: 80px 7%;
}
.title-center {
  text-align: center;
  margin-bottom: 44px;
}
.title-center h2 {
  color: var(--azul);
  font-size: 36px;
  margin-bottom: 14px;
}
.line {
  width: 56px; height: 4px;
  border-radius: 10px;
  background: var(--rosa);
  margin: 0 auto 16px;
}
.title-center p {
  color: var(--gris);
  font-size: 15px;
}

.therapy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.therapy-card {
  min-height: 280px;
  border-radius: 20px;
  background: white;
  padding: 28px 18px;
  text-align: center;
  border: 1px solid #edf1f7;
  box-shadow: var(--shadow-card);
  transition: transform .28s cubic-bezier(0.16,1,0.3,1), box-shadow .28s;
  opacity: 0; /* anime in */
  transform: translateY(24px);
}
.therapy-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 48px rgba(20,50,100,.13);
}
.therapy-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 -8px 16px rgba(0,0,0,.1);
}
.t-blue   { background: #69a7ff; }
.t-green  { background: #89d86c; }
.t-pink   { background: #f47fba; }
.t-purple { background: #a984ff; }
.t-yellow { background: #ffd166; }
.t-cyan   { background: #55d6d6; }
.t-coral  { background: #ff7b6b; }
.t-teal   { background: #3eb89a; }

.therapy-card h3 {
  color: var(--azul);
  font-size: 17px;
  margin-bottom: 12px;
  line-height: 1.25;
}
.therapy-card p {
  color: #5d687b;
  line-height: 1.55;
  font-size: 13.5px;
  margin-bottom: 16px;
}
.therapy-card a {
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
  display: grid;
  grid-template-columns: 43% 57%;
  gap: 70px;
  align-items: center;
  padding: 70px 7%;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  position: relative;
}

.video-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  padding: 14px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(20,50,100,.12);
}

/* simpleParallax wrapper inside video-card */
.video-card .simpleParallax {
  border-radius: 22px !important;
  overflow: hidden !important;
  display: block;
}
.video-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
  transition: transform .25s, box-shadow .25s;
  z-index: 2;
}
.play:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.about-text {
  opacity: 0; /* anime in */
  transform: translateX(30px);
}
.about-text h2 {
  color: var(--azul);
  font-size: 36px;
  margin-bottom: 14px;
}
.about-text .line { margin: 0 0 20px; }
.about-text p {
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 580px;
  font-size: 15px;
}
.check-list { display: grid; gap: 13px; margin-bottom: 28px; }
.check {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #526072;
  font-weight: 700;
  font-size: 14.5px;
}
.check span {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--azul-claro);
  flex-shrink: 0;
}

.message-card {
  background: linear-gradient(135deg, #fff0f7, #fff7fb);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  color: var(--gris);
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 600;
  max-width: 250px;
  box-shadow: 0 16px 34px rgba(236,90,163,.12);
  position: absolute;
  right: 7%;
  bottom: 40px;
  opacity: 0; /* anime in */
}
.msg-heart { margin-bottom: 14px; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  background: #edf8f7;
  text-align: center;
  padding: 70px 7%;
}
.testimonials h2 {
  color: #50b7b2;
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 52px;
  opacity: 0; /* anime in */
}
.testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial {
  background: white;
  border-radius: 18px;
  padding: 42px 32px;
  min-height: 300px;
  box-shadow: 0 18px 36px rgba(40,100,110,.06);
  text-align: left;
  transition: transform .28s cubic-bezier(0.16,1,0.3,1), box-shadow .28s;
  opacity: 0; /* anime in */
  transform: translateY(24px);
}
.testimonial:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 28px 56px rgba(40,100,110,.12);
}
.quote {
  color: #efc0ca;
  font-size: 72px;
  line-height: .6;
  margin-bottom: 16px;
  font-weight: 900;
  font-family: Georgia, serif;
}
.testimonial p {
  line-height: 1.6;
  color: #222;
  margin-bottom: 20px;
  font-size: 16px;
}
.testimonial a {
  color: #d8485f;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 20px;
  transition: opacity .2s;
}
.testimonial a:hover { opacity: .7; }
.testimonial strong {
  color: #50b7b2;
  letter-spacing: 4px;
  font-size: 16px;
  display: block;
}

/* =====================================================
   MEDICAL SECTION
   ===================================================== */
.medical {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 70px;
  align-items: center;
  padding: 70px 0 70px 7%;
  background: linear-gradient(180deg, #fff 0%, #eff8f7 100%);
}
.medical-img-wrap { overflow: hidden; border-radius: 0 22px 22px 0; }
.medical-img-wrap .simpleParallax {
  border-radius: 0 22px 22px 0 !important;
  overflow: hidden !important;
  display: block;
}
.medical-img-wrap img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.medical-content {
  padding-right: 7%;
  opacity: 0; /* anime in */
  transform: translateX(30px);
}
.medical-content h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  color: #50b7b2;
  margin-bottom: 18px;
}
.medical-content p {
  line-height: 1.6;
  font-size: 17px;
  margin-bottom: 36px;
  color: #111;
}
.medical-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}
.medical-feature {
  background: white;
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--texto);
  line-height: 1.35;
  box-shadow: 0 12px 26px rgba(40,100,110,.08);
  opacity: 0; /* anime in */
  transform: translateY(16px);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta {
  padding: 0 7% 80px;
  background: #fff;
}
.cta-box {
  background: linear-gradient(135deg, #fff1f8, #f6fbff);
  border-radius: var(--radius-xl);
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  position: relative;
}
.cta-box::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(236,90,163,.06);
  right: -80px; top: -100px;
  pointer-events: none;
}
.cta-box h2 {
  color: var(--azul);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 8px;
  opacity: 0; /* anime in */
}
.cta-box p {
  color: var(--gris);
  font-size: 17px;
  opacity: 0; /* anime in */
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
  opacity: 0; /* anime in */
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--azul);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 56px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 7% 60px;
}
.footer-brand .footer-logo { color: white; margin-bottom: 20px; }
.footer-brand .footer-logo small { color: rgba(255,255,255,.55); }
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: 14px;
  line-height: 1.75;
  max-width: 280px;
}
.footer-col h4 {
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  transition: color .2s, padding-left .2s;
}
.footer-col a:hover { color: rgba(255,255,255,.9); padding-left: 4px; }
.footer-contact-col li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.45);
  font-size: 14px;
  padding: 4px 0;
}
.footer-contact-col svg { color: var(--rosa); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1300px;
  margin: 0 auto;
  padding: 22px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.32); }
.footer-bottom a { color: var(--rosa); transition: opacity .2s; }
.footer-bottom a:hover { opacity: .8; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1280px) {
  .therapy-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid    { grid-template-columns: repeat(2, 1fr); }
  .wwa-cert     { right: 0; }
}

@media (max-width: 1100px) {
  .wwa-inner     { grid-template-columns: 1fr; gap: 48px; }
  .wwa-visual    { order: -1; }
  .wwa-cert      { right: 16px; top: 16px; }
  .wwa-img-secondary { left: -14px; bottom: -14px; width: 130px; height: 130px; }
  .hero          { grid-template-columns: 1fr; }
  .hero-img-wrap { margin-top: 44px; min-height: unset; justify-content: center; }
  .hero-img-wrap .simpleParallax { border-radius: 36px !important; }
  .hero-photo    { height: 380px; }
  .floating-note { position: static; margin-top: -50px; width: 100%; max-width: 400px; }
  .about         { grid-template-columns: 1fr; }
  .message-card  { position: static; margin: 28px auto 0; }
  .medical       { grid-template-columns: 1fr; padding: 70px 7%; }
  .medical-img-wrap, .medical-img-wrap .simpleParallax { border-radius: 22px !important; }
}

@media (max-width: 860px) {
  .team-grid         { grid-template-columns: repeat(2, 1fr); }
  .wwa-stats         { flex-direction: column; gap: 0; }
  .wwa-stat          { border-right: none; border-bottom: 1px solid #edf1f7; }
  .wwa-stat:last-child { border-bottom: none; }
  .therapy-grid      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testimonial-row   { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .medical-features  { grid-template-columns: 1fr; }
  .cta-box           { flex-direction: column; align-items: flex-start; padding: 34px 28px; }
  .cta-actions       { width: 100%; flex-direction: column; }
  .footer-inner      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom     { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  header             { padding: 0 5%; height: 72px; }
  nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 0;
    box-shadow: 0 16px 40px rgba(20,50,100,.1);
    border-top: 1px solid #eee;
    z-index: 90;
  }
  nav.open { display: flex; }
  nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
  }
  .nav-toggle { display: flex; }
  .header-right .btn-primary { display: none; }

  .hero             { padding: 50px 5% 44px; }
  .hero-text h1     { font-size: 34px; letter-spacing: -1px; }
  .hero-points      { gap: 20px; }
  .hero-img-wrap    { margin-top: 36px; }
  .hero-photo       { height: 300px; }
  .floating-note    { font-size: 13px; padding: 16px 18px; }
  #terapias         { padding: 56px 5%; }
  .therapy-grid     { grid-template-columns: repeat(2, 1fr); max-width: 500px; margin: 0 auto; gap: 14px; }
  .team-grid        { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .who-we-are       { padding: 60px 5%; }
  .wwa-img-secondary { display: none; }
  .about            { padding: 56px 5%; gap: 40px; }
  .testimonials     { padding: 56px 5%; }
  .cta              { padding: 0 5% 60px; }
  .footer-inner     { padding: 0 5% 48px; }
  .footer-bottom    { padding: 20px 5%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-text h1 { font-size: 28px; }
  .cta-box      { padding: 28px 20px; }
  .medical      { padding: 56px 5%; }
}
