/* ===========================================================
   LUISANA CAMACHO — luisanacamacho.com
   =========================================================== */

:root {
  --wine: #54020e;
  --wine-dark: #3a010a;
  --cream: #faf7f3;
  --cream-2: #f2ece5;
  --tan: #d3cfcc;
  --text: #2a2422;
  --text-soft: #6b615c;
  --white: #ffffff;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Montserrat', 'Avenir Next', 'Avenir', sans-serif;

  --container: 1180px;

  --footer-bg: #54020e;
  --footer-accent: #c98a56;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

.center { text-align: center; }

/* ---------- Reusable text styles ---------- */

.overline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 0.6rem;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.6rem;
  margin: 0 0 1.4rem;
  color: var(--text);
}

.about-intro-title { font-size: 2.9rem; }

.subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  margin: 0 0 1rem;
  color: var(--wine);
}

.subheading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 1.8rem 0 0.8rem;
  color: var(--text);
}

.placeholder-text {
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 3rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-light {
  background: var(--white);
  color: var(--wine);
}
.btn-light:hover { background: var(--cream-2); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }

.btn-outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn-outline:hover { background: var(--wine); color: var(--white); }

.btn-solid {
  background: var(--wine);
  color: var(--white);
}
.btn-solid:hover { background: var(--wine-dark); }

/* ---------- Image placeholder (swap for <img> once photos arrive) ---------- */

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  background: repeating-linear-gradient(
    135deg, #e4dcd4, #e4dcd4 10px, #ece5de 10px, #ece5de 20px
  );
  border: 1px dashed #b9ab9d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #8a7c70;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem;
}
.img-placeholder::before { content: attr(data-label); }

/* ===========================================================
   HEADER
   =========================================================== */

.site-header {
  background: var(--cream);
  padding: 1.4rem 1.5rem 0;
  position: relative;
}

.site-header--transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(20, 14, 12, 0.55) 0%, rgba(20, 14, 12, 0.15) 75%, rgba(20, 14, 12, 0) 100%);
}
.site-header--transparent .brand a { color: var(--white); }
.site-header--transparent .social-icons a { color: var(--white); }
.site-header--transparent .contact-btn { background: var(--white); color: var(--wine); }
.site-header--transparent .contact-btn:hover { background: var(--cream-2); }
.site-header--transparent .main-nav a { color: var(--white); }
.site-header--transparent .main-nav .sep { color: rgba(255, 255, 255, 0.45); }
.site-header--transparent .main-nav { border-bottom-color: rgba(255, 255, 255, 0.25); }
.site-header--transparent .menu-toggle span { background: var(--white); }
.site-header--transparent .nav-dropdown-panel a { color: var(--text); }
.site-header--transparent .nav-dropdown-panel a:hover { color: var(--wine); }
.site-header--transparent .main-nav.open {
  background: var(--wine-dark);
  padding: 1.2rem 1.5rem 1.6rem;
  margin: 0.5rem -1.5rem 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.topbar-left .brand { margin: 0; text-align: left; }

.topbar .brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  text-align: center;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.social-icons a {
  color: var(--wine);
  width: 18px;
  height: 18px;
  display: flex;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.social-icons a:hover { opacity: 1; }
.social-icons svg { width: 100%; height: 100%; }

/* ---------- SELECTOR DE IDIOMA ---------- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 1.4rem;
}
.lang-toggle-btn {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  background: transparent;
  border: 1px solid #d9cfc4;
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.lang-toggle-btn.is-active {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.site-header--transparent .lang-toggle-btn { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.site-header--transparent .lang-toggle-btn.is-active { background: var(--white); color: var(--wine); border-color: var(--white); }

.contact-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--wine);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.contact-btn:hover { background: var(--wine-dark); }
.phone-icon { width: 13px; height: 13px; flex-shrink: 0; }

.menu-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--wine);
  display: block;
}

.brand {
  text-align: center;
  margin: 1.6rem 0 1.1rem;
}
.brand a {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.7rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.main-nav {
  max-width: var(--container);
  margin: 0.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid #e6ddd3;
}
.main-nav a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  padding: 0.3rem 0.2rem;
  transition: opacity 0.2s ease;
}
.main-nav a:hover { opacity: 0.65; }
.main-nav .sep { color: #c9b9ab; font-family: var(--font-serif); }

/* --- dropdown "Servicios" --- */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-block; }
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  padding-top: 1rem;
  background: transparent;
  z-index: 20;
  width: max-content;
}
.nav-dropdown-panel-inner {
  background: var(--white);
  border: 1px solid #e6ddd3;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(42,36,34,0.12);
  padding: 1.6rem;
  display: flex;
  gap: 2rem;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  display: block;
}
.nav-dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 170px;
}
.nav-dropdown-heading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.2rem;
}
.nav-dropdown-group a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text);
  padding: 0.15rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.nav-dropdown-group a:hover { color: var(--wine); opacity: 1; }
.nav-dropdown-group .arrow { opacity: 0.5; font-family: var(--font-sans); }
.nav-dropdown-btn {
  margin-top: 0.2rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.68rem;
  align-self: flex-start;
}

/* ===========================================================
   HERO
   =========================================================== */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img,
.hero-media .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,36,34,0.35) 0%, rgba(42,36,34,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  margin-top: 4rem;
  max-width: 760px;
}

.hero-content .overline {
  color: var(--white);
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 3.4rem;
  line-height: 1.15;
  margin: 0.4rem 0 1.8rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===========================================================
   TICKER
   =========================================================== */

.ticker {
  background: var(--wine);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track span {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding-right: 0;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================================================
   SOBRE MI — RESUMEN
   =========================================================== */

.about-intro {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem 1.5rem 3.5rem;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-intro-photo img,
.about-intro-photo .img-placeholder {
  width: 100%;
  min-height: 420px;
  max-height: 520px;
  object-fit: cover;
  border-radius: 2px;
}
.about-summary {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 2rem;
}

/* ===========================================================
   SOBRE MI — COMPLETO (colapsable)
   =========================================================== */

.about-full {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about-detail:not([hidden]) { padding: 1rem 0 5rem; }

.about-text {
  max-width: 780px;
  margin: 0 auto;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 1.1rem;
}
.closing-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--wine);
  margin-top: 1.5rem;
}
.about-collapse-btn { display: block; margin: 3rem auto 0; }

/* ===========================================================
   OSTEOPATÍA / FISIOTERAPIA — fotos apiladas con reveal-on-scroll
   =========================================================== */

.service-reveal-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.service-reveal-grid.reveal-photos-right { grid-template-columns: 1.15fr 0.85fr; }

#atm .service-reveal-grid { align-items: center; }

#quien-soy-yo .service-reveal-photos img {
  min-height: 0;
  max-height: none;
  height: auto;
  object-fit: contain;
}

.service-reveal-photos {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.service-reveal-photos img,
.service-reveal-photos video {
  width: 100%;
  min-height: 260px;
  max-height: 340px;
  object-fit: cover;
  border-radius: 2px;
}

.reveal-img {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-img.is-visible { opacity: 1; transform: translateY(0); }
.reveal-img:nth-child(2) { transition-delay: 0.06s; }
.reveal-img:nth-child(3) { transition-delay: 0.12s; }
.reveal-img:nth-child(4) { transition-delay: 0.18s; }
.reveal-img:nth-child(5) { transition-delay: 0.24s; }
.reveal-img:nth-child(6) { transition-delay: 0.3s; }
.reveal-img:nth-child(7) { transition-delay: 0.36s; }

.reveal-item {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-item.is-visible { opacity: 1; transform: translateX(0); }
.reveal-item:nth-child(2) { transition-delay: 0.08s; }
.reveal-item:nth-child(3) { transition-delay: 0.16s; }
.reveal-item:nth-child(4) { transition-delay: 0.24s; }
.reveal-item:nth-child(5) { transition-delay: 0.32s; }
.reveal-item:nth-child(6) { transition-delay: 0.4s; }
.reveal-item:nth-child(7) { transition-delay: 0.48s; }
.reveal-item:nth-child(8) { transition-delay: 0.56s; }

.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-card.is-visible { opacity: 1; transform: translateY(0); }
.reveal-card:nth-child(2) { transition-delay: 0.1s; }
.reveal-card:nth-child(3) { transition-delay: 0.2s; }

/* ===========================================================
   SERVICIOS — páginas de detalle
   =========================================================== */

.service-detail {
  padding: 5.5rem 1.5rem;
}
.service-detail.alt { background: var(--cream-2); }

.service-reveal-photos img.photo-small { min-height: 160px; max-height: 200px; }
.service-reveal-photos img.photo-featured,
.service-reveal-photos video.photo-featured { min-height: 240px; max-height: 300px; }

.service-photo-gallery {
  max-width: var(--container);
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-photo-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
}
.service-detail-text { max-width: 780px; margin: 0 auto; }
.service-detail-text.center-narrow .overline,
.service-detail-text.center-narrow .section-title { text-align: center; }
.service-detail-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 1.1rem;
}
.service-detail-text .subtitle { margin-top: 0.3rem; }

.service-list {
  margin: 1.2rem 0 1.6rem;
}
.service-list li {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px solid #e6ddd3;
}
.service-list li:first-child { padding-top: 0; }
.service-list li strong { color: var(--wine); }

.service-list-arrows li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.service-list-arrows li .arrow {
  flex-shrink: 0;
  font-family: var(--font-sans);
  color: var(--wine);
  font-size: 1rem;
}

.service-tags-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 1.8rem;
}
.service-tag {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--wine);
  border-radius: 4px;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--white);
}
.service-tag .arrow { color: var(--white); opacity: 0.75; flex-shrink: 0; }

.tag-list {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  line-height: 1.9;
}

/* ===========================================================
   SALUD FEMENINA — audiencias, video, CTAs
   =========================================================== */

.audience-video-grid {
  max-width: var(--container);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}
.audience-stack {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.audience-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.4rem;
  scroll-margin-top: 2rem;
}
.audience-card .subtitle { margin: 0 0 0.4rem; }

.video-wrap {
  max-width: 780px;
  margin: 4rem auto 0;
}
.video-wrap video {
  width: 100%;
  border-radius: 4px;
  display: block;
}
.video-wrap-compact {
  max-width: none;
  margin: 0;
  position: sticky;
  top: 2rem;
}

.sf-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.sf-cta-left { justify-content: flex-start; margin-top: 2rem; }

.reviews-cta { text-align: center; margin-top: 2.5rem; }

.youtube-grid {
  max-width: var(--container);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.youtube-card { display: block; }
.youtube-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-2);
}
.youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.youtube-card:hover .youtube-thumb img { transform: scale(1.05); }
.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(20,16,14,0.55);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding-left: 3px;
  transition: background 0.2s ease;
}
.youtube-card:hover .youtube-play { background: var(--wine); }
.youtube-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0.9rem 0 0;
}
.youtube-card:hover .youtube-title { color: var(--wine); }

.formacion {
  margin-top: 4.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid #e6ddd3;
}
.formacion-list {
  max-width: 820px;
  margin: 2rem auto 0;
  column-count: 2;
  column-gap: 2.5rem;
}
.formacion-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  break-inside: avoid;
}
.formacion-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--wine);
  border-radius: 50%;
}

.experiencia {
  margin-top: 3.5rem;
}
.experience-list {
  max-width: 780px;
  margin: 2rem auto 0;
  column-count: 2;
  column-gap: 2.5rem;
}
.experience-item {
  display: flex;
  flex-direction: column;
  padding-left: 1.1rem;
  border-left: 2px solid #e6ddd3;
  margin-bottom: 1.5rem;
  break-inside: avoid;
}
.experience-company {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--wine);
  letter-spacing: 0.01em;
}
.experience-role {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}
.experience-location {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
}

.treatments-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 5.5rem;
}
.treatments-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.treatments-photo img,
.treatments-photo .img-placeholder {
  width: 100%;
  min-height: 420px;
  max-height: 520px;
  object-fit: cover;
  border-radius: 2px;
}
.treatments-list {
  margin: 1.2rem 0 2rem;
}
.treatments-list li {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--wine);
  padding: 0.55rem 0;
  border-bottom: 1px solid #e6ddd3;
}
.treatments-list li:first-child { padding-top: 0; }

.treatments-list-links li { padding: 0; border-bottom: 1px solid #e6ddd3; }
.treatments-list-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.treatments-list-links a:hover { color: var(--wine-dark); padding-left: 0.4rem; }
.treatments-list-links .arrow { font-family: var(--font-sans); font-size: 1rem; opacity: 0.6; }

/* ===========================================================
   MI ENFOQUE
   =========================================================== */

.approach {
  background: var(--wine);
  padding: 5.5rem 1.5rem;
}
.approach-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.overline.light { color: var(--tan); }
.approach-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--white);
  margin: 0.4rem 0 1.6rem;
}
.approach-text {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0;
}

/* ===========================================================
   SALUD FEMENINA (teaser en home)
   =========================================================== */

.sf-teaser {
  padding: 5.5rem 1.5rem;
}
.sf-teaser-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.sf-teaser-text p { font-size: 1.02rem; line-height: 1.85; color: var(--text-soft); margin: 0 0 1.8rem; }
.sf-teaser-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.sf-teaser-photo .img-placeholder,
.sf-teaser-photo img {
  width: 100%;
  min-height: 420px;
  max-height: 520px;
  object-fit: cover;
  border-radius: 2px;
}

/* ===========================================================
   TRES AREAS DE TRABAJO
   =========================================================== */

.pillars {
  background: var(--tan);
  padding: 5.5rem 1.5rem;
}
.pillars-intro { margin-top: -0.5rem; }
.pillars-grid {
  max-width: var(--container);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  text-align: center;
}
.pillar-photo { width: 100%; height: 200px; }
.pillar-photo img,
.pillar-photo .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pillar-card > .pillar-num,
.pillar-card > .subheading,
.pillar-card > p,
.pillar-card > .pillar-link {
  margin-left: 2rem;
  margin-right: 2rem;
}
.pillar-card > .pillar-num { margin-top: 1.8rem; display: block; }
.pillar-card > .pillar-link { margin-bottom: 2rem; display: inline-block; }
.pillar-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--wine);
  opacity: 0.5;
}
.pillar-card .subheading { margin: 0.4rem 0 0.8rem; }
.pillar-card p { color: var(--text-soft); line-height: 1.7; font-size: 0.95rem; margin: 0 0 1.2rem; }
.pillar-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wine);
  border-bottom: 1px solid var(--wine);
  padding-bottom: 2px;
}
.pillar-link:hover { opacity: 0.7; }

/* ===========================================================
   SERVICIOS - grid de tarjetas
   =========================================================== */

.services-page-intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 1rem;
}
.brand-wordmark {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--wine);
  margin: 0 0 1.4rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.brand-wordmark:hover { opacity: 1; }
.brand-wordmark .word { display: inline-block; margin-right: 0.7em; }
.brand-wordmark .word:last-child { margin-right: 0; }
.services-grid {
  max-width: var(--container);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.services-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
.service-card {
  background: var(--white);
  border: 1px solid #e6ddd3;
  border-radius: 2px;
  padding: 1.8rem 1.3rem;
  text-align: center;
  scroll-margin-top: 2rem;
}
.service-card .subheading { margin: 0 0 0.4rem; font-size: 1.15rem; }
.service-card p { color: var(--text-soft); font-size: 0.85rem; margin: 0; }

/* ===========================================================
   RESEÑAS
   =========================================================== */

.reviews {
  padding: 5.5rem 1.5rem;
}

.reviews-widget {
  max-width: var(--container);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

/* --- panel de perfil --- */
.reviews-summary { text-align: left; }
.reviews-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
}
.reviews-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviews-business-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 0 0.6rem;
  line-height: 1.35;
}
.reviews-summary .stars { display: block; margin-bottom: 0.4rem; }
.reviews-count {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin: 0 0 1.4rem;
}
.reviews-write-btn { display: inline-block; margin-bottom: 1.2rem; }
.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-soft);
}
.reviews-google-link:hover { color: var(--wine); }
.google-g { width: 16px; height: 16px; flex-shrink: 0; }

/* --- carrusel --- */
.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}
.reviews-arrow {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e6ddd3;
  background: var(--white);
  color: var(--wine);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.reviews-arrow:hover { background: var(--cream-2); }

.reviews-scroll {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
}
.review-card {
  flex: 0 0 290px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid #e9e2d9;
  border-radius: 8px;
  padding: 1.4rem;
}
.review-card.placeholder-card {
  background: var(--cream-2);
  border: 1px dashed #b9ab9d;
}
.review-card-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card-id { flex-grow: 1; min-width: 0; display: flex; flex-direction: column; }
.review-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-time { font-size: 0.72rem; color: var(--text-soft); }
.review-card-g { width: 16px; height: 16px; flex-shrink: 0; }

.stars { color: #f5b400; letter-spacing: 0.1em; margin-bottom: 0.6rem; font-size: 0.9rem; }
.review-card p {
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===========================================================
   PROGRAMAS DE MOVIMIENTO — carrusel de guías (Hotmart)
   =========================================================== */

.guides-carousel {
  max-width: var(--container);
  margin: 3.5rem auto 0;
  padding: 0 1.5rem;
}
.guides-prev,
.guides-next { display: none; }
.guides-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.guide-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
}
.guide-card.placeholder-card {
  background: var(--cream-2);
  border: 1px dashed #b9ab9d;
}
.guide-cover { margin-bottom: 1rem; }
.guide-cover img,
.guide-cover .img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}
.guide-card .subheading { margin: 0 0 0.4rem; font-size: 1.1rem; }
.guide-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 1rem;
  flex-grow: 1;
}
.guide-buy { align-self: flex-start; font-size: 0.7rem; padding: 0.7rem 1.4rem; }
.guide-buy[aria-disabled="true"] { opacity: 0.55; cursor: default; pointer-events: none; }

/* ===========================================================
   ARTICULOS - tarjetas
   =========================================================== */

.articles-grid {
  max-width: var(--container);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.article-card {
  background: var(--white);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}
.article-badge {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
  background: var(--tan);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}
.article-card .subheading { margin: 0; font-size: 1.25rem; flex-grow: 1; }
.article-link[aria-disabled="true"] { opacity: 0.55; cursor: default; pointer-events: none; }

/* ===========================================================
   CONTACTO
   =========================================================== */

.contact-section {
  padding: 3.5rem 1.5rem;
}
.contact-bar {
  max-width: var(--container);
  margin: 0 auto;
  background: var(--wine);
  border-radius: 4px;
  padding: 2.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.contact-bar-heading .overline { margin-bottom: 0.3rem; }
.contact-bar-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  color: var(--white);
  margin: 0;
}
.contact-grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.contact-label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
}
.contact-item a {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  word-break: break-word;
}
.contact-item a:hover { opacity: 0.75; }

/* ===========================================================
   SECTION PLACEHOLDERS (Servicios / Medicina / Salud / Articulos)
   =========================================================== */

.section-placeholder {
  padding: 5.5rem 1.5rem;
}
.section-placeholder.alt { background: var(--cream-2); }

.legal-page {
  max-width: 760px;
  margin: 0 auto;
}
.legal-page h2.section-title { margin-bottom: 0.4rem; }
.legal-page .legal-updated { color: var(--text-soft); font-size: 0.85rem; margin: 0 0 2.5rem; }
.legal-page .legal-notice {
  background: var(--cream-2);
  border: 1px solid #e6ddd3;
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 2.5rem;
}
.legal-page h3.subheading { margin-top: 2.4rem; margin-bottom: 0.7rem; }
.legal-page p { line-height: 1.7; margin-bottom: 1.1rem; }
.legal-page ul { padding-left: 1.3rem; margin-bottom: 1.1rem; }
.legal-page li { line-height: 1.7; margin-bottom: 0.4rem; }
.legal-page a { color: var(--wine); text-decoration: underline; }

.contact-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.contact-left .overline,
.contact-left .section-title { text-align: left; }

.contact-photo {
  border-radius: 12px;
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
}
.contact-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.contact-photo .img-placeholder { height: 100%; border-radius: 12px; }

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--cream-2);
  border: 1px solid #e6ddd3;
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-option:hover { background: var(--white); border-color: var(--wine); }
.contact-option-icon {
  width: 42px;
  height: 42px;
  background: var(--wine);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-option-icon svg { width: 20px; height: 20px; }
.contact-option-text { display: flex; flex-direction: column; min-width: 0; }
.contact-option-title { font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem; color: var(--text); }
.contact-option-sub {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===========================================================
   FOOTER
   =========================================================== */

.site-footer {
  background: var(--footer-bg);
  color: var(--white);
  width: 100%;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-col-brand { display: flex; flex-direction: column; gap: 0.9rem; }
.site-footer .brand { margin: 0; text-align: left; }
.site-footer .brand a { color: var(--white); font-size: 1.6rem; }
.footer-role {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-col { display: flex; flex-direction: column; }
.footer-col-heading {
  display: block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--footer-accent);
  margin-bottom: 1rem;
}
.footer-col a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--white); }

.site-footer .social-icons { margin: 0.2rem 0 0; gap: 0.6rem; }
.site-footer .social-icons a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--white);
  padding: 8px;
  box-sizing: border-box;
  transition: background 0.2s ease;
}
.site-footer .social-icons a:hover { background: rgba(255, 255, 255, 0.16); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.copyright {
  font-size: 0.75rem;
  opacity: 0.6;
  letter-spacing: 0.02em;
  margin: 0;
}
.footer-legal { display: flex; gap: 0.4rem 1.2rem; flex-wrap: wrap; }
.footer-legal a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-legal a:hover { color: var(--white); }

/* ===========================================================
   WIDGET FLOTANTE DE WHATSAPP
   =========================================================== */

.wa-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.wa-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.wa-button:hover { transform: scale(1.06); }
.wa-button svg { width: 30px; height: 30px; }

.wa-teaser {
  width: 280px;
  max-width: calc(100vw - 3rem);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  padding: 1.1rem 1.2rem 1.2rem;
  position: relative;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.wa-teaser.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.wa-teaser-close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--text-soft);
  cursor: pointer;
  padding: 0.2rem;
}
.wa-teaser-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  padding-right: 1rem;
}
.wa-teaser-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.wa-teaser-id { display: flex; flex-direction: column; min-width: 0; }
.wa-teaser-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}
.wa-teaser-role { font-family: var(--font-sans); font-size: 0.68rem; color: var(--text-soft); }
.wa-teaser-text { font-size: 0.85rem; color: var(--text); line-height: 1.5; margin: 0 0 1rem; }
.wa-teaser-btn {
  display: block;
  text-align: center;
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border-radius: 999px;
}
.wa-teaser-btn:hover { background: var(--wine-dark); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media (max-width: 900px) {
  .about-intro-grid,
  .treatments-grid,
  .service-reveal-grid,
  .service-reveal-grid.reveal-photos-right,
  .sf-teaser-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-photo { order: -1; max-width: 280px; }
  .contact-left .overline,
  .contact-left .section-title,
  .contact-left .placeholder-text { text-align: center; }
  .about-intro-grid { gap: 2rem; }
  .about-intro-photo { order: -1; }
  .sf-teaser-photo { order: -1; }
  .sf-teaser-photo .img-placeholder,
  .sf-teaser-photo img { min-height: 300px; }
  .service-photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .service-photo-gallery img { height: 160px; }
  .service-reveal-photos { flex-direction: row; flex-wrap: wrap; }
  .service-reveal-photos img,
  .service-reveal-photos video { min-height: 160px; max-height: 200px; flex: 1 1 45%; }

  .formacion-list { column-count: 1; }
  .experience-list { column-count: 1; }
  .hero-title { font-size: 2.5rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-video-grid { grid-template-columns: 1fr; }
  .service-tags-grid { grid-template-columns: 1fr; }
  .youtube-grid { grid-template-columns: 1fr; }
  .video-wrap-compact { position: static; order: -1; }
  .articles-grid { grid-template-columns: 1fr; }
  .guides-scroll { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .approach-title { font-size: 2.2rem; }
  .reviews-widget { grid-template-columns: 1fr; }
  .reviews-summary { text-align: center; }
  .reviews-avatar { margin-left: auto; margin-right: auto; }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 0.9rem;
    padding-top: 0.5rem;
  }
  .main-nav.open { display: flex; }
  .main-nav .sep { display: none; }
  .menu-toggle { display: flex; }
  .contact-btn span { display: none; }
  .contact-btn { padding: 0.65rem; }
  .phone-icon { width: 15px; height: 15px; }
  .brand a { font-size: 2.1rem; }
  .topbar-left { gap: 0.9rem; }
  .topbar { padding-right: 3.2rem; }
  .hero { min-height: 560px; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .guides-scroll { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .reviews-scroll { padding-left: 1.5rem; margin-left: -1.5rem; margin-right: -1.5rem; padding-right: 1.5rem; }

  .wa-widget { right: 1rem; bottom: 1rem; }
  .wa-button { width: 50px; height: 50px; }
  .wa-button svg { width: 26px; height: 26px; }

  .nav-dropdown { text-align: center; }
  .nav-dropdown-panel {
    display: block;
    position: static;
    transform: none;
    padding-top: 0;
    margin: 0.8rem 0 0;
    width: auto;
  }
  .nav-dropdown-panel-inner {
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }
  .nav-dropdown-group { align-items: center; }
  .nav-dropdown-group a { justify-content: center; gap: 0.4rem; }
  .nav-dropdown-btn { align-self: center; }

  .site-header--transparent .nav-dropdown-group a { color: var(--white); }
  .site-header--transparent .nav-dropdown-group a:hover { color: var(--white); opacity: .7; }
  .site-header--transparent .nav-dropdown-heading { color: rgba(255, 255, 255, 0.55); }
}
