/* ===========================================================
   TOP BARBER — Landing premium · Tema marrón
   =========================================================== */

:root {
  /* Fondos espresso */
  --bg-1: #1d1611;
  --bg-2: #15100b;
  --bg-3: #0d0907;
  /* Marrones de acento */
  --accent: #9a6334;       /* cuero / marrón principal */
  --accent-2: #c79257;     /* caramelo (brillos) */
  --accent-deep: #6c4322;  /* marrón profundo */
  /* Texto */
  --cream: #f3e9d8;
  --muted: #a4988a;
  /* Superficies */
  --card: rgba(255, 255, 255, 0.035);
  --card-2: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg-3);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
section { scroll-margin-top: 90px; }

.heading { font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .9rem 1.9rem; border-radius: 40px; cursor: pointer; border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff; box-shadow: 0 12px 30px rgba(154, 99, 52, .4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(154, 99, 52, .55); }
.btn-ghost { background: var(--card); color: var(--cream); border-color: var(--line); }
.btn-ghost:hover { background: var(--card-2); border-color: var(--accent); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Encabezado de sección ---------- */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.eyebrow {
  display: inline-block; font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 600; margin-bottom: 1rem;
}
.section-head h2 {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif; font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.05; letter-spacing: -.02em;
}
.section-head h2 .accent { color: var(--accent-2); }
.section-head p { margin-top: 1rem; color: var(--muted); font-size: .98rem; }

/* ===========================================================
   NAV (logo centrado · split)
   =========================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent; padding: .65rem 0;
}
.nav.scrolled {
  background: rgba(13, 9, 7, .82); backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
}
.nav-group { display: flex; align-items: center; gap: 2rem; }
.nav-group.right { justify-content: flex-end; }
.nav-group a { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); transition: color .25s; }
.nav-group a:hover { color: var(--cream); }
.nav-logo {
  justify-self: center; display: grid; place-items: center;
  width: 60px; height: 60px; opacity: 0; transform: scale(.85);
  transition: opacity .35s ease, transform .35s ease;
}
.nav.scrolled .nav-logo { opacity: 1; transform: scale(1); }
.nav-logo img {
  width: 100%; height: 100%; object-fit: contain;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 56%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 50%, #000 56%, transparent 70%);
}
.nav .btn { padding: .65rem 1.3rem; font-size: .72rem; }

/* Hamburguesa */
.hamburger {
  display: none; width: 44px; height: 44px; border-radius: 10px; cursor: pointer;
  background: var(--card); border: 1px solid var(--line);
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.hamburger span { width: 18px; height: 2px; background: var(--cream); border-radius: 2px; transition: .3s; }

/* Menú móvil */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49; background: rgba(13, 9, 7, .97);
  backdrop-filter: blur(8px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.8rem;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: 'Poppins', sans-serif; font-size: 1.4rem; color: var(--cream); }
.mobile-menu .btn { margin-top: 1rem; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 7rem 1.5rem 4rem; overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 50%),
    radial-gradient(140% 130% at 50% 8%, #2a2017 0%, var(--bg-1) 32%, var(--bg-2) 66%, var(--bg-3) 100%);
}
.ghost-word {
  position: absolute; top: 52%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Poppins', sans-serif; font-weight: 800; letter-spacing: -.04em;
  font-size: clamp(6rem, 22vw, 20rem); color: rgba(255,255,255,.022);
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

/* Emblema (logo) centrado arriba */
.emblem { position: relative; width: clamp(180px, 24vw, 280px); aspect-ratio: 1; margin-bottom: 1.4rem; }
.emblem .glow {
  position: absolute; inset: -22%; border-radius: 50%;
  background: radial-gradient(circle, rgba(199,146,87,.22) 0%, rgba(154,99,52,.08) 38%, transparent 66%);
  z-index: 0;
}
.emblem .arc {
  position: absolute; inset: -6%; border-radius: 50%;
  border: 6px solid var(--accent); border-left-color: transparent; border-bottom-color: transparent;
  transform: rotate(20deg); z-index: 1;
  filter: drop-shadow(0 0 22px rgba(154,99,52,.5));
  animation: spinIn 1.3s cubic-bezier(.2,.8,.2,1) both;
}
.emblem img {
  position: relative; z-index: 2; width: 100%; height: 100%; object-fit: contain;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 55%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 50%, #000 55%, transparent 70%);
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.6)) contrast(1.05) saturate(1.05);
  animation: float 6s ease-in-out infinite, rise 1.1s ease both;
}
.hero .eyebrow { animation: rise 1s ease both; }
.hero h1 {
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif; font-weight: 700;
  font-size: clamp(2.8rem, 9vw, 6rem); line-height: .95; letter-spacing: -.02em;
  animation: rise 1s ease .05s both;
}
.hero h1 .accent { color: var(--accent-2); }
.hero .lede {
  max-width: 480px; margin: 1.4rem auto 0; color: var(--muted); font-size: 1.02rem; font-weight: 300;
  animation: rise 1s ease .1s both;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2.2rem; animation: rise 1s ease .15s both; }
.hero-stats {
  display: flex; gap: clamp(1.5rem, 5vw, 3.5rem); margin-top: 3rem; flex-wrap: wrap; justify-content: center;
  animation: rise 1s ease .2s both;
}
.hero-stats .stat strong { font-family: 'Poppins', sans-serif; font-size: 1.7rem; color: var(--cream); display: block; }
.hero-stats .stat span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ===========================================================
   SERVICIOS
   =========================================================== */
.bg-soft { background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 50%, var(--bg-3) 100%); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.7rem; transition: transform .3s ease, border-color .3s ease, background .3s ease; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
  background: radial-gradient(120% 80% at 100% 0%, rgba(199,146,87,.08), transparent 50%); opacity: 0; transition: opacity .3s;
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(199,146,87,.4); background: var(--card-2); }
.svc-card:hover::after { opacity: 1; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 1.3rem;
  background: rgba(154,99,52,.14); border: 1px solid rgba(199,146,87,.25); color: var(--accent-2);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; margin-bottom: .5rem; }
.svc-card p { color: var(--muted); font-size: .9rem; min-height: 2.8em; }
.svc-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.svc-price { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--cream); }
.svc-dur { font-size: .78rem; color: var(--muted); letter-spacing: .04em; }
.svc-book {
  margin-top: 1.2rem; width: 100%; justify-content: center; padding: .75rem; font-size: .72rem;
  background: transparent; border: 1px solid var(--line); color: var(--cream); border-radius: 30px;
  cursor: pointer; text-transform: uppercase; letter-spacing: .1em; font-family: 'Poppins', sans-serif; font-weight: 600;
  transition: .25s;
}
.svc-book:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===========================================================
   AGENDAMIENTO + PAGO  (flujo de reserva)
   =========================================================== */
.steps { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.step { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-size: .82rem; }
.step .num {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 700;
  border: 1px solid var(--line); font-size: .85rem; font-family: 'Poppins', sans-serif;
}
.step.active { color: var(--cream); }
.step.active .num { background: var(--accent); border-color: var(--accent); color: #fff; }
.step .bar { width: 34px; height: 1px; background: var(--line); }

.booking-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.6rem; align-items: start; }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); }
.panel h3 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; margin-bottom: 1.4rem; display: flex; align-items: center; gap: .6rem; }

.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }
.field input, .field select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  padding: .85rem 1rem; color: var(--cream); font-size: .95rem; font-family: inherit; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(154,99,52,.18); }
.field select { appearance: none; 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 fill='%23a4988a' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); gap: .6rem; }
.slot {
  padding: .6rem; border-radius: 8px; background: var(--bg-2); border: 1px solid var(--line);
  color: var(--cream); font-size: .85rem; cursor: pointer; text-align: center; transition: .2s; font-family: inherit;
}
.slot:hover { border-color: var(--accent-2); }
.slot.active { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }

/* Resumen / pago */
.summary { position: sticky; top: 100px; }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.summary-row span:first-child { color: var(--muted); }
.summary-row span:last-child { color: var(--cream); text-align: right; }
.summary-total { display: flex; justify-content: space-between; align-items: center; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.summary-total .label { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
.summary-total .amount { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: var(--accent-2); }

/* Métodos de pago */
.pay-methods { display: flex; gap: .7rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.pay-method {
  flex: 1; min-width: 90px; padding: .8rem; border-radius: 10px; background: var(--bg-2); border: 1px solid var(--line);
  cursor: pointer; text-align: center; font-size: .8rem; color: var(--muted); transition: .2s; display: flex; flex-direction: column; align-items: center; gap: .4rem;
}
.pay-method svg { height: 20px; }
.pay-method.active { border-color: var(--accent); background: rgba(154,99,52,.12); color: var(--cream); }
.demo-note {
  display: flex; gap: .6rem; align-items: flex-start; margin-top: 1.2rem; padding: .8rem 1rem; border-radius: 10px;
  background: rgba(199,146,87,.08); border: 1px solid rgba(199,146,87,.2); font-size: .8rem; color: var(--accent-2);
}

/* ===========================================================
   SOBRE / EXPERIENCIA
   =========================================================== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-media { position: relative; display: grid; place-items: center; min-height: 320px; }
.about-media .glow { position: absolute; inset: 10%; border-radius: 50%; background: radial-gradient(circle, rgba(199,146,87,.18), transparent 65%); }
.about-media img {
  position: relative; z-index: 1; width: min(78%, 320px); aspect-ratio: 1; object-fit: contain;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 56%, transparent 70%);
  mask-image: radial-gradient(circle at 50% 50%, #000 56%, transparent 70%);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
}
.about-text h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.1; margin-bottom: 1.2rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.about-list { list-style: none; margin-top: 1.5rem; display: grid; gap: .8rem; }
.about-list li { display: flex; gap: .7rem; align-items: center; color: var(--cream); font-size: .95rem; }
.about-list li::before { content: '✓'; width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: rgba(154,99,52,.18); color: var(--accent-2); display: grid; place-items: center; font-size: .8rem; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-brand img { width: 46px; height: 46px; -webkit-mask-image: radial-gradient(circle, #000 56%, transparent 70%); mask-image: radial-gradient(circle, #000 56%, transparent 70%); }
.footer-brand b { font-family: 'Poppins', sans-serif; font-size: 1.1rem; letter-spacing: .04em; }
.footer-col p, .footer-col li { color: var(--muted); font-size: .9rem; }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: grid; gap: .6rem; }
.footer-col a:hover { color: var(--accent-2); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: .8rem; }
.socials { display: flex; gap: .7rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .25s; }
.socials a:hover { border-color: var(--accent); background: var(--card); color: var(--accent-2); }
.socials svg { width: 17px; height: 17px; }

/* WhatsApp flotante */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%;
  background: #128C4B; display: grid; place-items: center; box-shadow: 0 10px 28px rgba(18,140,75,.5);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 30px; translate: -50% 140%;
  z-index: 80; background: var(--bg-1); border: 1px solid var(--accent); color: var(--cream);
  padding: 1rem 1.4rem; border-radius: 12px; box-shadow: var(--shadow); max-width: 90vw;
  display: flex; gap: .8rem; align-items: center; transition: translate .4s cubic-bezier(.2,.9,.3,1.2);
}
.toast.show { translate: -50% 0; }
.toast svg { width: 22px; height: 22px; color: var(--accent-2); flex-shrink: 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   ANIMACIONES
   =========================================================== */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spinIn { from { opacity: 0; transform: rotate(-90deg) scale(.85); } to { opacity: 1; transform: rotate(20deg) scale(1); } }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  .nav-group { display: none; }
  .hamburger { display: flex; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-logo { justify-self: start; opacity: 1; transform: none; width: 48px; height: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .about { grid-template-columns: 1fr; }
  .about-media { order: -1; min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* ===========================================================
   QUICK WINS · accesibilidad, foco, validación, motion
   =========================================================== */

/* Skip-link (saltar al contenido) */
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%); z-index: 100;
  background: var(--accent); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 10px 10px;
  font-weight: 600; font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif; transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* Etiqueta de grupo (slots, método de pago) */
.group-label { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }

/* Badge "Más popular" en tarjetas de servicio */
.svc-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: var(--accent); color: #fff; font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .32rem .6rem; border-radius: 20px;
  font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

/* Errores de formulario inline */
.field .err { display: none; color: #ff8a6b; font-size: .76rem; margin-top: .45rem; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select { border-color: #ff8a6b; }

/* Método de pago como <button> (reset coherente) */
.pay-method { font-family: inherit; }

/* Slots y socials: objetivo táctil mínimo 44px */
.slot { min-height: 44px; display: flex; align-items: center; justify-content: center; }
.socials a { width: 44px; height: 44px; }
.nav-group a { padding: .3rem 0; }

/* Foco visible para teclado (todos los controles interactivos) */
a:focus-visible, button:focus-visible, .slot:focus-visible, .pay-method:focus-visible,
[tabindex]:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 6px;
}

/* Dirección del footer sin cursiva */
.footer-col address { font-style: normal; }

/* Reseñas de Google */
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gbadge { display: flex; align-items: center; gap: .9rem; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: .9rem 1.3rem; }
.gbadge .gicon { width: 30px; height: 30px; flex-shrink: 0; }
.gbadge strong { display: block; font-family: 'Poppins', 'Segoe UI', system-ui, sans-serif; font-size: .95rem; }
.gbadge .stars { color: #f5b50a; letter-spacing: 2px; font-size: 1rem; }
.reviews-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.reviews-embed { background: var(--card); border: 1px dashed var(--card-border); border-radius: var(--radius); padding: 2.6rem 1.5rem; text-align: center; min-height: 120px; display: grid; place-items: center; }
.reviews-placeholder { color: var(--muted); font-size: .92rem; max-width: 460px; }
@media (max-width: 560px) { .reviews-cta { width: 100%; } .reviews-cta .btn { flex: 1; justify-content: center; } }

/* Respeta "movimiento reducido" del sistema operativo */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
