@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300..600,50,0&family=Inter:wght@400;500&display=swap');

/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  /* Paleta del folleto: fondos casi blancos, teal protagonista, morado de apoyo */
  --cream: #FCFBF9;
  --sand: #F7F4EF;
  --linen: #F1ECE4;
  --stone: #DFD8CC;
  --clay: #B5A48D;
  --ink: #2B2A28;
  --ink-soft: #6B655D;
  --ink-mute: #8F887E;
  --teal: #17817C;
  --teal-deep: #0F5F5B;
  --teal-mist: #E6F1F0;
  --sage: #8FBAB6;
  --purple: #6E3F9E;
  --purple-soft: #9B72C4;
  --purple-mist: #EDE4F6;
  --purple-wash: #F6F1FB;
  --hairline: rgba(43, 42, 40, 0.11);

  /* Alias heredados: mantienen compatibles las páginas existentes */
  --color-purple: var(--purple);
  --color-purple-dark: var(--teal-deep);
  --color-purple-light: var(--purple-soft);
  --color-turquoise: var(--teal);
  --color-white: #FFFFFF;
  --color-gray-dark: var(--ink);
  --color-gray-light: var(--sand);
  --color-footer-bg: #12514D;

  --max-width: 1180px;
  --section-padding: 140px;
  --grid-gap: 48px;
  --transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease, opacity 0.4s ease;
  --border-radius: 16px;      /* tarjetas, imágenes y campos: cantos suaves */
  --radius-pill: 50px;         /* botones y pestañas */
  --shadow-soft: 0 16px 44px rgba(43,42,40,0.10);
  --shadow-lift: 0 24px 56px rgba(43,42,40,0.14);
  --ease-soft: cubic-bezier(.2,.7,.2,1);
}

/* ===========================
   APARICIÓN SUAVE AL HACER SCROLL
   El ocultado se activa solo si el JS añade .reveal-on al <html>,
   de modo que sin JS (o con JS antiguo) el contenido siempre se ve.
=========================== */
.reveal-on .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease-soft);
}
.reveal-on .reveal.visible { opacity: 1; transform: none; }
.reveal-on .reveal-d1 { transition-delay: 0.08s; }
.reveal-on .reveal-d2 { transition-delay: 0.16s; }
.reveal-on .reveal-d3 { transition-delay: 0.24s; }
.reveal-on .reveal-d4 { transition-delay: 0.32s; }
.reveal-on .reveal-d5 { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-on .reveal { opacity: 1; transform: none; transition: none; }
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: 'SOFT' 50, 'WONK' 0;
  color: var(--ink);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(34px, 4vw, 56px); line-height: 1.15; }
h2 { font-size: clamp(27px, 3vw, 40px); line-height: 1.22; }
h3 { font-size: clamp(20px, 1.9vw, 25px); line-height: 1.35; }
h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

p { max-width: 68ch; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 20px;
}
.tag--turquoise { color: var(--teal); }

/* Acento tipográfico del folleto: primera línea en teal */
.accent-teal { color: var(--teal); }
.accent-purple { color: var(--purple); }

.signature {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  color: var(--teal);
  margin-top: 20px;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--color-white);
  padding: 16px 38px;
  border-radius: var(--radius-pill);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--teal);
  cursor: pointer;
  transition: var(--transition), transform 0.4s var(--ease-soft), box-shadow 0.4s ease;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}
.btn-primary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(23,129,124,0.24);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--teal);
  padding: 16px 38px;
  border-radius: var(--radius-pill);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--stone);
  cursor: pointer;
  transition: var(--transition), transform 0.4s var(--ease-soft), box-shadow 0.4s ease;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}
.btn-outline:hover {
  border-color: var(--teal);
  background: transparent;
  color: var(--teal-deep);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-block;
  background: var(--teal);
  color: var(--cream);
  padding: 16px 38px;
  border-radius: var(--radius-pill);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--teal);
  cursor: pointer;
  transition: var(--transition), transform 0.4s var(--ease-soft), box-shadow 0.4s ease;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}
.btn-white:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(23,129,124,0.24);
}

/* ===========================
   HEADER
=========================== */
.header-topbar {
  background: var(--linen);
  color: var(--ink-soft);
  padding: 10px 0;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.header-topbar .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.header-topbar .spacer { margin-left: auto; }
.social-icons { display: flex; gap: 16px; align-items: center; }
.social-icons a {
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  transition: var(--transition);
}
.social-icons a:hover { color: var(--teal); }

.header-nav {
  background: var(--cream);
  padding: 26px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, background-color 0.4s ease;
}
.header-nav.scrolled { border-bottom-color: var(--hairline); }
.header-nav .container {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo { height: 48px; width: auto; display: block; flex-shrink: 0; }
.header-nav .container > a:first-child { flex-shrink: 0; line-height: 0; }
@media (max-width: 768px) { .nav-logo { height: 40px; } }
.nav-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-logo-text span { color: var(--teal); }

.nav-menu {
  display: flex;
  gap: 0;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav-menu a {
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  padding: 10px 11px;
  color: var(--ink-soft);
  transition: var(--transition);
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--teal);
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 11px;
  right: 11px;
  height: 1px;
  background: var(--teal);
}

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO — INTERIOR PAGES
=========================== */
.hero-inner {
  background: linear-gradient(180deg, var(--purple-mist) 0%, var(--purple-wash) 60%, var(--cream) 100%);
  padding: 120px 0 100px;
  position: relative;
}
.hero-inner h1 { color: var(--ink); margin-bottom: 20px; }
.hero-inner p { color: var(--ink-soft); font-size: 18px; max-width: 620px; }
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ink-mute);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--ink-mute); transition: var(--transition); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--stone); }

/* ===========================
   SECTIONS
=========================== */
.section { padding: var(--section-padding) 0; }
.section--gray { background: var(--sand); }
.section--purple {
  background: var(--teal-deep);
  position: relative;
}
.section--purple .tag { color: var(--sage); }
.section--purple h2,
.section--purple h3 { color: var(--color-white); }
.section--purple p { color: rgba(255,255,255,0.78); }
.section--dark {
  background: var(--color-footer-bg);
  color: var(--color-white);
}
.section--dark h2, .section--dark h3 { color: var(--color-white); }

.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header p {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--ink-soft);
}
.section--purple .section-header p { color: rgba(255,255,255,0.78); }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }

/* ===========================
   CARDS
=========================== */
.card {
  background: var(--color-white);
  border: 1px solid var(--hairline);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(43,42,40,0.05);
  transition: var(--transition), transform 0.45s var(--ease-soft), box-shadow 0.45s ease;
}
.card:hover {
  border-color: var(--purple-soft);
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.card-img { width: 100%; height: 240px; object-fit: cover; background: var(--linen); }
.card-body { padding: 32px 30px 36px; }
.card h3 { margin-bottom: 12px; font-size: 22px; color: var(--teal); }
.card p { color: var(--ink-soft); font-size: 15px; }

/* Service card */
.service-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
}
.service-card-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--linen);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
}
.service-card:hover .service-card-img img { opacity: 0.22; }
.service-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  padding: 16px 22px;
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: opacity 0.4s ease;
}
.service-card:hover .service-card-label { opacity: 0; }
/* Capa de texto al pasar el ratón */
.service-card-hover {
  position: absolute; inset: 0;
  padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--sand);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.service-card:hover .service-card-hover { opacity: 1; }
.service-card-hover h4 {
  color: var(--ink); font-size: 12px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 16px;
}
.service-card-hover p { color: var(--ink-soft); font-size: 14px; line-height: 1.75; }

/* Feature card */
.feature-card { text-align: center; padding: 24px 20px; }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--teal-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 22px;
  color: var(--teal);
}
.feature-card h3 { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 400; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.18em; }
.feature-card p { font-size: 15px; color: var(--ink-soft); }

/* ===========================
   HERO HOME
=========================== */
.hero-home {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--sand);
}
.hero-home .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-content .tag { color: var(--ink-mute); }
.hero-content h1 { margin-bottom: 20px; color: var(--ink); }
.hero-content h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--teal);
  margin-bottom: 28px;
  font-weight: 300;
}
.hero-content p { font-size: 18px; color: var(--ink-soft); margin-bottom: 44px; max-width: 46ch; }
.hero-cta { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--ink-mute);
}
.avatar-stack { display: flex; }
.avatar-stack img, .avatar-mini {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  margin-left: -8px;
  background: var(--linen);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--ink-soft); font-weight: 400;
  overflow: hidden;
}
.avatar-stack .avatar-mini:first-child { margin-left: 0; }
.stars { color: var(--clay); font-size: 13px; letter-spacing: 2px; }

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  max-width: 540px;
  height: 620px;
  object-fit: cover;
  border-radius: var(--border-radius);
}
.hero-image-placeholder {
  width: 100%;
  max-width: 540px;
  height: 620px;
  border-radius: var(--border-radius);
  background: var(--linen);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
}
.hero-image-placeholder .ph-icon { font-size: 56px; margin-bottom: 16px; opacity: 0.5; }
.hero-image-placeholder p { font-size: 13px; }

/* ===========================
   WELCOME SECTION
=========================== */
.check-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.check-item { display: flex; gap: 16px; align-items: flex-start; }
.check-circle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: 11px;
  margin-top: 4px;
}
.check-item p { margin-top: 0; font-size: 16px; }

.video-thumb {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin-top: 32px;
}
.video-thumb-inner {
  height: 240px;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--teal);
  transition: var(--transition);
}
.video-thumb:hover .play-btn { background: var(--teal); color: var(--color-white); }

.vanessa-mini { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.vanessa-mini-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--linen);
  overflow: hidden;
  flex-shrink: 0;
}
.vanessa-mini-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================
   SERVICES TABS
=========================== */
.services-tabs { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 56px; }
.tab-btn {
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--ink-mute);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.tab-btn:hover, .tab-btn.active {
  background: transparent;
  color: var(--ink);
  border-bottom-color: var(--teal);
}
.section--purple .tab-btn { color: rgba(255,255,255,0.6); }
.section--purple .tab-btn:hover,
.section--purple .tab-btn.active { color: var(--color-white); border-bottom-color: var(--sage); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.tab-panel-img {
  height: 440px;
  border-radius: var(--border-radius);
  background: var(--linen);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  overflow: hidden;
}
.tab-panel-img img { width: 100%; height: 100%; object-fit: cover; }
.tab-panel-content h3 { color: var(--ink); margin-bottom: 20px; }
.tab-panel-content p { margin-bottom: 28px; }
.section--purple .tab-panel-content h3 { color: var(--color-white); }
.tab-stars { display: flex; gap: 4px; color: var(--clay); margin-bottom: 14px; }

/* Formas decorativas: se mantienen sin efecto visual */
.geo-shape { display: none; }
.geo-shape-1, .geo-shape-2, .geo-shape-3 { display: none; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section { background: var(--cream); }
.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.testimonials-slider { position: relative; }
.slider-track { overflow: hidden; }
.slide {
  display: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border-left: none;
}
.slide.active { display: block; }
.slide-stars { color: var(--clay); margin-bottom: 24px; letter-spacing: 3px; font-size: 13px; }
.slide-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 32px;
  font-style: normal;
}
.slide-author { display: flex; align-items: center; gap: 16px; }
.slide-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--linen);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-weight: 400; font-size: 15px;
  flex-shrink: 0;
  overflow: hidden;
}
.slide-avatar img { width: 100%; height: 100%; object-fit: cover; }
.slide-name { font-weight: 400; color: var(--ink); font-size: 15px; }
.slide-role { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; }
.slider-controls { display: flex; gap: 14px; margin-top: 40px; }
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--stone);
  background: transparent;
  color: var(--ink-soft);
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { border-color: var(--teal); color: var(--teal); background: transparent; }

.testimonials-right { text-align: center; }
.testimonials-right-img {
  width: 100%;
  max-width: 420px;
  height: 500px;
  border-radius: var(--border-radius);
  background: var(--linen);
  margin: 0 auto 32px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.testimonials-right-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonials-label {
  display: inline-block;
  background: transparent;
  color: var(--ink-mute);
  padding: 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.testimonials-right h2 { font-size: 30px; color: var(--ink); }

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--color-footer-bg);
  color: rgba(255,255,255,0.72);
  padding: 100px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-col h4 { font-size: 11px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 28px; color: #D9C6F0; }
.footer-col p { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.9; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.62); font-size: 14px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--color-white); }
.footer-tagline { color: #C7B0E4; font-size: 13px; font-style: italic; margin-top: 16px; }
.footer-logo-pill {
  display: inline-block; background: #fff;
  padding: 20px 26px; border-radius: var(--border-radius);
  margin-bottom: 24px;
  max-width: 100%;
}
.footer-logo-pill img { height: 92px; width: auto; max-width: 100%; display: block; }
.footer-logo-dots { display: none; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.62); }
.footer-contact-item span:first-child { color: rgba(255,255,255,0.4); flex-shrink: 0; }
.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.12em; transition: var(--transition); }
.footer-social a:hover { color: var(--color-white); }

/* Crédito "Hecho con ♥ por Actual Internet" */
.footer-heart { color: #ff5a5a; }
.footer-credit-link { color: rgba(255,255,255,0.75); transition: color 0.3s ease; }
.footer-credit-link:hover { color: var(--sage); }

/* ===========================
   WELCOME SECTION (HOME)
=========================== */
.welcome-col-right { padding-left: 0; }
.welcome-col-right .tag { margin-bottom: 16px; }
.welcome-col-right h2 { margin-bottom: 28px; }
.welcome-col-right p { color: var(--ink-soft); margin-bottom: 24px; }

/* ===========================
   WHY US (HOME)
=========================== */
.why-us .grid-4 { align-items: start; }

/* ===========================
   TREATMENT GRID
=========================== */
.treatment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px 48px; }

/* Ficha de tratamiento: foto redondeada con sombra suave que se realza al pasar el ratón */
.treat-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 28px;
  transition: box-shadow 0.45s ease, transform 0.45s var(--ease-soft);
}
.treat-card:hover img { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.treat-card .treat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}
.treat-card h3 { color: var(--teal); font-size: 24px; margin-bottom: 14px; }
.treat-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.8; }

/* Listado de patologías (cirugía) */
.patologias-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.patologias-list li {
  padding-left: 24px;
  position: relative;
  color: var(--ink-soft);
  font-size: 16px;
}
.patologias-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 1px;
  background: var(--clay);
}

/* ===========================
   HOW WE WORK (2x2 grid)
=========================== */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hairline); }
.how-card {
  background: var(--cream);
  border-radius: 0;
  padding: 48px 44px;
  position: relative;
  transition: var(--transition);
}
.how-card::before { content: none; }
.how-card:hover { background: var(--sand); }
.how-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--stone);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; color: var(--teal);
}
.how-icon svg { width: 20px; height: 20px; }
.how-card h3 { color: var(--teal); margin-bottom: 20px; }
.how-card ul { display: flex; flex-direction: column; gap: 12px; }
.how-card ul li { padding-left: 20px; position: relative; font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.how-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 1px;
  background: var(--clay);
}

/* ===========================
   MÉTODO "EQUILIBRA TU PISADA" (POSTUROLOGIA)
=========================== */
/* El ancla no queda tapada por la barra superior fija al llegar desde la home */
#metodo { scroll-margin-top: 110px; }
.metodo-header { text-align: center; max-width: 800px; margin: 0 auto 96px; }
.metodo-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 22px;
}
.metodo-eyebrow::after {
  content: '';
  display: block;
  width: 44px; height: 2px;
  background: var(--teal);
  margin: 20px auto 0;
}
.metodo-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 28px;
}
.metodo-lead { font-size: 17px; line-height: 1.85; color: var(--ink-soft); }

.metodo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.metodo-paso img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 28px;
  transition: box-shadow 0.45s ease, transform 0.45s var(--ease-soft);
}
.metodo-paso:hover img { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.metodo-num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--purple);
  margin-bottom: 14px;
}
.metodo-paso h3 { color: var(--teal); margin-bottom: 14px; }
.metodo-paso > p { color: var(--ink-soft); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.metodo-paso ul { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--hairline); }
.metodo-paso ul li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.metodo-paso ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 10px; height: 1px;
  background: var(--clay);
}
@media (max-width: 1024px) { .metodo-grid { grid-template-columns: 1fr; gap: 64px; } }

/* ===========================
   METHOD STEPS (POSTUROLOGIA)
=========================== */
.steps-timeline { display: flex; flex-direction: column; gap: 56px; }
.step-item { display: flex; gap: 48px; align-items: flex-start; }
.step-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 46px;
  font-weight: 400;
  color: var(--clay);
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
  text-align: left;
}
.step-content h3 { color: var(--teal); margin-bottom: 16px; }
.step-content ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.step-content ul li { padding-left: 20px; position: relative; font-size: 15px; color: var(--ink-soft); }
.step-content ul li::before { content: ''; position: absolute; left: 0; top: 13px; width: 8px; height: 1px; background: var(--clay); }

/* Process steps — timeline con línea-guía y números que se encienden */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 0 0 40px;
  position: relative;
  transition: transform 0.4s var(--ease-soft);
}
.process-step:last-child { padding-bottom: 0; }
/* Línea vertical que conecta los pasos, por detrás de los números */
.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 18px; top: 40px; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.18);
}
.process-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-deep);
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease,
              transform 0.45s var(--ease-soft), box-shadow 0.45s ease;
}
.process-step:hover { transform: translateX(6px); }
.process-step:hover .process-num {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--teal-deep);
  transform: scale(1.12);
  box-shadow: 0 8px 20px rgba(143,186,182,0.35);
}
.process-step h4 { color: var(--color-white); margin-bottom: 8px; transition: color 0.4s ease; }
.process-step:hover h4 { color: var(--sage); }
.process-step p { color: rgba(255,255,255,0.7); font-size: 15px; }

/* Columna derecha de plantillas: tarjeta de garantía + foto */
.plantillas-aside { display: flex; flex-direction: column; gap: 32px; }
.plantillas-photo {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 22px 50px rgba(0,0,0,0.28);
}
.plantillas-photo img {
  width: 100%; height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease-soft);
}
.plantillas-photo:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .plantillas-photo img { height: 300px; }
}

/* ¿A quién podemos ayudar? */
.quien-grid { align-items: start; }
.quien-item { padding-top: 28px; border-top: 2px solid var(--purple-mist); }
.quien-item:nth-child(even) { border-top-color: var(--teal-mist); }
.quien-item h3 { color: var(--teal); font-size: 22px; margin-bottom: 14px; }
.quien-item p { font-size: 15px; line-height: 1.8; }
.quien-cierre {
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid var(--hairline);
  max-width: 760px;
}
.quien-cierre h3 { color: var(--ink); margin-bottom: 24px; }
.quien-cierre p { margin-bottom: 20px; }
.quien-cierre-frase {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  line-height: 1.6;
  color: var(--teal);
  margin-top: 32px;
}

/* Who grid */
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.14); margin-top: 0; }
.who-card {
  background: var(--teal-deep);
  border: none;
  border-radius: 0;
  padding: 40px 20px;
  text-align: center;
  color: var(--color-white);
  transition: var(--transition);
}
.who-card:hover { background: #1A4744; }
.who-icon-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.who-card:hover .who-icon-circle { border-color: var(--sage); color: var(--sage); }
.who-icon-circle svg { width: 24px; height: 24px; }
.who-card h4 { font-size: 14px; font-weight: 400; color: var(--color-white); }

/* Guarantee banner */
.guarantee-banner {
  background: var(--teal-mist);
  border-radius: var(--border-radius);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}
.guarantee-banner::after { content: none; }
.guarantee-banner .gb-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal);
}
.guarantee-banner .gb-icon svg { width: 22px; height: 22px; }
.guarantee-banner h3 { color: var(--ink); margin-bottom: 8px; font-size: 24px; }
.guarantee-banner p { color: var(--ink-soft); font-size: 15px; }

/* ===========================
   EQUIPO (foto grande + texto)
=========================== */
.team-section { background: var(--cream); }
.team-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.team-row:last-child { margin-bottom: 0; }
.team-row.reverse .team-photo { order: 2; }
.team-row.reverse .team-text { order: 1; }
.team-photo {
  height: 520px;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--linen);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.team-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s var(--ease-soft);
}
.team-row:hover .team-photo img { transform: scale(1.04); }
.team-role {
  display: inline-block;
  color: var(--ink-mute);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 16px;
}
.team-text h3 { font-size: clamp(26px, 2.8vw, 34px); color: var(--ink); margin-bottom: 24px; }
.team-text p { color: var(--ink-soft); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }

@media (max-width: 768px) {
  .team-row, .team-row.reverse { grid-template-columns: 1fr; gap: 36px; }
  .team-row.reverse .team-photo { order: 0; }
  .team-row.reverse .team-text { order: 0; }
  .team-photo { height: 400px; }
}

/* ===========================
   SKILL BARS
=========================== */
.skill-bars { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.skill-item label {
  display: flex; justify-content: space-between;
  font-weight: 400; font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
}
.skill-track {
  height: 2px;
  background: var(--stone);
  border-radius: 0;
  overflow: hidden;
}
.skill-bar {
  height: 100%;
  width: 0;
  background: var(--teal);
  border-radius: 0;
  transition: width 1.4s ease;
}
.skill-bar.animated { width: var(--target-width); }

/* ===========================
   METHOD CARDS (VANESSA)
=========================== */
.method-cards { display: flex; flex-direction: column; gap: 1px; background: var(--hairline); }
.method-card {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  padding: 40px 36px;
  background: var(--cream);
  border-radius: 0;
}
.method-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  color: var(--clay);
  line-height: 1.1;
  flex-shrink: 0;
  width: 56px;
}
.method-card h3 { color: var(--teal); margin-bottom: 14px; }
.method-card p { color: var(--ink-soft); font-size: 16px; }

/* Pillar cards */
.pillar-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; margin-top: 64px; }
.pillar-card { text-align: center; padding: 0 16px; }
.pillar-icon {
  font-size: 34px;
  margin-bottom: 24px;
  display: block;
  opacity: 0.9;
}
.pillar-card h3 { color: var(--color-white); margin-bottom: 16px; }
.pillar-card p { color: rgba(255,255,255,0.75); font-size: 15px; }

/* ===========================
   CASOS DE ÉXITO
=========================== */
.case-card {
  background: var(--cream);
  border-radius: 0;
  padding: 56px 0;
  border-left: none;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 0;
}
.case-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--clay);
  line-height: 1;
  margin-bottom: 16px;
}
.case-title {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink); font-size: 26px; font-weight: 400; margin-bottom: 24px;
}
.case-card > p { color: var(--ink-soft); font-size: 16px; line-height: 1.85; margin-bottom: 28px; }
.case-result {
  background: var(--sand);
  border-radius: var(--border-radius);
  padding: 32px 36px;
  margin-bottom: 32px;
}
.case-result h4 { color: var(--ink-mute); margin-bottom: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; font-weight: 400; }
.case-result p { color: var(--ink-soft); font-size: 16px; }
.case-quote {
  position: relative;
  padding-left: 28px;
  border-left: 1px solid var(--clay);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-style: normal;
  color: var(--ink);
  line-height: 1.65;
}
.case-quote::before { content: none; }

/* ===========================
   FAQ ACCORDION
=========================== */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  position: relative;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item::before { content: none; }
.faq-item:hover { box-shadow: none; }
.faq-item.open { box-shadow: none; }
.faq-question {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 30px 4px;
  cursor: pointer;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.35s ease;
}
.faq-question:hover { color: var(--teal); }
.faq-item.open .faq-question { color: var(--teal); }
.faq-text { flex: 1; }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: transparent;
  color: var(--ink-mute);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.4s ease, color 0.35s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(135deg); background: transparent; color: var(--teal); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-answer-inner {
  padding: 0 60px 32px 4px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ===========================
   BLOG
=========================== */
.blog-filters { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 64px; }
.filter-btn {
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--ink-mute);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: transparent;
  color: var(--ink);
  border-bottom-color: var(--teal);
}
.blog-card { position: relative; }
.blog-card-img {
  width: 100%;
  height: 260px;
  background: var(--linen);
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  position: relative;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-soft); }
.blog-card-wrap:hover .blog-card-img img { transform: scale(1.05); }
.blog-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 1;
}
.blog-card .card-body { border-radius: 0; }
.blog-card h3 { font-size: 22px; color: var(--ink); margin-bottom: 12px; transition: var(--transition); }
.blog-card:hover h3 { color: var(--teal); }
.blog-card p { font-size: 15px; color: var(--ink-soft); margin-bottom: 24px; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--ink-mute); letter-spacing: 0.06em; }
.blog-card-meta a { color: var(--teal); transition: var(--transition); }
.blog-card-meta a:hover { color: var(--teal-deep); }

/* ===========================
   CONTACT
=========================== */
.contact-form {
  background: var(--sand);
  border-radius: var(--border-radius);
  padding: 56px 48px;
}
.form-group { margin-bottom: 28px; }
.form-group label { display: block; font-weight: 400; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--stone);
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--teal);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-checkbox { display: flex; gap: 12px; align-items: flex-start; }
.form-checkbox input { width: auto; margin-top: 6px; flex-shrink: 0; }
.form-checkbox label { font-size: 13px; color: var(--ink-mute); font-weight: 300; letter-spacing: 0; text-transform: none; }

.contact-info { padding-left: 0; }
.contact-info h3 { color: var(--ink); margin-bottom: 36px; }
.info-item { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
.info-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--stone);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.info-item h4 { font-size: 15px; margin-bottom: 6px; }
.info-item p { font-size: 15px; color: var(--ink-soft); }
.info-item a { color: var(--teal); transition: var(--transition); }
.info-item a:hover { color: var(--teal-deep); }
.map-placeholder {
  margin-top: 48px;
  height: 280px;
  border-radius: var(--border-radius);
  background: var(--linen);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  border: none;
  overflow: hidden;
  filter: saturate(0.75);
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* Redes en la página de contacto */
.contact-rrss { display: flex; gap: 12px; }
.contact-rrss a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--stone);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  font-size: 11px; letter-spacing: 0.06em;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease-soft);
}
.contact-rrss a:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: var(--linen);
  padding: 120px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--ink); margin-bottom: 20px; }
.cta-banner p { color: var(--ink-soft); margin: 0 auto 44px; font-size: 18px; }

/* ===========================
   SALUD SERVICES CARDS
=========================== */
.salud-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--border-radius);
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 6px 22px rgba(43,42,40,0.05);
  transition: var(--transition), transform 0.45s var(--ease-soft), box-shadow 0.45s ease;
}
.salud-card::before { content: none; }
.salud-card:hover {
  border-color: var(--clay);
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.salud-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: transparent;
  color: var(--ink-mute);
  font-size: 10px;
  font-weight: 400;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.salud-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent;
  border: 1px solid var(--stone);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 28px;
}
.salud-icon svg { width: 20px; height: 20px; }
.salud-card h3 { color: var(--teal); margin-bottom: 16px; }
.salud-card p {
  color: var(--ink-soft); font-size: 15px; line-height: 1.8;
  opacity: 1; max-height: none; overflow: visible;
  margin-top: 0;
}
.salud-card:hover p { opacity: 1; max-height: none; margin-top: 0; }

/* ===========================
   VANESSA PAGE — PROFILE
=========================== */
.profile-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: none;
}
.profile-image img { width: 100%; height: 560px; object-fit: cover; }
.profile-image-ph {
  width: 100%;
  height: 560px;
  background: var(--linen);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--ink-mute);
}
.profile-image-ph .ph-icon { font-size: 56px; margin-bottom: 16px; }
.profile-rrss { display: flex; gap: 14px; margin: 24px 0; }
.profile-rrss a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--stone);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  font-size: 12px;
  transition: var(--transition);
}
.profile-rrss a:hover { border-color: var(--teal); color: var(--teal); background: transparent; }
.profile-divider { height: 1px; background: var(--hairline); border-radius: 0; margin: 32px 0; }
.profile-bio { color: var(--ink-soft); line-height: 1.9; margin-bottom: 32px; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1240px) {
  /* Con el logotipo a tamaño grande, el menú completo no cabe: pasa a desplegable */
  .hamburger { display: flex; }
  .header-nav { position: relative; }
  .header-nav .container { flex-wrap: wrap; }
  .nav-cta { display: none; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 8px 32px 24px;
    border-bottom: 1px solid var(--hairline);
    gap: 0;
    z-index: 10;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 16px 0; border-bottom: 1px solid var(--hairline); }
  .nav-menu a.active::after { display: none; }
}

@media (max-width: 1024px) {
  :root { --section-padding: 100px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-panel.active { grid-template-columns: 1fr; gap: 40px; }
  .tab-panel-img { height: 320px; }
  .pillar-cards { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { gap: 48px; }
}

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

  .header-topbar { display: none; }
  .container { padding: 0 24px; }

  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 8px 24px 24px;
    border-bottom: 1px solid var(--hairline);
    gap: 0;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 16px 0; border-bottom: 1px solid var(--hairline); }
  .nav-menu a.active::after { display: none; }
  .nav-cta { display: none; }
  .header-nav { position: relative; }
  .header-nav .container { flex-wrap: wrap; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 40px; }
  .treatment-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }

  .hero-home .container { grid-template-columns: 1fr; }
  .hero-image { display: none; }

  .testimonials-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-right { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-info { padding-left: 0; margin-top: 48px; }
  .contact-form { padding: 40px 28px; }

  .tab-panel.active { grid-template-columns: 1fr; }

  .pillar-cards { grid-template-columns: 1fr; gap: 40px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }

  .step-item { flex-direction: column; gap: 12px; }
  .step-number { font-size: 40px; width: auto; }

  .method-card { flex-direction: column; gap: 12px; padding: 32px 24px; }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
}
