/* ============================================================
   somaticamente · HOJA DE ESTILOS (styles.css)
   ------------------------------------------------------------
   Estructura:
     1.  Variables (colores, tipografías, espaciados, radios, sombras)
     2.  Reset y base
     3.  Utilidades de layout (contenedores y secciones)
     4.  Cabecera y navegación
     5.  Tipografía (títulos, etiquetas, textos)
     6.  Botones
     7.  Hero (cabecera de cada página)
     8.  Imágenes y placeholders
     9.  Home (tarjetas de servicios, CTA verde)
     10. Servicios (detalle, precios, paquete)
     11. El enfoque (pilares)
     12. Sobre mí (acreditaciones)
     13. FAQ (acordeón)
     14. Contacto (formulario y calendario)
     15. Pie de página
     16. Responsive (móvil / tablet)
   ============================================================ */

/* ============ 1. VARIABLES ============ */
:root {
  /* Tipografías */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Colores · tinta y textos */
  --ink: #3b382f;
  --ink-strong: #2f2c25;
  --ink-soft: #46423a;
  --text: #55504a;
  --text-2: #5a554a;
  --text-3: #6b665a;
  --muted: #857f70;
  --muted-2: #9a9486;
  --nav-idle: #5f5a4f;

  /* Colores · verdes */
  --green: #5e6b50;
  --green-dark: #4a5640;
  --green-deep: #3c4a35;
  --green-block: #5a6b44;
  --sage: #7a8a64;

  /* Colores · superficies cálidas */
  --card: #fcf8ef;
  --card-border: #e8ddc8;
  --cream: #f7f1e6;
  --cream-border: #e3d6bf;
  --line: #ece1cf;
  --hairline: #e6dac4;
  --input-border: #ddcfb6;

  /* Colores · sobre fondo verde */
  --on-green: #f7f1e6;
  --on-green-soft: #eef0e6;
  --on-green-text: #e9efdf;
  --on-green-label: #dfe7cf;

  /* Radios */
  --r-pill: 999px;
  --r-sm: 11px;
  --r-md: 18px;
  --r-card: 26px;
  --r-lg: 34px;
  --r-xl: 48px;

  /* Sombras */
  --shadow-card: 0 8px 26px rgba(95, 82, 55, .05);
  --shadow-hover: 0 22px 48px rgba(95, 82, 55, .13);

  /* Espaciados / medidas reutilizadas */
  --pad-x: clamp(18px, 5vw, 40px);

  /* Transiciones */
  --t-fast: color .3s ease;
  --t-soft: background-color .35s ease, border-color .35s ease, color .3s ease,
            box-shadow .45s cubic-bezier(.22, .61, .36, 1),
            transform .45s cubic-bezier(.22, .61, .36, 1);

  /* Degradado de cabecera (compartido por todas las páginas) */
  --grad-hero:
    radial-gradient(820px 440px at 85% 6%, rgba(146, 166, 124, .20) 0%, rgba(146, 166, 124, 0) 60%),
    radial-gradient(680px 420px at 8% 96%, rgba(176, 160, 132, .14) 0%, rgba(176, 160, 132, 0) 62%),
    linear-gradient(180deg, #eee6d1 0%, #e7ddc6 56%, #ece3cf 100%);

  /* Degradado de fondo general de la página */
  --grad-page:
    radial-gradient(1200px 620px at 78% -6%, #f8f2e6 0%, rgba(248, 242, 230, 0) 56%),
    linear-gradient(180deg, #f6efe2 0%, #f1e8d8 100%);
}

/* ============ 2. RESET Y BASE ============ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  line-height: 1.62;
  background: var(--grad-page);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: #cdd6c1; }

a, button { transition: var(--t-soft); }

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

/* Textura cálida muy sutil sobre toda la página */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

/* La cabecera, el contenido y el pie van por encima de la textura */
.site-header, main, .site-footer { position: relative; z-index: 2; }

@keyframes floatUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============ 3. UTILIDADES DE LAYOUT ============ */
/* Contenedor centrado: el ancho máximo se fija con un modificador */
.wrap { width: 100%; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.wrap--720  { max-width: 720px; }
.wrap--740  { max-width: 740px; }
.wrap--760  { max-width: 760px; }
.wrap--880  { max-width: 880px; }
.wrap--900  { max-width: 900px; }
.wrap--1080 { max-width: 1080px; }
.wrap--1100 { max-width: 1100px; }
.wrap--1140 { max-width: 1140px; }
.wrap--1200 { max-width: 1200px; }

.section { padding-top: clamp(34px, 5vw, 60px); padding-bottom: clamp(34px, 5vw, 60px); }
.section--tight { padding-top: clamp(26px, 3.5vw, 40px); padding-bottom: clamp(10px, 1.5vw, 16px); }
.center { text-align: center; }

/* Cada "página" del sitio (se muestran/ocultan con JavaScript) */
.page { display: none; animation: fadeIn .25s ease; }
.page.is-active { display: block; }

/* ============ 4. CABECERA Y NAVEGACIÓN ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 241, 230, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__logo { height: 44px; width: auto; flex: none; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 600;
  color: var(--ink-strong);
  letter-spacing: .005em;
}
.wordmark__soft { font-style: italic; font-weight: 500; color: var(--green); }

.nav__desktop { display: flex; align-items: center; gap: 22px; }
.nav__link {
  text-decoration: none;
  color: var(--nav-idle);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .01em;
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
}
.nav__link:hover { color: var(--ink-strong); }
.nav__link.is-active { color: var(--ink-strong); font-weight: 700; border-bottom-color: var(--green); }

.lang {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: none;
  padding-left: 14px;
  border-left: 1px solid #e0d4bd;
}
.lang__sep { color: #c4b79e; font-size: 11px; }
.lang__btn {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 11.5px;
  letter-spacing: .06em;
  padding: 2px 1px;
  color: #a99e88;
  font-weight: 500;
}
.lang__btn:hover { color: var(--ink-strong); }
.lang__btn.is-active { color: var(--green); font-weight: 700; }

/* Botón hamburguesa (móvil) */
.hamburger {
  display: none;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink-strong); display: block; border-radius: 2px; }

/* Menú desplegable móvil */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--hairline);
  padding: 12px var(--pad-x) 24px;
  flex-direction: column;
  gap: 4px;
  animation: fadeIn .2s ease;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__link {
  text-decoration: none;
  color: var(--ink-strong);
  font-size: 18px;
  font-family: var(--font-serif);
  font-weight: 600;
  padding: 9px 0;
  border-bottom: 1px solid #efe5d3;
}
.lang-row { margin-top: 12px; display: flex; align-items: center; gap: 8px; }
.lang-pill {
  flex: 1;
  border: 1px solid #cbbfa8;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--nav-idle);
}
.lang-pill.is-active { background: var(--green); color: var(--on-green); }
.mobile-menu .btn { margin-top: 10px; text-align: center; }

/* ============ 5. TIPOGRAFÍA ============ */
/* Etiqueta superior (eyebrow) */
.eyebrow {
  margin: 0 0 12px;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}
.eyebrow--sm { font-size: 12px; letter-spacing: .16em; margin-bottom: 8px; }

/* Wordmark "somaticamente" en cursiva parcial */
.wordmark em { font-style: italic; font-weight: 500; color: var(--green); }

/* Títulos serif reutilizables */
.t-display {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(50px, 8vw, 88px);
  line-height: .96;
  letter-spacing: -.01em;
  color: var(--ink-strong);
}
.t-h-services { margin: 0 auto; max-width: 20ch; font-family: var(--font-serif); font-weight: 500; font-size: clamp(32px, 4.6vw, 50px); line-height: 1.08; color: var(--ink-strong); }
.t-h-about    { margin: 0; font-family: var(--font-serif); font-weight: 500; font-size: clamp(30px, 4.4vw, 46px); line-height: 1.08; color: var(--ink-strong); }
.t-h-cta      { margin: 0 auto; max-width: 18ch; font-family: var(--font-serif); font-weight: 500; font-size: clamp(28px, 3.8vw, 42px); line-height: 1.1; }
.t-h-sec      { margin: 36px 0 0; font-family: var(--font-serif); font-weight: 600; font-size: clamp(26px, 3.4vw, 34px); color: var(--ink-strong); }
.t-h-detail   { margin: 0; font-family: var(--font-serif); font-weight: 600; font-size: clamp(26px, 3.4vw, 36px); color: var(--ink-strong); line-height: 1.1; }
.t-h-cred     { margin: 0; font-family: var(--font-serif); font-weight: 600; font-size: clamp(28px, 4vw, 44px); color: var(--ink-strong); }

/* Títulos de cabecera de página */
.page-title { margin: 0; font-family: var(--font-serif); font-weight: 600; color: var(--ink-strong); line-height: 1.05; font-size: clamp(36px, 5.2vw, 56px); }
.page-title--svc   { font-size: clamp(38px, 5.4vw, 58px); }
.page-title--enf   { font-size: clamp(34px, 5vw, 56px); line-height: 1.06; }
.page-title--sobre { font-size: clamp(34px, 4.8vw, 52px); }

/* Texto introductorio bajo los títulos */
.lede { margin: 18px auto 0; max-width: 60ch; font-size: 17px; color: var(--text-2); }
.lede--narrow { max-width: 54ch; }
.lede--58 { max-width: 58ch; }
.lede--56 { max-width: 56ch; }

/* Cita / frase destacada en cursiva */
.lead-italic {
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--text-3);
  max-width: 46ch;
}

/* Párrafos de prosa larga */
.prose p { margin: 0 0 14px; font-size: 16.5px; color: var(--text); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 700; color: var(--ink-strong); }

/* ============ 6. BOTONES ============ */
.btn {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: var(--green);
  color: var(--on-green);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .015em;
  padding: 14px 26px;
  border-radius: var(--r-pill);
}
.btn:hover { background: var(--green-dark); }
.btn--sm { font-size: 14px; padding: 10px 20px; }
.btn--lg { font-size: 15.5px; padding: 15px 30px; }
.btn--block { display: block; width: 100%; padding: 15px; text-align: center; }

.btn-ghost {
  display: inline-block;
  text-decoration: none;
  background: transparent;
  color: var(--ink-strong);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  border: 1.5px solid #c9bca3;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.btn-cream {
  display: inline-block;
  text-decoration: none;
  background: #f3ece0;
  color: var(--green-deep);
  font-size: 15.5px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--r-pill);
}
.btn-cream:hover { background: #e7dcc4; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* ============ 7. HERO (cabecera de cada página) ============ */
.hero {
  background: var(--grad-hero);
  border-bottom-left-radius: 44% 16%;
  border-bottom-right-radius: 44% 16%;
  position: relative;
  z-index: 0;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 6.5vw, 90px) var(--pad-x) clamp(72px, 9vw, 128px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
}
.hero__col { flex: 1 1 380px; min-width: 300px; }
.hero__col--media { flex: 1 1 320px; min-width: 280px; }
.hero__tagline {
  margin: 12px 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 30px);
  color: #6f7d5f;
  line-height: 1.1;
}
.hero__sub { margin: 26px 0 0; max-width: 44ch; font-size: clamp(16px, 1.7vw, 18.5px); color: var(--text-2); }

/* Hero centrado (páginas interiores) */
.hero--center .hero__center {
  margin: 0 auto;
  padding: clamp(52px, 6vw, 84px) var(--pad-x) clamp(76px, 9vw, 116px);
  text-align: center;
}

/* ============ 8. IMÁGENES Y PLACEHOLDERS ============ */
.media { display: block; width: 100%; overflow: hidden; background: #ece3d3; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--r20 { border-radius: 20px; }
.media--r26 { border-radius: 26px; }
.media--r34 { border-radius: 34px; }
.media--rect { border-radius: 0; }

/* Alturas según ubicación */
.media--hero   { height: clamp(340px, 44vw, 470px); }
.media--about  { height: clamp(320px, 40vw, 420px); }
.media--sobre  { height: clamp(340px, 42vw, 460px); }
.media--card   { height: 170px; }
.media--detail { height: clamp(280px, 32vw, 380px); }
.media--enf    { height: clamp(260px, 34vw, 380px); margin: 34px 0 6px; }

/* Placeholder para imágenes aún sin foto: sustitúyelo añadiendo una foto en /images */
.media--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background:
    repeating-linear-gradient(135deg, rgba(122, 138, 100, .10) 0, rgba(122, 138, 100, .10) 2px, transparent 2px, transparent 11px),
    #efe9da;
}
.media--ph span {
  font-family: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 11.5px;
  letter-spacing: .04em;
  color: #8d8674;
  text-align: center;
  max-width: 80%;
}

/* ============ 9. HOME ============ */
/* Vista previa "Sobre mí" */
.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
}
.split__media { flex: 1 1 280px; min-width: 260px; }
.split__text { flex: 1 1 360px; min-width: 300px; }
.about-text { margin: 18px 0 0; font-size: 16.5px; color: var(--text-2); max-width: 48ch; }
.about-text + .about-text { margin-top: 13px; }

/* Rejilla de tarjetas de servicios */
.svc-grid {
  margin-top: clamp(28px, 4vw, 46px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 26px;
  text-align: left;
}
.svc-card {
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.svc-card:hover { border-color: #bccaa6; box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.svc-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.svc-card__title { margin: 0; font-family: var(--font-serif); font-weight: 600; font-size: 23px; color: var(--ink-strong); line-height: 1.15; }
.svc-card__text { margin: 9px 0 0; font-size: 15px; color: var(--text-3); flex: 1; }
.svc-card__cta { margin-top: 16px; font-size: 13.5px; font-weight: 600; color: var(--green); letter-spacing: .01em; }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--green-deep);
  color: var(--on-green-soft);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-pill);
}

/* Bloque CTA verde */
.cta-green {
  background: var(--green-block);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 58px);
  text-align: center;
  color: var(--on-green-soft);
}
.cta-green .eyebrow { color: var(--on-green-label); }
.cta-green__text { margin: 16px auto 0; max-width: 54ch; font-size: 16.5px; color: var(--on-green-text); }
.cta-green .btn-cream { margin-top: 26px; }
.cta-green .t-h-cta { color: var(--on-green-soft); }

/* ============ 10. SERVICIOS (detalle) ============ */
.detail-list { display: flex; flex-direction: column; gap: clamp(36px, 5vw, 60px); }
.detail {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  scroll-margin-top: 90px;
}
.detail--reverse { flex-wrap: wrap-reverse; }
.detail__media { flex: 1 1 280px; min-width: 260px; }
.detail__body { flex: 1 1 360px; min-width: 300px; }
.detail__lbl { margin: 16px 0 4px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.detail__text { margin: 0; font-size: 15.5px; color: var(--text); }
.detail__list { margin: 0; padding-left: 20px; font-size: 15.5px; color: var(--text); display: flex; flex-direction: column; gap: 6px; }

/* Caja de precios */
.price-box { margin-top: 20px; background: var(--cream); border: 1px solid var(--cream-border); border-radius: var(--r-md); padding: 18px 20px; }
.price-box__label { margin: 0 0 4px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 10px 0; border-top: 1px solid var(--line); }
.price-row__name { font-size: 14.5px; color: var(--ink-soft); font-weight: 600; }
.price-row__val { font-size: 14px; color: var(--green); font-weight: 700; text-align: right; }
.price-row__val .muted { color: var(--muted); font-weight: 500; }
.price-box__free { margin: 12px 0 0; font-size: 13px; color: var(--green); font-weight: 600; }

/* Caja de paquete (mindfulness) */
.pkg { margin-top: 10px; background: var(--cream); border: 1px solid var(--cream-border); border-radius: 20px; padding: 22px; color: var(--ink); }
.pkg__head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.pkg__title { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.pkg__price { background: var(--green-deep); color: var(--on-green-soft); font-size: 14px; font-weight: 700; padding: 5px 14px; border-radius: var(--r-pill); }
.pkg__items { display: flex; flex-direction: column; gap: 13px; }
.pkg__item { display: flex; gap: 11px; align-items: flex-start; }
.pkg__item p { margin: 0; font-size: 14.5px; color: var(--text); line-height: 1.5; }
.dot { flex: none; margin-top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

/* Tarifa adaptada */
.note-strip { border-left: 3px solid var(--sage); padding: 6px 0 6px 16px; }
.note-strip p { margin: 0; font-size: 14.5px; color: var(--text-3); }
.note-strip strong { font-weight: 700; color: var(--ink-soft); }

/* Barra CTA inferior de Servicios */
.cta-bar {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: clamp(26px, 3.5vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.cta-bar__text {
  margin: 0;
  flex: 1 1 300px;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 26px);
}

/* ============ 11. EL ENFOQUE ============ */
.pillars { margin: 18px 0 0; display: flex; flex-direction: column; gap: 14px; }
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar p { margin: 0; font-size: 16.5px; color: var(--text); }
.pillar strong { font-weight: 700; color: var(--ink-strong); }
.pillar__icon {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar__icon--still { background: #e7ecdd; color: var(--sage); }
.pillar__icon--move { background: #f0e0d3; color: var(--green); }

/* Caja CTA suave (enfoque) */
.cta-soft {
  margin-top: 36px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: clamp(24px, 3.5vw, 34px);
  text-align: center;
}
.cta-soft__text {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--ink-strong);
}

/* ============ 12. SOBRE MÍ ============ */
.about-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(48px, 5vw, 80px) var(--pad-x) clamp(72px, 8vw, 112px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
}

/* Bloque de acreditaciones (mismo degradado que el hero, con esquinas redondeadas) */
.cred-block {
  background: var(--grad-hero);
  border-radius: var(--r-xl);
  position: relative;
  z-index: 0;
  margin: clamp(20px, 3vw, 40px) auto;
  max-width: 1240px;
}
.cred-block__inner { max-width: 1180px; margin: 0 auto; padding: clamp(48px, 5vw, 76px) var(--pad-x); }
.cred-head { text-align: center; max-width: 720px; margin: 0 auto; }
.cred-grid {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  align-items: stretch;
  text-align: left;
}
.cred {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cred__head { display: flex; align-items: center; gap: 13px; }
.cred__icon {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 16px;
  background: #e9eede;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 21px;
}
.cred__title { margin: 0; font-family: var(--font-serif); font-weight: 600; font-size: clamp(21px, 2.4vw, 24px); color: var(--ink-strong); line-height: 1.12; }
.cred__list { margin-top: 20px; display: flex; flex-direction: column; gap: 15px; }
.cred__item { display: flex; gap: 11px; align-items: flex-start; }
.cred__item p { margin: 0; font-size: 14.5px; color: var(--text); line-height: 1.5; }
.cred__item strong { font-weight: 700; color: var(--ink-strong); }
.cred__text { margin: 20px 0 0; font-size: 15px; color: var(--text); line-height: 1.6; }

/* ============ 13. FAQ (acordeón) ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq { background: var(--card); border: 1px solid var(--card-border); border-radius: 20px; overflow: hidden; }
.faq__btn {
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
}
.faq__q { font-family: var(--font-serif); font-size: clamp(19px, 2.3vw, 23px); font-weight: 600; color: var(--ink-strong); }
.faq__sign { flex: none; font-size: 22px; color: var(--green); line-height: 1; }
.faq__a { margin: 0; padding: 0 22px 22px; font-size: 15.5px; color: var(--text); }
.faq__panel { display: none; }
.faq.is-open .faq__panel { display: block; }

/* Caja CTA al final de FAQ / enfoque */
.cta-mini {
  margin-top: 18px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: clamp(24px, 3.5vw, 32px);
  text-align: center;
}
.cta-mini__text {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2.5vw, 25px);
  color: var(--ink-strong);
}

/* ============ 14. CONTACTO ============ */
.form-card {
  margin-top: 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field { display: block; }
.field__label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--input-border);
  background: #fff;
  border-radius: var(--r-sm);
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--green); outline: none; }
.form-note { margin: 0; font-size: 12.5px; color: var(--muted-2); text-align: center; line-height: 1.5; }

/* Bloque verde + calendario de muestra */
.book {
  background: var(--green-block);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--on-green-soft);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}
.book__text { flex: 1 1 320px; min-width: 280px; text-align: left; }
.book .eyebrow { color: var(--on-green-label); margin-bottom: 10px; font-size: 12px; letter-spacing: .16em; }
.book__title { margin: 0; font-family: var(--font-serif); font-weight: 500; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.1; }
.book__desc { margin: 14px 0 0; font-size: 16px; color: var(--on-green-text); max-width: 46ch; }
.book__note { margin: 18px 0 0; font-size: 13.5px; color: #9fa893; }

.cal { flex: 1 1 300px; min-width: 280px; background: var(--cream); border-radius: var(--r-md); padding: 20px; color: var(--ink); }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal__month { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--ink-strong); }
.cal__arrows { font-size: 14px; color: var(--green); font-weight: 600; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; text-align: center; }
.cal__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 9px;
  font-weight: 400;
  color: #bdb4a1;
  border: 1px solid transparent;
}
.cal__day.is-avail { font-weight: 600; color: var(--ink-soft); background: #efe2d0; border-color: var(--cream-border); }
.cal__day.is-selected { font-weight: 600; color: #fff; background: var(--green); border-color: transparent; }
.cal__slots { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.cal__slot { border: 1.5px solid var(--input-border); border-radius: var(--r-pill); padding: 7px 14px; font-size: 13px; color: var(--text-2); background: #fff; }
.cal__slot:hover { border-color: var(--green); color: var(--green); cursor: pointer; }

/* ============ 15. PIE DE PÁGINA ============ */
.site-footer { background: var(--green-block); color: #f3f7ec; }
.footer__inner { max-width: 1200px; margin: 0 auto; padding: clamp(40px, 5vw, 58px) var(--pad-x); display: flex; flex-wrap: wrap; gap: 36px; }
.footer__brand { flex: 1 1 280px; min-width: 240px; }
.footer__wordmark { font-family: var(--font-serif); font-size: 26px; font-weight: 600; color: var(--on-green-soft); }
.footer__wordmark em { font-style: italic; font-weight: 500; color: #aebb98; }
.footer__tagline { margin: 14px 0 0; font-size: 14.5px; max-width: 34ch; color: #eaf0e0; }
.footer__col { flex: 1 1 180px; min-width: 160px; }
.footer__col--contact { flex: 1 1 200px; min-width: 180px; }
.footer__title { margin: 0 0 14px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #dde6d1; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link { text-decoration: none; color: var(--on-green-text); font-size: 14.5px; }
.footer__link:hover { color: #fff; }
.footer__social { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid #7d9469;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.social-btn:hover { border-color: #aebb98; }
.footer__bottom { border-top: 1px solid #7d9469; }
.footer__copy { max-width: 1200px; margin: 0 auto; padding: 16px var(--pad-x); font-size: 12.5px; color: #dde6d1; }

/* ============ 16. RESPONSIVE ============ */
/* Móvil y tablet: oculta la navegación de escritorio y muestra la hamburguesa */
@media (max-width: 979px) {
  .nav__desktop { display: none; }
  .hamburger { display: flex; }
}
@media (min-width: 980px) {
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}
