/* ============================================================
   SITALIA — theme-nordic.css
   Sistema de diseño compartido por TODAS las demos.

   Estética: blanco, negro, mucho espacio, tipografía Inter.
   Carga ANTES del CSS específico del nicho.
     <link rel="stylesheet" href="shared.css">
     <link rel="stylesheet" href="theme-nordic.css">
     <link rel="stylesheet" href="<nicho>.css">

   Cada nicho añade solo lo que es realmente único (color de acento
   si lo tiene, layouts particulares, módulos específicos).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap');

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --bg:         #ffffff;
  --bg-soft:    #fafafa;
  --bg-card:    #ffffff;
  --bg2:        #fafafa;
  --bg-dark:    #0a0a0a;
  --bg-warm:    #fafafa;       /* algunos nichos pueden overridearlo */
  --text:       #0a0a0a;
  --text-muted: #555555;
  --text-soft:  #999999;
  --text2:      #555555;
  --text3:      #999999;
  --accent:     #0a0a0a;        /* por defecto = negro (nórdico). cada nicho puede overridear */
  --border:     #eaeaea;
  --border-strong: #d4d4d4;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --bg-rgb:     255, 255, 255;
  --radius-sm:  4px;
  --radius-md:  6px;
  --radius-lg:  10px;
}

/* ── Body & tipografía ─────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  -webkit-font-smoothing: antialiased;
}

/* Asegurar que NADA del shared.css mete imagen de fondo del hero */
.hero-bg-img { display: none !important; }

/* Sin <hr> entre secciones — la separación la hace el espacio + bg-soft */
hr { display: none; }

section { padding: 0; }

.container { max-width: 1200px; padding: 0 32px; margin: 0 auto; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ── Demo banner (sticky arriba, con selector de tema) ── */
.demo-banner {
  position: sticky; top: 0;
  z-index: 250;
  background: #0a0a0a; color: #fff;
  font-size: 10px; letter-spacing: .15em; font-weight: 500;
  padding: 7px 16px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 16px;
}
.demo-banner-name { white-space: nowrap; }
.demo-banner-themes {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9px; letter-spacing: .12em; font-weight: 500;
  flex-wrap: wrap; justify-content: center;
}
.demo-banner-themes-label {
  color: rgba(255,255,255,.5); margin-right: 4px;
}
.demo-banner-themes button {
  background: rgba(255,255,255,.08);
  border: 1px solid transparent;
  color: rgba(255,255,255,.7);
  padding: 4px 9px;
  border-radius: 3px;
  font-size: 9px; letter-spacing: .1em; font-weight: 600;
  cursor: pointer; font-family: inherit;
  transition: all .15s;
}
.demo-banner-themes button:hover:not(.active) {
  color: #fff; background: rgba(255,255,255,.15);
}
.demo-banner-themes button.active {
  background: #fff; color: #0a0a0a; border-color: #fff;
}
@media (max-width: 540px) {
  .demo-banner {
    padding: 7px 10px;
    flex-direction: column;
    gap: 6px;
    font-size: 9px;
  }
  .demo-banner-name {
    white-space: normal;
    text-align: center;
    letter-spacing: .1em;
  }
  .demo-banner-themes { font-size: 8px; gap: 3px; }
  .demo-banner-themes button { padding: 3px 7px; font-size: 8px; }
  .demo-banner-themes-label { margin-right: 2px; }
}

/* ── Back to Sitalia link ──────────────────────────────── */
/* top: por debajo del banner sticky (~36px) + un poco de respiro */
.back-to-sitalia {
  position: fixed;
  top: 56px; left: 24px;
  z-index: 200;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px; letter-spacing: .12em; font-weight: 500;
  text-transform: uppercase;
  padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
  border-radius: var(--radius-md);
  transition: all .15s ease;
  text-decoration: none;
  box-shadow: none;
}
.back-to-sitalia:hover {
  background: #0a0a0a; color: #fff; border-color: #0a0a0a;
}
/* En móvil: botón compacto solo con la flecha + bajado por banner apilado */
@media (max-width: 600px) {
  .back-to-sitalia {
    top: 76px; left: 10px;
    padding: 0; gap: 0;
    width: 30px; height: 30px;
    justify-content: center;
    border-radius: 50%;
  }
  .back-to-sitalia .back-text { display: none; }
}
@media (max-width: 540px) {
  .back-to-sitalia { top: 76px; }
}

/* ── NAV ───────────────────────────────────────────────── */
/* top calculado: banner sticky desktop ~36px, móvil ~62px */
nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
  transition: all .2s ease;
}
nav.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 16px; font-weight: 600; letter-spacing: -.01em; color: var(--text);
}
.nav-logo span { font-weight: 300; color: var(--text-muted); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px; color: var(--text-muted); font-weight: 400; transition: color .15s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after { display: none; }

.nav-cta {
  background: var(--text); color: #fff;
  border: none; padding: 10px 20px;
  font-size: 12px; letter-spacing: .06em; font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer; transition: all .15s;
  font-family: inherit;
}
.nav-cta:hover { background: #2a2a2a; }

.nav-toggle {
  background: none; border: none; color: var(--text);
  font-size: 22px; cursor: pointer; display: none;
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 24px 32px; gap: 16px;
  }
}
@media (max-width: 540px) {
  /* en móvil el banner se apila → más alto, bajamos el nav */
  nav { top: 62px; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 14px 20px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════
   HERO genérico — grid 2 columnas (contenido + widget/CTA)
   ═══════════════════════════════════════════════════════ */
#hero {
  padding: 140px 0 100px;
  background: var(--bg);
  position: relative;
}
@media (max-width: 720px) { #hero { padding: 110px 0 60px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500;
}
.hero-eyebrow-line { width: 24px; height: 1px; background: var(--text-soft); }
.hero-eyebrow .label { font-size: 11px; letter-spacing: .2em; color: var(--text-soft); }

.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title em, .hero-title strong {
  font-style: normal;
  font-weight: 300;
  color: var(--text-muted);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-info-row {
  display: flex; flex-wrap: wrap; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-info-item { display: flex; flex-direction: column; gap: 4px; }
.hero-info-label {
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500;
}
.hero-info-val { font-size: 13px; color: var(--text); font-weight: 500; }
.hero-info-val.muted { color: var(--text-muted); font-weight: 400; }

/* Compatibilidad con CSS anteriores que metían stats o botones en el hero */
.hero-stats { display: none; }
.hero-btns { display: none; }

/* ═══════════════════════════════════════════════════════
   BOOKING WIDGET — versión compacta para el hero
   ═══════════════════════════════════════════════════════ */
.booking-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
@media (max-width: 980px) { .booking-wrap { position: static; } }

.booking-steps { display: flex; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.bk-step {
  flex: 1; background: none; border: none; cursor: pointer;
  padding: 14px 8px;
  font-size: 10px; letter-spacing: .08em; font-weight: 500;
  color: var(--text-soft);
  border-right: 1px solid var(--border);
  transition: all .15s;
  font-family: inherit;
}
.bk-step:last-child { border-right: none; }
.bk-step.active {
  background: #fff; color: var(--text); font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--text);
}
.bk-step.done { color: var(--text-muted); }
.bk-step.done::before { content: '✓ '; color: var(--text); }

.bk-panel { display: none; padding: 24px; }
.bk-panel.active { display: block; }
.bk-panel-label {
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500; margin-bottom: 16px;
}

.bk-svc {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer; margin-bottom: 6px;
  transition: all .12s;
}
.bk-svc:hover { background: #f0f0f0; }
.bk-svc.selected {
  background: #fff; border-color: var(--text);
  box-shadow: 0 0 0 1px var(--text) inset;
}
.bk-svc-name { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 2px; }
.bk-svc-dur { font-size: 11px; color: var(--text-soft); }
.bk-svc-price { font-size: 14px; font-weight: 600; color: var(--text); }

.bk-cal-hdr {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.bk-cal-nav {
  background: none; border: 1px solid var(--border);
  width: 28px; height: 28px; border-radius: var(--radius-md);
  cursor: pointer; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; font-family: inherit;
}
.bk-cal-nav:hover { background: var(--bg-soft); color: var(--text); }
.bk-cal-month { font-size: 13px; font-weight: 600; color: var(--text); text-transform: capitalize; }
.bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.bk-cal-dow {
  text-align: center; font-size: 10px; color: var(--text-soft);
  font-weight: 500; padding: 4px 0; letter-spacing: .04em;
}
.bk-cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500;
  border-radius: var(--radius-sm); cursor: pointer; transition: all .1s;
  color: var(--text);
}
.bk-cal-day.avail:hover { background: var(--bg-soft); }
.bk-cal-day.past, .bk-cal-day.closed { color: #d4d4d4; cursor: default; }
.bk-cal-day.today { font-weight: 700; }
.bk-cal-day.sel { background: var(--text); color: #fff; font-weight: 600; }

.bk-slots-info {
  font-size: 12px; color: var(--text-muted);
  padding: 10px 12px; background: var(--bg-soft);
  border-radius: var(--radius-md); margin-bottom: 12px;
}
.bk-slots-info strong { color: var(--text); font-weight: 600; }
.bk-slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.bk-slot {
  padding: 10px 6px; text-align: center;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; transition: all .12s; background: #fff;
}
.bk-slot:hover { border-color: var(--text); }
.bk-slot.sel { background: var(--text); color: #fff; border-color: var(--text); }
.bk-slot-time { font-size: 13px; font-weight: 600; }
.bk-slot-end { font-size: 10px; color: var(--text-soft); margin-top: 2px; }
.bk-slot.sel .bk-slot-end { color: rgba(255,255,255,.7); }

.bk-confirm-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.bk-confirm-row:last-child { border-bottom: none; }
.bk-confirm-label {
  color: var(--text-soft); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase;
}
.bk-confirm-val { color: var(--text); font-weight: 500; }

.bk-form-input {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  font-size: 13px; font-family: inherit; background: #fff;
  color: var(--text); outline: none; transition: border-color .15s;
}
.bk-form-input:focus { border-color: var(--text); }
.bk-form-input::placeholder { color: var(--text-soft); }

.bk-btn {
  width: 100%; margin-top: 16px;
  background: var(--text); color: #fff; border: none;
  padding: 13px; font-size: 12px; letter-spacing: .08em; font-weight: 600;
  border-radius: var(--radius-md); cursor: pointer;
  font-family: inherit; transition: background .15s;
}
.bk-btn:hover:not(:disabled) { background: #2a2a2a; }
.bk-btn:disabled { background: #d4d4d4; cursor: not-allowed; }

.bk-back {
  display: block; width: 100%; margin-top: 8px;
  background: none; border: none; cursor: pointer; padding: 8px;
  font-size: 11px; color: var(--text-soft); font-family: inherit;
}
.bk-back:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════
   HERO IMG — foto grande para la columna derecha del hero
   (cuando no hay widget, formulario ni CTA card)
   ═══════════════════════════════════════════════════════ */
.hero-img {
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky; top: 100px;
}
@media (max-width: 980px) { .hero-img { position: static; aspect-ratio: 16/10; } }
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION — sección al final con CTA centrado
   Wrapper estándar para meter una cta-card o lead-form
   al final de la página (Reservar mesa, Pedir cita, etc.)
   ═══════════════════════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.cta-section-inner {
  max-width: 560px;
  margin: 0 auto;
}
.cta-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.cta-section-header .section-eyebrow { text-align: center; }
.cta-section-header .section-title { font-size: clamp(28px, 4vw, 38px); }
.cta-section-header p {
  margin-top: 14px; font-size: 14px; color: var(--text-muted); line-height: 1.6;
}
/* Cuando metemos cta-card o lead-form dentro de cta-section, quitamos sticky */
.cta-section .cta-card,
.cta-section .lead-form { position: static; top: auto; }

/* ═══════════════════════════════════════════════════════
   CTA CARD — tarjeta de acción para nichos sin reservas online.
   Vive en la columna derecha del hero (mismo hueco que el widget).
   ═══════════════════════════════════════════════════════ */
.cta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}
@media (max-width: 980px) { .cta-card { position: static; } }

.cta-card-eyebrow {
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500; margin-bottom: 14px;
}
.cta-card-title {
  font-size: 22px; font-weight: 500; color: var(--text);
  letter-spacing: -.01em; line-height: 1.2; margin-bottom: 10px;
}
.cta-card-sub {
  font-size: 13px; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 22px;
}
.cta-card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px 16px;
  background: var(--text); color: #fff; border: none;
  font-size: 12px; letter-spacing: .08em; font-weight: 600;
  border-radius: var(--radius-md); cursor: pointer;
  font-family: inherit; text-decoration: none;
  transition: background .15s;
  margin-bottom: 8px;
}
.cta-card-btn:hover { background: #2a2a2a; }

.cta-card-btn-outline {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px 16px;
  background: #fff; color: var(--text);
  border: 1px solid var(--border-strong);
  font-size: 12px; letter-spacing: .08em; font-weight: 600;
  border-radius: var(--radius-md); cursor: pointer;
  font-family: inherit; text-decoration: none;
  transition: all .15s;
  margin-bottom: 8px;
}
.cta-card-btn-outline:hover { border-color: var(--text); background: var(--bg-soft); }

.cta-card-divider {
  height: 1px; background: var(--border); margin: 18px 0;
}
.cta-card-info {
  display: flex; flex-direction: column; gap: 10px;
}
.cta-card-info-row {
  display: flex; gap: 12px; font-size: 12px; color: var(--text-muted);
  line-height: 1.5;
}
.cta-card-info-row svg {
  width: 14px; height: 14px; flex-shrink: 0; color: var(--text-soft);
  margin-top: 2px;
}
.cta-card-info-row strong { color: var(--text); font-weight: 500; }

.cta-card-note {
  font-size: 11px; color: var(--text-soft);
  text-align: center; margin-top: 14px; line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   FORMULARIO genérico (alternativa al widget para abogados/academia)
   Misma caja blanca con borde que el booking-wrap, mismo lenguaje.
   ═══════════════════════════════════════════════════════ */
.lead-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}
@media (max-width: 980px) { .lead-form { position: static; } }
.lead-form h3 {
  font-size: 18px; font-weight: 500; letter-spacing: -.01em;
  margin-bottom: 6px; color: var(--text);
}
.lead-form-sub {
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
  margin-bottom: 22px;
}
.lead-form-field { margin-bottom: 12px; }
.lead-form-label {
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500;
  display: block; margin-bottom: 6px;
}
.lead-form-input, .lead-form-select, .lead-form-textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  font-size: 13px; font-family: inherit; background: #fff;
  color: var(--text); outline: none; transition: border-color .15s;
  resize: vertical;
}
.lead-form-input:focus, .lead-form-select:focus, .lead-form-textarea:focus {
  border-color: var(--text);
}
.lead-form-textarea { min-height: 90px; line-height: 1.5; }
.lead-form-btn {
  width: 100%; margin-top: 8px;
  background: var(--text); color: #fff; border: none;
  padding: 13px; font-size: 12px; letter-spacing: .08em; font-weight: 600;
  border-radius: var(--radius-md); cursor: pointer;
  font-family: inherit; transition: background .15s;
}
.lead-form-btn:hover:not(:disabled) { background: #2a2a2a; }
.lead-form-btn:disabled { background: #d4d4d4; cursor: not-allowed; }
.lead-form-note {
  font-size: 11px; color: var(--text-soft);
  margin-top: 12px; line-height: 1.5; text-align: center;
}
.lead-form-ok {
  display: none; margin-top: 14px; padding: 14px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius-md); color: var(--text);
  font-size: 13px; text-align: center;
}

/* Checkbox de consentimiento RGPD */
.lead-form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 8px 0 12px;
  font-size: 12px; color: var(--text-muted); line-height: 1.5;
  cursor: pointer;
}
.lead-form-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--text);
  cursor: pointer;
}
.lead-form-consent a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.lead-form-consent a:hover { text-decoration: none; }

/* ═══════════════════════════════════════════════════════
   SECCIONES — headers y typography
   ═══════════════════════════════════════════════════════ */
.section-pad      { padding: 100px 0; }
.section-pad-lg   { padding: 120px 0; }
.section-pad-bg   { padding: 100px 0; background: var(--bg-soft); border-top: 1px solid var(--border); }

.section-header {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 56px; gap: 32px; flex-wrap: wrap;
}
.section-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400; letter-spacing: -.02em;
  line-height: 1.05; color: var(--text);
}
.section-title strong, .section-title em {
  font-style: normal; font-weight: 300; color: var(--text-muted);
}
.section-eyebrow {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500; margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════
   LISTADOS de servicios / áreas / actividades (genérico)
   ═══════════════════════════════════════════════════════ */
.svc-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 720px) { .svc-list { grid-template-columns: 1fr; } }

.svc-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  transition: background .12s;
}
.svc-row:hover { background: rgba(0,0,0,.02); }
.svc-row.popular { background: #fff; }
.svc-row-info { flex: 1; min-width: 0; }
.svc-row-name { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.svc-row-name .pop-tag {
  display: inline-block; margin-left: 10px;
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text); border: 1px solid var(--text);
  padding: 2px 6px; border-radius: 3px; font-weight: 600;
  vertical-align: middle;
}
.svc-row-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.svc-row-meta { text-align: right; flex-shrink: 0; }
.svc-row-price { font-size: 18px; font-weight: 600; color: var(--text); line-height: 1; }
.svc-row-dur {
  font-size: 11px; color: var(--text-soft);
  letter-spacing: .04em; margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   EQUIPO — cards minimalistas
   ═══════════════════════════════════════════════════════ */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .team-grid { grid-template-columns: 1fr; } }

.team-card { display: flex; flex-direction: column; gap: 16px; }
.team-photo {
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform .6s ease;
}
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-photo.placeholder { display: flex; align-items: end; justify-content: center; }
.team-photo.placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 80' fill='none' stroke='%23d4d4d4' stroke-width='1.2'><circle cx='30' cy='28' r='12'/><path d='M10 78c0-12 9-22 20-22s20 10 20 22'/></svg>");
  background-repeat: no-repeat;
  background-position: center 60%;
  background-size: 50%;
}
.team-photo.placeholder::after {
  content: 'Foto pendiente';
  position: absolute; bottom: 16px; left: 0; right: 0;
  text-align: center;
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500;
}
.team-name {
  font-size: 17px; font-weight: 500; color: var(--text);
  letter-spacing: -.01em;
}
.team-role {
  font-size: 12px; color: var(--text-soft);
  letter-spacing: .06em; text-transform: uppercase;
  margin-top: -8px;
}
.team-bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   GALERÍA — grid de imágenes o placeholders
   ═══════════════════════════════════════════════════════ */
/* Reglas con mayor especificidad para garantizar que sobreescriben
   las reglas viejas de shared.css y CSS legacy de nichos. */
section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 12px;
  margin-top: 56px;
}
@media (max-width: 880px) {
  section .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
section .gallery-grid .gallery-item {
  aspect-ratio: 1;
  grid-row: auto;       /* anula cualquier span heredado */
  grid-column: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.placeholder { display: flex; align-items: center; justify-content: center; }
.gallery-item.placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4d4d4' stroke-width='1.2'><rect x='3' y='3' width='18' height='18' rx='2'/><circle cx='9' cy='9' r='1.5'/><polyline points='3 17 8 12 14 18'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  opacity: .7;
}
.gallery-item.placeholder::after {
  content: 'Foto pendiente';
  position: absolute; bottom: 16px; left: 0; right: 0;
  text-align: center;
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   UBICACIÓN
   ═══════════════════════════════════════════════════════ */
.location-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 56px; margin-top: 56px; align-items: start;
}
@media (max-width: 880px) {
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
}
.location-map {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  padding: 32px;
  text-align: center;
}
.location-map .map-icon { width: 36px; height: 36px; color: var(--text-soft); }
.location-map .map-title { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.location-map .map-addr { font-size: 13px; color: var(--text-muted); }
.location-map .btn-primary {
  display: inline-block;
  background: var(--text); color: #fff;
  border: none; padding: 11px 20px;
  font-size: 11px; letter-spacing: .1em; font-weight: 600;
  border-radius: var(--radius-md); cursor: pointer;
  text-decoration: none;
  transition: background .15s;
}
.location-map .btn-primary:hover { background: #2a2a2a; }

.location-info { display: flex; flex-direction: column; gap: 32px; }
.info-block { border-top: 1px solid var(--border); padding-top: 20px; }
.info-block:first-child { border-top: none; padding-top: 0; }
.info-label {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 500; margin-bottom: 14px;
}
.schedule-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 13px; color: var(--text); }
.schedule-day { color: var(--text-muted); }
.schedule-closed { color: var(--text-soft); font-style: italic; }
.info-val { font-size: 14px; color: var(--text); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: #0a0a0a; color: #fff;
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid #1f1f1f;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
.footer-logo {
  font-size: 18px; font-weight: 600; letter-spacing: -.01em; color: #fff;
  margin-bottom: 12px;
}
.footer-logo span { font-weight: 300; color: rgba(255,255,255,.5); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }
.footer-col-title {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 500; margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,.8); font-size: 13px; transition: color .15s;
  text-decoration: none;
}
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; }
.footer-contact li { font-size: 13px; color: rgba(255,255,255,.8); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-size: 12px; color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════
   Ocultar botones flotantes legados (wa-float)
   ═══════════════════════════════════════════════════════ */
.wa-float { display: none !important; }

/* ═══════════════════════════════════════════════════════
   COOKIE BANNER (informativo, esquina inferior)
   ═══════════════════════════════════════════════════════ */
.sitalia-cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 480px;
  margin: 0 auto;
  background: #0a0a0a; color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  padding: 16px 18px;
  z-index: 9999;
  font-family: var(--font, -apple-system, sans-serif);
  font-size: 13px; line-height: 1.5;
  animation: scb-in .25s ease;
}
@media (min-width: 720px) {
  .sitalia-cookie-banner { right: 24px; left: auto; bottom: 24px; max-width: 420px; margin: 0; }
}
.scb-inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.scb-text { flex: 1; min-width: 200px; color: rgba(255,255,255,.85); }
.scb-text strong { color: #fff; font-weight: 600; }
.scb-text a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.scb-text a:hover { opacity: .85; }
.scb-btn {
  background: #fff; color: #0a0a0a;
  border: none; padding: 9px 18px;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  border-radius: 6px; cursor: pointer;
  font-family: inherit;
  transition: background .15s;
  flex-shrink: 0;
}
.scb-btn:hover { background: rgba(255,255,255,.85); }
.scb-hide { opacity: 0; transform: translateY(20px); transition: all .25s ease; }
@keyframes scb-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .sitalia-cookie-banner { animation: none; }
  .scb-hide { transition: none; }
}

/* ═══════════════════════════════════════════════════════
   Reveal animations + accesibilidad
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
*:focus { outline: none; }
*:focus-visible { outline: 2px solid var(--text); outline-offset: 2px; }
