/* =============================================================
   Barbería El Marqués — Hoja de estilos principal
   Montserrat · fondo oscuro · acento #C87C00 · texto blanco
   ============================================================= */

:root {
  --bg: #0d0c0a;
  --bg-2: #14120f;
  --bg-3: #1b1814;
  --accent: #C87C00;
  --accent-2: #e6920a;
  --accent-dark: #a36600;
  --text: #ffffff;
  --muted: #b8b0a4;
  --muted-2: #8a8378;
  --line: rgba(255, 255, 255, 0.09);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 12px 34px rgba(200, 124, 0, 0.32);
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }

.container { width: min(1200px, 92%); margin: 0 auto; }
section { position: relative; }

/* ---------- Utilidades ---------- */
.accent { color: var(--accent); }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--accent); }

.section-pad { padding: 100px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 16px 0 18px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px; border-radius: 100px; border: 2px solid var(--accent);
  background: var(--accent); color: #0d0c0a; font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.35s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn:hover { background: var(--accent-2); border-color: var(--accent-2); transform: translateY(-3px); box-shadow: var(--shadow-accent); }
.btn-outline { background: transparent; color: var(--text); }
.btn-outline:hover { background: var(--accent); color: #0d0c0a; }
.btn-lg { padding: 19px 44px; font-size: 1.02rem; }
.btn-sm { padding: 11px 22px; font-size: 0.8rem; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

/* ---------- Hero de páginas internas ---------- */
.page-hero { position: relative; padding: 190px 0 90px; text-align: center; background: var(--bg-2); overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.22; }
.page-hero .bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,12,10,.4), var(--bg-2)); }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); text-transform: uppercase; margin: 14px 0; }
.page-hero p { color: var(--muted); max-width: 680px; margin: 0 auto; }
.prod-group-title { color: var(--accent); font-size: 1.4rem; margin: 8px 0 4px; text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Encabezado / Navegación ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); transition: background 0.4s var(--ease), box-shadow 0.4s, transform 0.4s;
}
.site-header.scrolled { background: rgba(13, 12, 10, 0.97); box-shadow: 0 10px 40px rgba(0,0,0,0.4); }
.site-header.hidden { transform: translateY(-100%); }
.nav-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; }
.logo img { height: 56px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-menu a {
  position: relative; display: inline-block; padding: 10px 16px;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.02em; color: var(--text);
  transition: color 0.3s;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 16px; right: 100%; bottom: 4px; height: 2px;
  background: var(--accent); transition: right 0.35s var(--ease);
}
.nav-menu a:hover::after, .nav-menu a.active::after { right: 16px; }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-mobile-cta { display: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  align-items: center; justify-content: center; background: transparent; border: none; z-index: 1101;
}
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; transition: all 0.35s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; background: #0d0c0a;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease, transform 7s linear;
  will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; }
.hero-slide.kenburns { transform: scale(1.08); }
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(13,12,10,0.35) 0%, rgba(13,12,10,0.82) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 40px 20px; }
.hero-logo { height: clamp(120px, 22vw, 220px); width: auto; margin: 0 auto 26px; filter: brightness(0) invert(1); }
.hero-title {
  font-size: clamp(2.6rem, 8vw, 5.5rem); font-weight: 900; letter-spacing: 0.02em;
  text-transform: uppercase; line-height: 0.95;
}
.hero-title .line { display: block; }
.hero-sub { color: var(--muted); font-size: clamp(1rem, 2.2vw, 1.3rem); margin: 22px 0 34px; letter-spacing: 0.06em; }
.hero-indicators { display: flex; gap: 10px; justify-content: center; margin-top: 40px; }
.hero-indicators button {
  width: 34px; height: 4px; border: none; border-radius: 4px; background: rgba(255,255,255,0.25);
  transition: all 0.4s;
}
.hero-indicators button.active { background: var(--accent); width: 52px; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: var(--muted); font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.hero-scroll .arrow { width: 22px; height: 34px; border: 2px solid var(--accent); border-radius: 12px; position: relative; }
.hero-scroll .arrow::after {
  content: ''; position: absolute; top: 7px; left: 50%; width: 3px; height: 8px; background: var(--accent);
  transform: translateX(-50%); border-radius: 2px; animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 80% { opacity: 0; top: 18px; } }

/* ---------- Divider de pincelada (brush) ---------- */
.brush {
  position: relative; width: 100%; line-height: 0; display: block; pointer-events: none;
  z-index: 2; margin-top: -1px;
}
.brush svg { width: 100%; height: clamp(40px, 8vw, 90px); display: block; }
.brush.flip { transform: scaleX(-1); }

/* ---------- Tarjetas (boxes) ---------- */
.boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.box {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 32px; transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  position: relative; overflow: hidden;
}
.box::before {
  content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent); opacity: 0; transition: opacity 0.4s;
}
.box:hover { transform: translateY(-8px); border-color: rgba(200,124,0,0.4); box-shadow: var(--shadow); }
.box:hover::before { opacity: 1; }
.box .icon { width: 60px; height: 60px; border-radius: 14px; background: rgba(200,124,0,0.14); display: grid; place-items: center; margin-bottom: 22px; }
.box .icon svg { width: 28px; height: 28px; stroke: var(--accent); }
.box h3 { font-size: 1.25rem; margin-bottom: 12px; }
.box p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Sobre / contenido dividido ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .media { border-radius: var(--radius); overflow: hidden; position: relative; }
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split .media::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 0 2px rgba(200,124,0,0.25); border-radius: var(--radius); }
.split h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 16px 0 20px; }
.split p { color: var(--muted); margin-bottom: 18px; }

/* ---------- CTA ---------- */
.cta-section { position: relative; background-size: cover; background-position: center; background-attachment: fixed; text-align: center; padding: 130px 0; }
.cta-section .overlay { position: absolute; inset: 0; background: rgba(13,12,10,0.78); }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 18px; }
.cta-section p { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto 30px; }
.cta-section .phone { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); font-weight: 800; font-size: 1.15rem; margin-bottom: 26px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sección acento (horario) ---------- */
.accent-section { background: var(--accent); color: #0d0c0a; text-align: center; padding: 90px 0; }
.accent-section h2 { color: #0d0c0a; font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.accent-section .hours { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 34px; }
.accent-section .hours .block { min-width: 200px; }
.accent-section .hours .day { font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.9rem; }
.accent-section .hours .time { font-size: 2rem; font-weight: 900; margin-top: 6px; }

/* ---------- Mapa ---------- */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Reviews carousel ---------- */
.reviews { overflow: hidden; }
.reviews-track { display: flex; gap: 24px; transition: transform 0.6s var(--ease); }
.review-card {
  flex: 0 0 auto; width: 360px; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; position: relative;
}
.review-card .stars { color: var(--accent); letter-spacing: 2px; font-size: 1.1rem; margin-bottom: 16px; }
.review-card .quote { color: var(--text); font-size: 1rem; margin-bottom: 22px; min-height: 72px; }
.review-card .who { display: flex; align-items: center; gap: 14px; }
.review-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(200,124,0,0.2); display: grid; place-items: center; font-weight: 800; color: var(--accent); }
.review-card .name { font-weight: 800; font-size: 0.95rem; }
.review-card .date { color: var(--muted-2); font-size: 0.8rem; }
.reviews-controls { display: flex; gap: 12px; justify-content: center; margin-top: 34px; }
.reviews-controls button {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-2);
  color: var(--text); font-size: 1.3rem; transition: all 0.3s;
}
.reviews-controls button:hover { background: var(--accent); color: #0d0c0a; border-color: var(--accent); }

/* ---------- Catálogo de servicios / productos ---------- */
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.catalog-card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.catalog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(200,124,0,0.4); }
.catalog-card .thumb { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--bg-3); }
.catalog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.catalog-card:hover .thumb img { transform: scale(1.08); }
.catalog-card .body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.catalog-card .tag { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.catalog-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.catalog-card p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.catalog-card .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.catalog-card .price { color: var(--accent); font-weight: 900; font-size: 1.25rem; }

/* Tarjetas de servicio con imagen de fondo y degradado */
.svc-group-title { color: var(--accent); font-size: 1.6rem; margin: 6px 0 4px; text-transform: uppercase; letter-spacing: .04em; }
.service-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 340px; background-size: cover; background-position: center;
  background-color: var(--bg-3); border: 1px solid var(--line);
  display: flex; align-items: flex-end;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(200,124,0,0.4); }
.sc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,12,10,0.02) 0%, rgba(13,12,10,0.5) 55%, rgba(13,12,10,0.94) 100%);
  transition: background 0.4s;
}
.service-card:hover .sc-overlay {
  background: linear-gradient(180deg, rgba(13,12,10,0.02) 0%, rgba(200,124,0,0.32) 55%, rgba(13,12,10,0.96) 100%);
}
.sc-body { position: relative; padding: 26px; width: 100%; }
.sc-body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.sc-body p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

/* Chips de categorías */
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-chips button {
  padding: 10px 22px; border-radius: 100px; border: 1px solid var(--line); background: var(--bg-2);
  color: var(--muted); font-weight: 700; font-size: 0.85rem; transition: all 0.3s;
}
.filter-chips button.active, .filter-chips button:hover { background: var(--accent); color: #0d0c0a; border-color: var(--accent); }

/* ---------- Pie de página ---------- */
.site-footer { background: #0a0908; border-top: 1px solid var(--line); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { font-size: 1rem; margin-bottom: 20px; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer ul a, .site-footer ul li { color: var(--muted); font-size: 0.92rem; transition: color 0.3s; }
.site-footer ul a:hover { color: var(--accent); }
.footer-logo img { height: 60px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center;
  transition: all 0.3s; color: var(--muted);
}
.footer-social a:hover { background: var(--accent); color: #0d0c0a; border-color: var(--accent); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: 0.85rem; }
.footer-admin { color: var(--muted-2); opacity: .7; transition: .2s; }
.footer-admin:hover { color: var(--accent); opacity: 1; }

/* ---------- Botones flotantes ---------- */
.float-stack { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; flex-direction: column; gap: 14px; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%; border: none; display: grid; place-items: center;
  box-shadow: var(--shadow); transition: transform 0.3s var(--ease), opacity 0.3s; color: #fff;
}
.float-btn svg { width: 26px; height: 26px; }
.float-btn.whatsapp { background: #25D366; }
.float-btn.whatsapp:hover { transform: translateY(-4px) scale(1.05); }
.float-btn.to-top { background: var(--accent); color: #0d0c0a; opacity: 0; pointer-events: none; }
.float-btn.to-top.show { opacity: 1; pointer-events: auto; }
.float-btn.to-top:hover { transform: translateY(-4px); }

/* ---------- Formularios ---------- */
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 15px 18px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--bg-2); color: var(--text); font-size: 1rem; transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,124,0,0.18);
}
.field textarea { min-height: 110px; resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C87C00' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

/* ---------- Reservas (multistep) ---------- */
.booking-shell { background: var(--bg-2); border: 1px solid var(--line); border-radius: 22px; padding: clamp(24px, 4vw, 48px); box-shadow: var(--shadow); }
.booking-progress { display: flex; justify-content: space-between; margin-bottom: 36px; position: relative; }
.booking-progress::before { content: ''; position: absolute; top: 16px; left: 5%; right: 5%; height: 2px; background: var(--line); }
.step-dot { position: relative; z-index: 1; text-align: center; width: 72px; }
.step-dot .dot { width: 34px; height: 34px; margin: 0 auto; border-radius: 50%; background: var(--bg-3); border: 2px solid var(--line); display: grid; place-items: center; font-weight: 800; font-size: 0.9rem; transition: all 0.3s; }
.step-dot .label { font-size: 0.68rem; color: var(--muted-2); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.step-dot.active .dot { background: var(--accent); border-color: var(--accent); color: #0d0c0a; }
.step-dot.done .dot { background: var(--accent); border-color: var(--accent); color: #0d0c0a; }
.step-dot.active .label { color: var(--text); }

.booking-step { display: none; animation: fadeUp 0.5s var(--ease); }
.booking-step.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.booking-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 34px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.choice {
  border: 2px solid var(--line); border-radius: var(--radius-sm); padding: 18px; background: var(--bg-3);
  cursor: pointer; transition: all 0.25s; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
.choice:hover { border-color: rgba(200,124,0,0.5); }
.choice.selected { border-color: var(--accent); background: rgba(200,124,0,0.12); }
.choice .t { font-weight: 700; }
.choice .m { color: var(--muted); font-size: 0.82rem; }
.choice .p { color: var(--accent); font-weight: 800; }
.choice input { display: none; }
.chairs-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) { .chairs-grid { grid-template-columns: 1fr; } }

/* Tarjetas de categoría (paso 1) con foto de fondo */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 560px; }
.cat-card { position: relative; background-size: cover; background-position: center; background-color: var(--bg-3); min-height: 200px; border-radius: var(--radius); overflow: hidden; display: flex; align-items: flex-end; cursor: pointer; border: 2px solid transparent; transition: border-color .25s, transform .25s; }
.cat-card:hover { transform: translateY(-3px); }
.cat-card.selected { border-color: var(--accent); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,12,10,.05) 0%, rgba(13,12,10,.84) 100%); }
.cat-body { position: relative; padding: 20px; width: 100%; }
.cat-body .t { font-weight: 800; font-size: 1.15rem; }
.cat-cta { margin-top: 6px; font-size: .85rem; font-weight: 700; color: var(--accent); }
@media (max-width: 600px) { .cat-grid { grid-template-columns: 1fr; max-width: 360px; } }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 10px; }
.slot {
  padding: 13px 8px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--bg-3);
  text-align: center; font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.25s;
}
.slot.available { border-color: rgba(46, 204, 113, 0.55); color: #2ecc71; }
.slot.available:hover { background: #2ecc71; color: #0d0c0a; border-color: #2ecc71; }
.slot.available.selected { background: #2ecc71; color: #0d0c0a; border-color: #2ecc71; }
.slot.unavailable { border-color: rgba(229, 83, 60, 0.4); color: #e5533c; opacity: 0.5; cursor: not-allowed; }

/* Tarjeta de servicio (selección) con botón de detalles */
.service-choice { flex-direction: column; align-items: stretch; }
.service-choice .c-main { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.c-details { margin-top: 12px; padding: 9px; border: 1px solid var(--line); background: var(--bg-2); color: var(--accent); border-radius: 8px; font-weight: 700; font-size: 0.8rem; width: 100%; transition: all 0.25s; }
.c-details:hover { border-color: var(--accent); background: rgba(200,124,0,0.12); }

/* Modal de detalles de servicio */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.72); backdrop-filter: blur(5px); z-index: 1200; display: grid; place-items: center; padding: 20px; animation: fadeUp 0.25s var(--ease); }
.modal { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; max-width: 540px; width: 100%; position: relative; max-height: 84vh; overflow-y: auto; box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-3); color: var(--text); font-size: 1.4rem; line-height: 1; transition: all 0.25s; }
.modal-close:hover { background: var(--accent); color: #0d0c0a; border-color: var(--accent); }
.modal h3 { font-size: 1.45rem; margin: 12px 0 14px; }
.modal-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.modal-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-weight: 700; }
.modal-price { color: var(--accent); font-weight: 900; font-size: 1.25rem; }

/* Layout fecha + horarios (calendario izq, slots der en desktop) */
.date-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.date-slots { min-width: 0; }
@media (max-width: 760px) { .date-layout { grid-template-columns: 1fr; } }

.calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; max-width: 400px; }
.calendar .dow { text-align: center; font-size: 0.66rem; font-weight: 800; text-transform: uppercase; color: var(--muted-2); padding: 5px 0; }
.calendar .day {
  min-height: 34px; display: grid; place-items: center; border-radius: 8px; font-weight: 700; font-size: 0.82rem;
  background: var(--bg-3); border: 1px solid transparent; cursor: pointer; transition: all 0.2s; color: var(--muted);
}
.calendar .day.other { opacity: 0.25; pointer-events: none; }
.calendar .day.disabled { opacity: 0.25; pointer-events: none; text-decoration: line-through; }
.calendar .day:hover { border-color: var(--accent); color: var(--text); }
.calendar .day.selected { background: var(--accent); color: #0d0c0a; }
.calendar .day.today { border-color: rgba(200,124,0,0.5); }
.calendar-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.calendar-head button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-3); color: var(--text); font-size: 1.2rem; transition: opacity .2s; }
.calendar-head button:disabled { cursor: not-allowed; }
.calendar-head h4 { font-size: 1.1rem; }

.summary-box { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; max-width: 560px; }
.summary-box .row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.summary-box .row:last-child { border-bottom: none; }
.summary-box .row .k { color: var(--muted); }
.summary-box .total { font-size: 1.3rem; font-weight: 900; color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .boxes, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-menu {
    position: fixed; inset: 0; background: rgba(13,12,10,0.98); backdrop-filter: blur(10px);
    flex-direction: column; justify-content: center; gap: 8px;
    transform: translateX(100%); transition: transform 0.45s var(--ease); z-index: 1100;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.5rem; padding: 14px; }
  .nav-menu a::after { display: none; }
  .hamburger { display: flex; }
  .nav-cta .btn { padding: 9px 15px; font-size: 0.74rem; }
  .nav-mobile-cta { display: block; position: absolute; left: 0; right: 0; bottom: 44px; padding: 0 32px; }
  .nav-mobile-cta .btn { width: 100%; font-size: 0.95rem; padding: 15px 24px; }
}
@media (max-width: 620px) {
  .boxes, .catalog-grid { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .review-card { width: 82vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .accent-section .hours { gap: 24px; }
  .section-pad { padding: 70px 0; }
  .hero-scroll { display: none; }
}
