/* ══════════════════════════════════════
   DESIGN SYSTEM — PREMIUM MINIMAL
   MicroCare SB · Soluciones de Belleza
══════════════════════════════════════ */

/* ══════════════════════════════════════
   DESIGN SYSTEM — PREMIUM MINIMAL
   MicroCare SB · Soluciones de Belleza
══════════════════════════════════════ */
:root {
  --ink:      #111111;
  --ink-2:    #444444;
  --ink-3:    #888888;
  --paper:    #FAFAFA;
  --paper-2:  #F3F3F1;
  --line:     #E8E8E4;
  --az:       #1A5276;
  --az-soft:  #EBF1F7;
  --wa:       #25D366;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --tracking: 0.12em;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: #e5e5e3; color: var(--ink); -webkit-font-smoothing: antialiased; }

/* ══ SITE ══ */
.site {
  background: var(--paper);
  border-radius: 2px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.10);
}

/* ══ NAV ══ */
.site-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  position: sticky; top: 0; z-index: 100;
}
.nav-logo { height: 32px; object-fit: contain; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  padding: 9px 20px;
  border-radius: 0;
  cursor: pointer;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ HERO ══ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  background: var(--paper);
}
.hero-l {
  padding: 80px 64px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--az);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--az);
}
.hero h1 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--az);
}
.hero-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 380px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s;
  width: fit-content;
  margin-bottom: 12px;
}
.btn-primary:hover { background: var(--az); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--ink-2);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  width: fit-content;
  padding: 0;
}
.btn-secondary:hover { color: var(--ink); }
.btn-secondary::after { content: '→'; font-size: 13px; }
.hero-r {
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
}
.hero-r img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0%) contrast(1.04) saturate(1.04);
  transition: transform 6s ease;
}
.hero-r:hover img { transform: scale(1.03); }

/* ══ STATS ══ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: var(--tracking);
  text-transform: uppercase;
}

/* ══ SECCIONES ══ */
.sec { padding: 80px 48px; }
.sec-alt { background: var(--paper-2); padding: 80px 48px; }
.sec-header { margin-bottom: 48px; }
.sec-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--az);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.sec-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--az);
}
.sec h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.sec p.lead {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.8;
  max-width: 560px;
}

/* ══ SERVICIOS ══ */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.svc-item {
  padding: 32px 20px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}
.svc-item:last-child { border-right: none; }
.svc-item:hover { background: var(--az-soft); }
.svc-num {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-style: italic;
}
.svc-item h3 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.svc-item p {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ══ GALERÍA ══ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  margin-top: 40px;
  background: var(--line);
}
.gal-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--paper-2);
}
.gal-item img {
  width: 100%; display: block;
  object-fit: cover;
  filter: grayscale(10%);
  transition: all 0.5s ease;
}
.gal-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.gal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(transparent, rgba(17,17,17,0.65));
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-item:hover .gal-caption { opacity: 1; }
.gal-caption span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: var(--tracking);
  text-transform: uppercase;
}

/* ══ TESTIMONIALES ══ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 40px;
}
.testi-item {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.testi-item:last-child { border-right: none; }
.testi-quote {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--line);
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
}
.testi-item p {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.testi-name {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: var(--tracking);
  text-transform: uppercase;
}
.testi-stars {
  font-size: 10px;
  color: #C4A35A;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* ══ CTA FINAL ══ */
.cta-section {
  background: var(--ink);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-left h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--paper);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.cta-left p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(250,250,250,0.6);
  line-height: 1.75;
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.btn-wa-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: none;
  padding: 16px 28px;
  cursor: pointer;
  transition: all 0.2s;
  width: fit-content;
}
.btn-wa-cta:hover { background: var(--wa); color: #fff; }
.cta-contact {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-contact span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: rgba(250,250,250,0.45);
  letter-spacing: 0.05em;
}

/* ══ FOOTER ══ */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo { height: 24px; object-fit: contain; opacity: 0.5; }
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  color: var(--ink-3);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink); }
.footer-copy {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}

/* ══ PAGE HERO ══ */
.page-hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.page-hero-l .eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--az);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.page-hero-l .eyebrow::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--az);
}
.page-hero-l h1 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.page-hero-r p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.8;
}

/* ══ RECOMENDACIONES ══ */
.rec-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 40px;
}
.rec-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.rec-item:last-child { border-bottom: none; }
.rec-item:hover { background: var(--az-soft); }
.rec-num {
  padding: 28px;
  display: flex; align-items: flex-start; justify-content: center;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-3);
  font-weight: 400;
}
.rec-body { padding: 28px 32px; }
.rec-body h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.rec-body p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ══ METODOLOGÍA ══ */
.met-grid {
  display: grid; gap: 0;
  border: 1px solid var(--line);
  margin-top: 40px;
}
.met-item {
  display: grid; grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.met-item:last-child { border-bottom: none; }
.met-item:hover { background: var(--az-soft); }
.met-label {
  padding: 28px 32px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--az);
  display: flex; align-items: flex-start;
}
.met-body {
  padding: 28px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.75;
}

/* ══ CIUDADES ══ */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 40px;
}
.city-item {
  padding: 16px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: 0.05em;
  transition: all 0.2s;
  cursor: default;
}
.city-item:hover { background: var(--az); color: #fff; }

/* ══ TABLA ══ */
.cal-table {
  width: 100%; border-collapse: collapse;
  margin-top: 40px;
  border: 1px solid var(--line);
}
.cal-table th {
  padding: 14px 20px; text-align: left;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  color: var(--ink-3); letter-spacing: var(--tracking); text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.cal-table td {
  padding: 14px 20px;
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  color: var(--ink-2); border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.cal-table tr:last-child td { border-bottom: none; }
.cal-table tr:hover td { background: var(--az-soft); }

/* ══ WA FLOTANTE ══ */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 9990;
}
.wa-float-btn {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.wa-float-btn:hover { background: var(--az); }

/* ══ DIVIDER ══ */
.divider { height: 1px; background: var(--line); }

/* ══ NOSOTROS ══ */
.nos-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 40px;
  border: 1px solid var(--line);
}
.nos-text {
  padding: 48px;
  border-right: 1px solid var(--line);
}
.nos-text p {
  font-family: var(--sans);
  font-size: 16px; font-weight: 300;
  color: var(--ink-2); line-height: 1.85;
  margin-bottom: 20px;
  text-align: justify;
}
.nos-text p:last-child { margin-bottom: 0; }
.nos-list {
  list-style: none; margin-top: 24px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.nos-list li {
  font-family: var(--sans);
  font-size: 12px; font-weight: 400;
  color: var(--ink-2); padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.nos-list li:last-child { border-bottom: none; }
.nos-list li::before {
  content: '—'; color: var(--az);
  font-weight: 300; font-size: 12px;
}
.nos-img { overflow: hidden; }
.nos-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  filter: grayscale(15%);
  transition: transform 5s ease;
  min-height: 400px;
}
.nos-img:hover img { transform: scale(1.04); }

/* ══ MAPA ══ */
.mapa-wrap {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  border: 1px solid var(--line);
}
.mapa-svg-wrap {
  padding: 40px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-2);
}
.mapa-svg-wrap svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}
.mapa-svg-wrap svg path {
  fill: #E8E8E4;
  stroke: #fff;
  stroke-width: 1;
  transition: fill 0.2s;
  cursor: default;
}
.mapa-svg-wrap svg path.activo {
  fill: var(--az);
  cursor: pointer;
}
.mapa-svg-wrap svg path.activo:hover {
  fill: #111;
}
.mapa-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mapa-info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.mapa-info p {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 24px;
}
.mapa-ciudades {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.mapa-ciudad-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  color: var(--az);
  background: var(--az-soft);
  padding: 4px 10px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(26,82,118,0.15);
}

/* ══ MODAL CALENDARIO ══ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.6);
  z-index: 9995;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--paper);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.modal-header {
  padding: 32px 36px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-header h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.modal-header p {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-3);
  margin-top: 6px;
  letter-spacing: 0.03em;
}
.modal-close {
  background: transparent;
  border: none;
  font-size: 18px;
  color: var(--ink-3);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
  margin-left: 20px;
}
.modal-close:hover { color: var(--ink); }
.modal-body { padding: 28px 36px 36px; }
.cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cal-nav-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-2);
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cal-nav-btn:hover { border-color: var(--ink); color: var(--ink); }
.cal-month-label {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 24px;
}
.cal-day-name {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-3);
  text-align: center;
  padding: 8px 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cal-day {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-2);
  text-align: center;
  padding: 10px 4px;
  cursor: default;
  transition: all 0.15s;
  border: 1px solid transparent;
}
.cal-day.available {
  color: var(--ink);
  cursor: pointer;
  background: var(--paper-2);
}
.cal-day.available:hover {
  background: var(--az);
  color: #fff;
  border-color: var(--az);
}
.cal-day.selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.cal-day.today {
  border-color: var(--az);
  color: var(--az);
  font-weight: 600;
}
.cal-day.empty { background: transparent; border: none; cursor: default; }
.cal-legend {
  display: flex; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.cal-legend-item {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.legend-dot {
  width: 10px; height: 10px;
}
.cal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cal-form-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.cal-input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.cal-input:focus { border-color: var(--az); }
.cal-input::placeholder { color: var(--ink-3); }
.cal-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 15px 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  margin-top: 6px;
}
.cal-submit:hover { background: var(--az); }
.cal-wa-alt {
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.cal-wa-alt p {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-3);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.cal-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.2s;
}
.cal-wa-btn:hover { background: #25D366; color: #fff; border-color: #25D366; }
.selected-date-info {
  display: none;
  background: var(--az-soft);
  border: 1px solid rgba(26,82,118,0.2);
  padding: 12px 16px;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--az);
  font-weight: 500;
}
.selected-date-info.visible { display: block; }

/* ══ NIVEL 2 EXPANDIBLE ══ */
.nivel2-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  border-top: 1px solid var(--line);
  margin-top: 32px;
  user-select: none;
  transition: opacity 0.2s;
}
.nivel2-toggle:hover { opacity: 0.7; }
.nivel2-toggle span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: var(--tracking);
  text-transform: uppercase;
}
.nivel2-toggle .n2-icon {
  font-size: 16px;
  color: var(--ink-3);
  transition: transform 0.3s ease;
}
.nivel2-toggle.open .n2-icon { transform: rotate(45deg); }
.nivel2-content {
  display: none;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  animation: fadeIn 0.3s ease;
}
.nivel2-content.open { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══ TESTIMONIO ══ */
.testimonio-block {
  border: 1px solid var(--line);
  padding: 40px 48px;
  margin-top: 40px;
  position: relative;
}
.testimonio-block::before {
  content: '"';
  position: absolute;
  top: 16px; left: 36px;
  font-family: var(--serif);
  font-size: 64px;
  color: var(--line);
  line-height: 1;
}
.testimonio-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
}
.testimonio-img {
  width: 200px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  filter: grayscale(15%);
}
.testimonio-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testimonio-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: var(--tracking);
  text-transform: uppercase;
}

/* ══ DIFERENCIADOR ══ */
.diferenciador {
  border-left: 2px solid var(--az);
  padding: 24px 32px;
  margin: 32px 0;
  background: var(--paper-2);
}
.diferenciador p {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.75;
  margin: 0;
}

/* ══ RESULTADOS GRID ══ */
.resultados-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 32px;
}
.resultado-col {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.resultado-col:last-child { border-right: none; }
.resultado-col h4 {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--az);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.resultado-col ul {
  list-style: none;
}
.resultado-col li {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-2);
  padding: 6px 0 6px 14px;
  border-bottom: 1px solid var(--line);
  position: relative;
  line-height: 1.5;
}
.resultado-col li:last-child { border-bottom: none; }
.resultado-col li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--az);
  font-size: 11px;
}

/* ══ GALERÍA NIVEL 1 ══ */
.gallery-nivel1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  margin-top: 40px;
}

/* ══ DIAGNÓSTICO TÉCNICO ══ */
.diagrama-wrap {
  border: 1px solid var(--line);
  padding: 32px;
  margin-top: 24px;
  text-align: center;
}
.diagrama-wrap img {
  max-width: 320px;
  width: 100%;
  filter: grayscale(10%);
}
.diagrama-caption {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-3);
  margin-top: 14px;
  letter-spacing: 0.05em;
}

/* ══ MASCULINA ══ */
.masculina-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 40px;
  align-items: stretch;
}
.masculina-texto {
  padding: 40px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.masculina-texto p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 14px;
}
.masculina-img {
  overflow: hidden;
}
.masculina-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

/* ══ AJUSTES PRODUCCIÓN ══ */
body {
  background: var(--paper);
  overflow-x: hidden;
}
.site {
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}
.nav-links a.active {
  color: var(--az);
  font-weight: 600;
}
img {
  max-width: 100%;
}

/* ══ CALENDARIO MICROCARE 2025 ══ */
.mc-calendar-section {
  background: var(--paper);
  padding: 80px 48px;
  border-top: 1px solid var(--line);
}

.microcare-calendar {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(0,0,0,0.08);
  margin-top: 40px;
}

.mc-cal-header {
  background: linear-gradient(135deg, var(--az) 0%, #0d3259 100%);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.mc-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mc-logo {
  width: 210px;
  max-width: 36vw;
  height: auto;
  background: rgba(255,255,255,0.96);
  border-radius: 4px;
  padding: 10px 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.16);
  display: block;
}

.mc-title p {
  margin: 5px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.76);
  line-height: 1.5;
}

.mc-title .mc-small {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.mc-year {
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 86px);
  font-weight: 400;
  color: rgba(255,255,255,0.16);
  letter-spacing: -0.05em;
  line-height: 1;
}

.mc-notice {
  padding: 18px 32px;
  background: #D6EAF8;
  border-bottom: 1px solid rgba(26,82,118,0.18);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.mc-notice p {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--az);
  line-height: 1.6;
}

.mc-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border: none;
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.mc-whatsapp:hover {
  background: var(--wa);
  color: #fff;
}

.mc-cal-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 600px;
}

.mc-leyenda {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.mc-leyenda-title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.mc-leyenda-grupo {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.mc-leyenda-grupo:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.mc-leyenda-grupo-titulo {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mc-leyenda-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.mc-leyenda-color {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}

.mc-leyenda-label {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-2);
  line-height: 1.3;
}

.mc-meses-grid {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.mc-mes {
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
}

.mc-mes-titulo {
  background: var(--az);
  color: #fff;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px;
  text-align: center;
  letter-spacing: 0.05em;
}

.mc-mes-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 1px;
}

.mc-dia-nombre {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  color: var(--ink-3);
  text-align: center;
  padding: 6px 2px;
  background: var(--paper);
  letter-spacing: 0.05em;
}

.mc-dia {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  color: var(--ink);
  text-align: center;
  min-height: 28px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 1px;
}

.mc-dia.vacio {
  color: transparent;
  background: var(--paper);
}

.c-aragon { background: #8B4513 !important; color: #fff !important; }
.c-veracruz { background: #006400 !important; color: #fff !important; }
.c-nd { background: #696969 !important; color: #fff !important; }
.c-vac { background: #FFD700 !important; color: #333 !important; }
.c-lapaz { background: #DAA520 !important; color: #fff !important; }
.c-cabos { background: #FFA500 !important; color: #fff !important; }
.c-cabosmsb { background: #FF8C00 !important; color: #fff !important; }
.c-tijuana { background: #DC143C !important; color: #fff !important; }
.c-ensenada { background: #B22222 !important; color: #fff !important; }
.c-sjr { background: #FF6347 !important; color: #fff !important; }
.c-teoti { background: #FF4500 !important; color: #fff !important; }
.c-queretaro { background: #C71585 !important; color: #fff !important; }
.c-hermosillo { background: #6A0DAD !important; color: #fff !important; }
.c-gdl { background: #9932CC !important; color: #fff !important; }
.c-obregon { background: #BA55D3 !important; color: #fff !important; }
.c-colima { background: #DDA0DD !important; color: #333 !important; }
.c-toluca { background: #228B22 !important; color: #fff !important; }
.c-metepec { background: #32CD32 !important; color: #333 !important; }
.c-taxco { background: #00CED1 !important; color: #fff !important; }
.c-cuernavaca { background: #20B2AA !important; color: #fff !important; }
.c-vuelos { background: #87CEEB !important; color: #333 !important; }
.c-delvalle { background: #4169E1 !important; color: #fff !important; }

.mc-frase {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 18px 32px;
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--az);
  letter-spacing: 0.02em;
}

/* ══ RESULTADOS MICROCARE SB — GALERÍA INTERACTIVA ══ */
.mc-results-section-home {
  background: var(--paper);
  padding: 80px 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mc-results-header {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: end;
}

.mc-results-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.mc-results-header h2 em {
  color: var(--az);
  font-style: italic;
}

.mc-results-copy {
  border-left: 1px solid var(--line);
  padding-left: 36px;
}

.mc-results-copy p {
  margin: 0;
  max-width: 600px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-2);
}

.mc-results-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 12px;
}

.mc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.mc-gallery-item {
  position: relative;
  aspect-ratio: 4 / 3.1;
  overflow: hidden;
  cursor: zoom-in;
  border: none;
  padding: 0;
  background: var(--paper-2);
  display: block;
  text-align: left;
}

.mc-gallery-item img {
  width: 100%;
  height: 100%;
  image-rendering: auto;
  object-fit: cover;
  filter: grayscale(6%) contrast(1.03);
  transform: scale(1.001);
  transition: transform 0.55s ease, filter 0.55s ease;
  display: block;
}

.mc-gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.06);
}

.mc-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.78), rgba(17,17,17,0.12), rgba(17,17,17,0.0));
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  transition: opacity 0.28s ease;
  z-index: 2;
}

.mc-gallery-item:hover .mc-gallery-overlay {
  opacity: 1;
}

.mc-gallery-overlay span {
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: var(--tracking);
  text-transform: uppercase;
}

.mc-gallery-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.75);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mc-gallery-label {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 3;
  background: rgba(250,250,250,0.95);
  border: 1px solid rgba(232,232,228,0.88);
  padding: 9px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: calc(100% - 36px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.mc-gallery-label strong {
  font-family: var(--serif);
  color: var(--az);
  font-size: 16px;
  font-weight: 400;
}

.mc-gallery-label span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: var(--tracking);
  text-transform: uppercase;
  line-height: 1.3;
}

.mc-results-note {
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* LIGHTBOX RESULTADOS */
.mc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(17,17,17,0.88);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.mc-lightbox.open {
  display: flex;
}

.mc-lightbox-inner {
  width: min(1120px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  background: var(--paper);
  box-shadow: 0 24px 100px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}

.mc-lightbox-image-wrap {
  background: #050505;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-lightbox-image-wrap img {
  max-width: 100%;
  max-height: calc(100vh - 56px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.mc-lightbox-info {
  padding: 36px 32px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 5;
  background: var(--paper);
}

#mc-lightbox-description {
  text-align: justify;
}
.mc-lightbox-info-top small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--az);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mc-lightbox-info h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.mc-lightbox-info p {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.75;
}

.mc-lightbox-help {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.6;
}

.mc-lightbox-counter {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: var(--tracking);
  text-transform: uppercase;
}

.mc-lightbox-close,
.mc-lightbox-prev,
.mc-lightbox-next {
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s ease;
}

.mc-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 22px;
  z-index: 4;
}

.mc-lightbox-close:hover {
  background: var(--ink);
  color: #fff;
}

.mc-lightbox-prev,
.mc-lightbox-next {
  position: absolute;
  bottom: 24px;
  width: 44px;
  height: 52px;
  background: rgba(255,255,255,0.90);
  color: var(--ink);
  font-size: 26px;
  z-index: 3;
}

.mc-lightbox-prev {
  left: 18px;
}

.mc-lightbox-next {
  right: 326px;
}

.mc-lightbox-prev:hover,
.mc-lightbox-next:hover {
  background: var(--az);
  color: #fff;
}

/* ══ AJUSTES CLIENTE MICROCARE — v3.6 ══ */
.microcare-blue-statement {
  color: var(--az) !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.microcare-clinical-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  margin: 40px 48px;
  background: var(--paper);
}

.microcare-clinical-img {
  padding: 32px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-2);
}

.microcare-clinical-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.microcare-clinical-text {
  padding: 40px;
  display: flex;
  align-items: center;
}

.microcare-clinical-text p {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
  line-height: 1.85;
  margin: 0;
}

/* AJUSTE LOGO 35 ANIVERSARIO */
.nav-logo {
  height: 46px;
  max-width: 240px;
  object-fit: contain;
}

.footer-logo {
  height: 34px;
  max-width: 220px;
  object-fit: contain;
}

