/* =============================================================
   CIC — Centro Integral de Columna
   styles.css  ·  v20260602
   Archetype: Medical Premium (adapted Editorial Light Cream)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  /* ===== Brand palette ===== */
  /* Scotch (dorado bronce) — color principal */
  --scotch:       #976f29;
  --scotch-2:     #7b5a20;   /* hover / más oscuro */
  --scotch-deep:  #5e451a;
  --scotch-light: #f4ecdc;   /* tinte cálido para fondos */
  /* Tribal (oliva dorado) — color secundario */
  --tribal:       #807943;
  --tribal-2:     #696338;
  --tribal-light: #f0eee2;

  /* Estructura: carbón cálido (casi negro) + blancos */
  --charcoal:   #1c1916;   /* primario oscuro / titulares */
  --charcoal-2: #2c2823;
  --charcoal-3: #131110;   /* footer */
  --white:      #ffffff;
  --off-white:  #faf8f3;   /* blanco cálido */
  --gray-50:    #f5f2ec;
  --gray-100:   #e9e4d8;
  --gray-200:   #d6cfbe;
  --gray-400:   #9c9484;
  --gray-600:   #5d564a;
  --gray-800:   #2c2823;
  --ink:        #1c1916;
  --ink-soft:   #3d3833;
  --ink-mute:   #6f685c;
  --line:       rgba(28,25,22,0.1);

  /* ===== Aliases de compatibilidad ===== */
  /* (las páginas usan --navy / --teal; los redirigimos a la nueva paleta) */
  --navy:       var(--charcoal);
  --navy-2:     var(--charcoal-2);
  --navy-3:     var(--charcoal-3);
  --teal:       var(--scotch);
  --teal-2:     var(--scotch-2);
  --teal-light: var(--scotch-light);

  /* ===== Semantic ===== */
  --bg:         var(--white);
  --bg-2:       var(--off-white);
  --bg-3:       var(--gray-50);
  --accent:     var(--scotch);
  --accent-2:   var(--tribal);
  --primary:    var(--charcoal);
  --text:       var(--ink);
  --text-soft:  var(--ink-soft);
  --text-mute:  var(--ink-mute);

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --gutter:   clamp(1rem, 4vw, 2rem);
  --container: 1200px;
  --section-pad: clamp(4rem, 8vw, 7rem);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(28,25,22,0.08), 0 1px 2px rgba(28,25,22,0.04);
  --shadow-md: 0 4px 16px rgba(28,25,22,0.10), 0 2px 4px rgba(28,25,22,0.05);
  --shadow-lg: 0 12px 40px rgba(28,25,22,0.16), 0 4px 12px rgba(28,25,22,0.07);
  --shadow-teal: 0 8px 32px rgba(151,111,41,0.26);

  /* Easing */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);

  /* Nav height */
  --nav-h: 72px;
}

/* =============================================================
   2. Reset & Base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4, h5 { text-wrap: balance; line-height: 1.15; letter-spacing: -0.02em; font-family: var(--serif); font-weight: 700; color: var(--navy); }
ul, ol { list-style: none; }

::selection { background: var(--teal); color: var(--white); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1.2rem; background: var(--navy); color: var(--white);
  z-index: 9999; border-radius: 8px; font-weight: 500; font-size: .875rem;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section-pad { padding-block: var(--section-pad); }
.bg-2 { background: var(--bg-2); }
.bg-3 { background: var(--bg-3); }
.bg-navy { background: var(--navy); color: var(--white); }

/* =============================================================
   4. Typography
   ============================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--teal);
  border-radius: 2px; flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--navy);
}
.section-subtitle {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-mute);
  max-width: 56ch;
  line-height: 1.7;
}
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* =============================================================
   5. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem;
  font-family: var(--sans); font-size: .9375rem; font-weight: 600;
  border-radius: var(--r-md);
  transition: all .3s var(--ease-out);
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-2); border-color: var(--navy-2);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}

.btn-teal {
  background: var(--teal); color: var(--white); border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-2); border-color: var(--teal-2);
  transform: translateY(-2px); box-shadow: var(--shadow-teal);
}

.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy); color: var(--white);
  transform: translateY(-2px); box-shadow: var(--shadow-md);
}

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

.btn-lg { padding: 1rem 2.5rem; font-size: 1.0625rem; }
.btn-sm { padding: .625rem 1.25rem; font-size: .875rem; }

.btn-icon {
  width: 18px; height: 18px; flex-shrink: 0;
}

/* Arrow icon in buttons */
.btn .arrow {
  display: inline-block;
  transition: transform .3s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* =============================================================
   6. Navigation
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--serif); font-weight: 700;
  color: var(--navy); text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px; width: auto; display: block;
}
@media (max-width: 420px) { .nav-logo-img { height: 38px; } }
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 22px; height: 22px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-size: 1.125rem; letter-spacing: -.01em; }
.nav-logo-sub { font-family: var(--sans); font-size: .65rem; font-weight: 400; color: var(--text-mute); letter-spacing: .04em; text-transform: uppercase; }

.nav-links {
  display: none; align-items: center; gap: .25rem;
}
.nav-link {
  padding: .5rem .875rem;
  font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  border-radius: var(--r-sm);
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--teal-light); }

.nav-actions {
  display: flex; align-items: center; gap: .75rem; flex-shrink: 0;
}

.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px; cursor: pointer;
}
.nav-burger span {
  display: block; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all .3s var(--ease-out);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  position: fixed; inset: 0; top: var(--nav-h);
  background: var(--white); z-index: 999;
  padding: 2rem var(--gutter);
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  display: flex; flex-direction: column; gap: .5rem;
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile .nav-link { display: block; font-size: 1.125rem; padding: .875rem 1rem; }
.nav-mobile-cta { margin-top: 1.5rem; }

/* =============================================================
   7. Hero (Home)
   ============================================================= */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(0.85) brightness(0.38) sepia(0.25);
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(28,25,22,0.93) 0%,
    rgba(28,25,22,0.74) 48%,
    rgba(128,121,67,0.32) 80%,
    rgba(151,111,41,0.42) 100%
  );
}
.hero-grain {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  padding-block: clamp(3rem, 6vw, 6rem);
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1.5rem;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-family: var(--serif);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  color: var(--teal);
}
.hero-subtitle {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.72);
  max-width: 48ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.hero-stat-label {
  font-size: .8125rem; color: rgba(255,255,255,.55);
  margin-top: .25rem; letter-spacing: .02em;
}

/* =============================================================
   8. Cards
   ============================================================= */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.card-icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  transition: background .3s ease;
}
.card:hover .card-icon { background: var(--teal); }

.card-title {
  font-family: var(--serif); font-size: 1.25rem;
  color: var(--navy); margin-bottom: .625rem;
}
.card-text {
  font-size: .9375rem; color: var(--text-mute);
  line-height: 1.7;
}
.card-link {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .875rem; font-weight: 600; color: var(--teal);
  margin-top: 1.25rem;
  transition: gap .3s var(--ease-out);
}
.card-link:hover { gap: .625rem; }

/* Specialty cards */
.spec-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all .3s var(--ease-out);
  display: flex; flex-direction: column;
}
.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

/* Doctor cards */
.doc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s var(--ease-out);
}
.doc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.doc-card-photo {
  aspect-ratio: 3/2;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}
.doc-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.doc-card-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  font-size: 3rem; color: var(--gray-400);
}
.doc-card-body { padding: 1.5rem; }
.doc-card-specialty {
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .5rem;
}
.doc-card-name {
  font-family: var(--serif); font-size: 1.1875rem;
  color: var(--navy); margin-bottom: .625rem;
}
.doc-card-bio { font-size: .875rem; color: var(--text-mute); line-height: 1.65; }

/* Blog cards */
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .3s var(--ease-out);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .625rem;
}
.blog-card-title {
  font-family: var(--serif); font-size: 1.25rem;
  color: var(--navy); margin-bottom: .75rem; line-height: 1.3;
}
.blog-card-text { font-size: .9rem; color: var(--text-mute); line-height: 1.7; flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--gray-100);
  font-size: .8125rem; color: var(--text-mute);
}

/* =============================================================
   9. Grids
   ============================================================= */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* =============================================================
   10. Why CIC Section
   ============================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.why-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  transition: all .3s var(--ease-out);
}
.why-item:hover { box-shadow: var(--shadow-md); border-color: var(--teal-light); }
.why-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 700;
  color: var(--teal); line-height: 1; flex-shrink: 0;
  min-width: 2.5rem;
}
.why-title { font-family: var(--serif); font-size: 1.125rem; color: var(--navy); margin-bottom: .375rem; }
.why-text { font-size: .9rem; color: var(--text-mute); line-height: 1.7; }

/* =============================================================
   11. CTA Banner
   ============================================================= */
.cta-banner {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 60%; padding-bottom: 60%;
  background: radial-gradient(circle, rgba(151,111,41,.40) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -30%; left: -5%;
  width: 40%; padding-bottom: 40%;
  background: radial-gradient(circle, rgba(128,121,67,.28) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.7); max-width: 50ch; margin-inline: auto; margin-bottom: 2rem; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* =============================================================
   12. Accordion (FAQ)
   ============================================================= */
.accordion { display: flex; flex-direction: column; gap: .75rem; }
.accordion-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.accordion-item.open { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.25rem 1.5rem;
  font-family: var(--sans); font-size: 1rem; font-weight: 600;
  color: var(--navy); text-align: left; cursor: pointer;
  background: none; border: 0;
}
.accordion-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease-out);
  font-size: .75rem; color: var(--navy);
}
.accordion-item.open .accordion-icon {
  background: var(--teal); color: var(--white); transform: rotate(45deg);
}
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-soft), padding .3s ease;
}
.accordion-body-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9375rem; color: var(--text-mute); line-height: 1.7;
}

/* =============================================================
   13. Steps (Appointments)
   ============================================================= */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 1.5rem;
  padding-bottom: 2.5rem; position: relative;
}
.step:not(:last-child)::before {
  content: '';
  position: absolute; left: 22px; top: 52px; bottom: 0;
  width: 2px; background: var(--gray-100);
}
.step-num {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--serif); font-weight: 700; font-size: 1.125rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.step-title { font-family: var(--serif); font-size: 1.1875rem; color: var(--navy); margin-bottom: .5rem; }
.step-text { font-size: .9375rem; color: var(--text-mute); line-height: 1.7; }

/* =============================================================
   14. Contact form
   ============================================================= */
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.form-label { font-size: .875rem; font-weight: 600; color: var(--navy); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .875rem 1rem;
  font-family: var(--sans); font-size: .9375rem;
  color: var(--ink); background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: border-color .2s ease, box-shadow .2s ease;
  appearance: none; -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(151,111,41,.12);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-hint { font-size: .8125rem; color: var(--text-mute); }

/* =============================================================
   15. Info boxes
   ============================================================= */
.info-box {
  background: var(--teal-light);
  border: 1px solid rgba(151,111,41,.22);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  display: flex; gap: .875rem; align-items: flex-start;
}
.info-box-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.info-box-text { font-size: .9375rem; color: var(--ink-soft); line-height: 1.65; }

/* =============================================================
   16. Page hero (inner pages)
   ============================================================= */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-eyebrow { color: var(--teal); margin-bottom: 1rem; }
.page-hero-eyebrow::before { background: var(--teal); }
.page-hero-title { font-size: clamp(2rem, 4vw, 3.25rem); color: var(--white); margin-bottom: 1rem; }
.page-hero-sub { font-family: var(--sans); font-size: clamp(1rem, 1.5vw, 1.125rem); color: rgba(255,255,255,.65); max-width: 54ch; }

/* =============================================================
   17. WhatsApp Float
   ============================================================= */
.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-tooltip {
  position: absolute; right: calc(100% + .75rem);
  background: var(--navy); color: var(--white);
  font-size: .8125rem; font-weight: 500; padding: .5rem .875rem;
  border-radius: var(--r-sm); white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* =============================================================
   18. Footer
   ============================================================= */
.footer {
  background: var(--navy-3);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand-name {
  font-family: var(--serif); font-size: 1.375rem;
  color: var(--white); margin-bottom: .375rem;
}
.footer-logo-img {
  height: 60px; width: auto; display: block;
  margin-bottom: 1rem;
}
.footer-brand-sub { font-size: .8125rem; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 28ch; }
.footer-col-title { font-weight: 600; color: var(--white); margin-bottom: 1rem; font-size: .9375rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-link {
  font-size: .875rem; color: rgba(255,255,255,.6);
  transition: color .2s ease;
}
.footer-link:hover { color: var(--teal); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .875rem; color: rgba(255,255,255,.6);
  margin-bottom: .625rem;
}
.footer-contact-icon { flex-shrink: 0; margin-top: .15rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center; justify-content: space-between;
  padding-block: 1.5rem;
  font-size: .8125rem; color: rgba(255,255,255,.45);
}
.footer-legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,.45); transition: color .2s ease; }
.footer-legal-links a:hover { color: rgba(255,255,255,.75); }

/* =============================================================
   19. Reveal animations
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
}
.reveal[data-split] { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* =============================================================
   20. Coverage page
   ============================================================= */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.coverage-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 1.25rem;
  display: flex; align-items: center; gap: .875rem;
  font-size: .9375rem; font-weight: 500; color: var(--navy);
  transition: all .3s ease;
}
.coverage-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.coverage-placeholder {
  background: var(--gray-50);
  border: 2px dashed var(--gray-200);
  color: var(--text-mute);
  cursor: default;
}

/* =============================================================
   21. Legal pages
   ============================================================= */
.legal-content {
  max-width: 72ch;
  margin-inline: auto;
}
.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem; margin-bottom: .75rem;
}
.legal-content p { margin-bottom: 1rem; font-size: .9375rem; color: var(--text-soft); line-height: 1.75; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; }
.legal-content li { font-size: .9375rem; color: var(--text-soft); margin-bottom: .5rem; line-height: 1.7; }

/* =============================================================
   22. Map placeholder
   ============================================================= */
.map-placeholder {
  aspect-ratio: 16/9;
  background: var(--gray-100);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem; color: var(--text-mute);
  border: 2px dashed var(--gray-200);
}
.map-placeholder svg { width: 36px; height: 36px; opacity: .4; }

/* =============================================================
   23. Responsive — Tablet 720px+
   ============================================================= */
@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .nav-mobile { display: none !important; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   24. Responsive — Desktop 960px+
   ============================================================= */
@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .coverage-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }

  .hero-content { max-width: 65%; }
}

/* =============================================================
   25. Responsive — Large 1280px+
   ============================================================= */
@media (min-width: 1280px) {
  .hero-content { max-width: 58%; }
}

/* =============================================================
   27. Hero calmo (inicio simplificado)
   ============================================================= */
.hero-calm {
  padding-top: calc(var(--nav-h) + clamp(2rem, 6vw, 4rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: var(--off-white);
  position: relative; overflow: hidden;
}
.hero-calm::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 50%; padding-bottom: 50%;
  background: radial-gradient(circle, rgba(151,111,41,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-calm-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) { .hero-calm-grid { grid-template-columns: 1.05fr 0.95fr; } }
.hero-calm-title {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  color: var(--navy); line-height: 1.1; margin-bottom: 1.25rem;
}
.hero-calm-title em { font-style: italic; color: var(--scotch); }
.hero-calm-sub {
  font-family: var(--sans); font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-soft); line-height: 1.75; max-width: 50ch; margin-bottom: 2rem;
}
.hero-calm-photo {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
}
.hero-calm-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Dúo de fotos del lugar */
.photo-duo { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 720px) { .photo-duo { grid-template-columns: 1fr 1fr; } }
.photo-card {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); position: relative;
}
.photo-card img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3;
  transition: transform .7s var(--ease-out);
}
.photo-card:hover img { transform: scale(1.04); }
.photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem .95rem;
  background: linear-gradient(transparent, rgba(28,25,22,.8));
  color: #fff; font-size: .9rem; font-weight: 500;
}

/* Tarjeta de info simple (ubicación/contacto rápido) */
.simple-info {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 720px) { .simple-info { grid-template-columns: repeat(3, 1fr); } }
.simple-info-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--r-lg); padding: 1.75rem; text-align: center;
}
.simple-info-card .card-icon { margin-inline: auto; }

/* =============================================================
   26. Print
   ============================================================= */
@media print {
  .nav, .whatsapp-float, .cta-banner { display: none; }
  body { font-size: 12pt; }
}
