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

:root {
  --navy: #0E2340;
  --navy-mid: #1A3A5C;
  --navy-light: #2E5F8A;
  --gold: #C4963A;
  --gold-light: #D4AA5A;
  --gold-pale: #F5EDD8;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --cream: #FAF7F0;
  --text: #1A2940;
  --text-muted: #5A6F8A;
  --text-light: #8A9AB5;
  --border: #E2E8F0;
  --shadow-sm: 0 2px 12px rgba(14,35,64,.07);
  --shadow-md: 0 8px 32px rgba(14,35,64,.12);
  --shadow-lg: 0 20px 60px rgba(14,35,64,.16);
  --radius: 14px;
  --radius-sm: 8px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --nav-h: 80px;
  --topbar-h: 38px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
* { scrollbar-width: thin; scrollbar-color: var(--gold) var(--cream); }

/* ── Skip Link (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: .875rem;
  text-decoration: none;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Custom Cursor ── */
#cursor, #cursor-ring {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  z-index: 9999;
  transition: transform .15s ease, opacity .2s ease;
}
#cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
#cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(196,150,58,.5);
  transform: translate(-50%, -50%);
  transition: width .3s ease, height .3s ease, transform .08s ease;
}
@media (pointer: coarse) { #cursor, #cursor-ring { display: none; } }

/* ── Top Contact Bar ── */
#topBar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: var(--navy);
  z-index: 101;
  display: flex;
  align-items: center;
}
.topbar-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-contact, .topbar-right {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  color: rgba(255,255,255,.75);
}
.topbar-link {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
.topbar-link:hover { color: var(--gold-light); }
.topbar-sep { color: rgba(255,255,255,.3); }
.topbar-icon { flex-shrink: 0; color: var(--gold-light); }
@media (max-width: 768px) {
  .topbar-right { display: none; }
  .topbar-hours { display: none; }
  .topbar-inner { padding: 0 1.5rem; }
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 3rem;
  gap: 2rem;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  transition: box-shadow .35s ease;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; margin-right: auto; flex-shrink: 0;
}
.logo-icon {
  font-size: 1.1rem;
  color: var(--gold);
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text em {
  font-style: italic;
  font-weight: 400;
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .04em;
}
/* logo always dark (nav always has light bg) */

.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .55rem 1.4rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 101;
}
.ham span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}
.ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* mobile menu */
#mobMenu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
#mobMenu.open { display: flex; }
#mobMenu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}
#mobMenu a:hover { color: var(--gold); }
.mob-cta {
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .8rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: .5rem;
  transition: background .2s;
}
.mob-cta:hover { background: var(--gold-light); }

/* ── Hero Google Badge ── */
.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: .4rem 1rem .4rem .7rem;
  margin-bottom: 1.25rem;
}
.hero-google-score {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}
.hero-google-txt {
  font-size: .78rem;
  color: rgba(248,249,252,.8);
}

/* ── Hero Trust Pills ── */
.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(248,249,252,.82);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: .3rem .85rem;
}
.hero-pill svg { color: var(--gold-light); flex-shrink: 0; }

/* ── Hero btn arrow ── */
.btn-primary svg { margin-left: .4rem; transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(3px); }

/* ── Sticky Mobile CTA ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(14,35,64,.12);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1.25rem calc(.85rem + env(safe-area-inset-bottom, 0px));
  max-width: 600px;
  margin: 0 auto;
}
.sticky-cta-info {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.sticky-cta-stars { color: var(--gold); font-size: .85rem; letter-spacing: .05em; line-height: 1; }
.sticky-cta-info span { font-size: .72rem; color: var(--text-muted); }
.sticky-cta-btn {
  flex-shrink: 0;
  padding: .75rem 1.4rem;
  font-size: .85rem;
  min-height: 44px;
}

@media (max-width: 900px) {
  .sticky-cta { display: block; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

/* ── Hero ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -4%;
  background: url('https://images.unsplash.com/photo-1629909615184-74f495363b67?w=1400&q=85') center/cover no-repeat;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(14,35,64,.88) 0%,
    rgba(14,35,64,.60) 40%,
    rgba(14,35,64,.15) 70%,
    transparent 100%
  );
}
.hero-panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--topbar-h) + var(--nav-h)) 3.5rem 0 6rem;
  max-width: 640px;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: .75rem;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(248,249,252,.78);
  max-width: 420px;
  margin-bottom: 2.25rem;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .85rem 2rem;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,150,58,.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 50px;
  padding: .83rem 1.9rem;
  font-size: .92rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}
.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  z-index: 2;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.badge-lbl {
  font-size: .75rem;
  color: rgba(248,249,252,.75);
  text-align: center;
  line-height: 1.3;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 6rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(248,249,252,.45);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(248,249,252,.45), transparent);
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--navy);
  padding: 2.5rem 4rem;
}
.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.trust-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  flex: 1;
}
.trust-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.trust-lbl {
  font-size: .78rem;
  color: rgba(248,249,252,.65);
  text-align: center;
  letter-spacing: .03em;
}

/* ── Section Shared ── */
.section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 3rem;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* ── Services ── */
#servicios { padding: 5rem 2rem; }
.svc-intro {
  max-width: 1140px;
  margin: 0 auto;
  padding-bottom: 0;
}
.svc-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: default;
}
.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(14,35,64,.18);
}
.svc-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--border);
}
.svc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: grayscale(100%) brightness(.92);
}
.svc-card.revealed .svc-card-img img,
.svc-card:hover .svc-card-img img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}
.svc-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.svc-num {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--gold);
}
.svc-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}
.svc-card-body p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.svc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .5rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.svc-price {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.btn-sm {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .45rem 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-sm:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ── Before / After ── */
.ba-section { background: var(--cream); }
.ba-intro {
  font-size: .95rem;
  color: var(--text-muted);
  margin-top: -2rem;
  margin-bottom: 3rem;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow .3s;
}
.ba-card:hover { box-shadow: var(--shadow-md); }

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  border: 1.5px solid var(--gold);
  border-bottom: none;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-before img, .ba-after img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}
.ba-before img {
  filter: none;
}
.ba-after img {
  filter: brightness(1.06) saturate(1.1) contrast(1.02);
}
/* The "after" is clipped from the right; JS sets the clip */
.ba-after {
  clip-path: inset(0 50% 0 0);
}

.ba-label {
  position: absolute;
  bottom: .6rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.ba-lbl-before {
  left: .75rem;
  background: rgba(20,8,4,.55);
  color: rgba(255,255,255,.85);
}
.ba-lbl-after {
  right: .75rem;
  background: rgba(14,35,64,.65);
  color: rgba(255,255,255,.9);
}

/* handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}
.ba-line {
  width: 2px;
  flex: 1;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 8px rgba(0,0,0,.3);
}
.ba-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  color: var(--gold);
}
.ba-circle svg { flex-shrink: 0; }

.ba-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
}
.ba-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: .3rem .75rem;
  border-radius: 50px;
  flex-shrink: 0;
}
.ba-info p {
  font-size: .82rem;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ── Why Us Strip ── */
.why-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.why-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.why-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .2rem;
}
.why-item p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Team ── */
#equipo { background: var(--cream); padding: 5rem 2rem; }
.team-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-img-wrap {
  height: 220px;
  overflow: hidden;
  background: var(--border);
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.04); }
.team-info {
  padding: 1.25rem;
}
.team-info h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .2rem;
}
.team-info p {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .25rem;
}
.team-info span {
  font-size: .72rem;
  color: var(--text-light);
}

/* ── Reviews ── */
.resenas-section { padding: 5rem 0; overflow: hidden; background: var(--white); }
.resenas-head { text-align: center; padding-bottom: 2rem; }
.resenas-track { overflow: hidden; }
.resenas-inner {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollTrack 30s linear infinite;
}
.resenas-inner:hover { animation-play-state: paused; }
@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.res-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.res-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; }
.res-card p {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.res-card span {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ── FAQ ── */
#faq { background: var(--cream); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .92rem;
  font-weight: 500;
  color: var(--navy);
  transition: color .2s;
}
.faq-q:hover { color: var(--gold); }
.faq-q svg { flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Map ── */
.mapa-section { background: var(--white); padding: 5rem 2rem; }
.mapa-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.mapa-info .section-title { margin-bottom: 2rem; }
.mapa-datos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mapa-dato {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.mapa-dato svg { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.mapa-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
}
.mapa-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(248,249,252,.7);
}
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 4rem 2rem 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo-text em { color: var(--gold-light); }
.footer-tagline {
  margin-top: 1rem;
  font-size: .85rem;
  color: rgba(248,249,252,.5);
  line-height: 1.5;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.footer-col-title {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: .85rem;
  color: rgba(248,249,252,.6);
  text-decoration: none;
  line-height: 1.5;
  margin-bottom: .5rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: .75rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(248,249,252,.6);
  transition: border-color .2s, color .2s, background .2s;
  margin: 0;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,150,58,.1);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: .8rem;
  color: rgba(248,249,252,.4);
}
.footer-bottom a { color: rgba(248,249,252,.6); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── WhatsApp Button ── */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 54px; height: 54px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}

/* ── Booking Modal ── */
#resModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14,35,64,.65);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#resModal.open { display: flex; }
.res-box {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.res-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--off-white);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: .85rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: background .2s, color .2s;
  z-index: 2;
}
.res-close:hover { background: var(--border); color: var(--navy); }
.res-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
}
.res-left {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
}
.res-left h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: .3rem;
}
.res-sub {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.res-step { display: none; }
.res-step.active { display: block; }
.res-step h4 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.svc-pick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.svc-pick-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem .75rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}
.svc-pick-card:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateY(-2px); }
.svc-pick-card.selected { border-color: var(--gold); background: var(--gold-pale); }
.svc-pick-card span { font-size: 1.5rem; display: block; margin-bottom: .4rem; }
.svc-pick-card p { font-size: .78rem; font-weight: 500; color: var(--navy); }
.barber-pick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.barber-pick-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem .5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  overflow: hidden;
}
.barber-pick-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.barber-pick-card.selected { border-color: var(--gold); background: var(--gold-pale); }
.barber-pick-card img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto .5rem;
}
.barber-pick-card p { font-size: .72rem; font-weight: 600; color: var(--navy); }
.barber-pick-card span { font-size: .65rem; color: var(--text-light); }

/* calendar */
.datetime-pick { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; }
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.cal-nav button {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--navy);
  transition: background .15s;
}
.cal-nav button:hover { background: var(--off-white); }
.cal-nav span { font-size: .85rem; font-weight: 600; color: var(--navy); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  font-size: .7rem;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background .15s, color .15s;
  font-size: .78rem;
}
.cal-day:hover:not(.empty):not(.past) { background: var(--gold-pale); }
.cal-day.selected { background: var(--gold); color: var(--white); }
.cal-day.today { font-weight: 700; color: var(--gold); }
.cal-day.empty, .cal-day.past { cursor: default; opacity: .3; }
.cal-day.hdr { font-weight: 600; color: var(--text-light); cursor: default; opacity: 1; font-size: .65rem; }
.slots-wrap { width: 120px; }
.slots-label { font-size: .72rem; font-weight: 600; color: var(--text-light); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .08em; }
.slots { display: flex; flex-direction: column; gap: .4rem; max-height: 240px; overflow-y: auto; }
.slot {
  padding: .45rem .75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s, background .15s;
}
.slot:hover { border-color: var(--gold); background: var(--gold-pale); }
.slot.selected { border-color: var(--gold); background: var(--gold); color: var(--white); }

/* step 4 form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .03em;
}
.form-group input, .form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-size: .875rem;
  font-family: var(--font-sans);
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.btn-full { width: 100%; justify-content: center; margin-top: .5rem; }

/* modal right panel */
.res-right {
  padding: 2.5rem 1.75rem;
  background: var(--off-white);
  border-radius: 0 20px 20px 0;
}
.res-right h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: .85rem;
}
.summary-row span { font-size: .78rem; color: var(--text-muted); }
.summary-row strong { font-size: .8rem; font-weight: 600; color: var(--navy); text-align: right; max-width: 120px; }
.summary-divider { height: 1px; background: var(--border); margin: 1rem 0; }
.price-row strong { color: var(--gold); font-size: .9rem; }
.res-badge {
  margin-top: 2rem;
  background: rgba(196,150,58,.08);
  border: 1px solid rgba(196,150,58,.25);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  font-size: .75rem;
  color: var(--navy);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.res-badge svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

/* ── Scroll Fade ── */
.fade {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.fade.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }

/* ── Mobile ── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  #hero { height: 100svh; }
  .hero-panel {
    max-width: 100%;
    padding: 0 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-panel { padding: calc(var(--topbar-h) + var(--nav-h) + 1rem) 1.75rem 3rem; }
  .hero-google-badge { margin-bottom: .85rem; }
  .hero-eyebrow { justify-content: center; }
  .hero-title { font-size: clamp(2rem, 9vw, 4rem); }
  .hero-subtitle { font-size: .88rem; max-width: 100%; }
  .hero-btns { align-items: center; flex-direction: column; gap: .75rem; width: 100%; max-width: 300px; align-self: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-trust-pills { justify-content: center; }
  .hero-badge { display: none; }
  .hero-scroll { display: none; }

  #navbar { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .ham { display: flex; }

  .trust-bar { padding: 2rem 1.5rem; }
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .trust-sep { display: none; }
  .trust-item { align-items: flex-start; }

  .svc-grid { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 0 1.5rem 4rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .mapa-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .mapa-embed { height: 280px; }

  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }

  .res-layout { grid-template-columns: 1fr; }
  .res-right { border-radius: 0 0 20px 20px; }
  .res-left { border-right: none; border-bottom: 1px solid var(--border); }
  .barber-pick-grid { grid-template-columns: repeat(2, 1fr); }
  .datetime-pick { grid-template-columns: 1fr; }
  .slots { flex-direction: row; flex-wrap: wrap; max-height: none; }
}

@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .svc-pick-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  .whatsapp-btn { bottom: 1.5rem; right: 1.5rem; }
}

/* ── Doctor Spotlight ── */
.doctor-spotlight {
  background: var(--navy);
  padding: 6rem 0;
}
.spotlight-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
}
.spotlight-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.spotlight-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.spotlight-title em {
  font-style: italic;
  color: var(--gold-light);
}
.spotlight-bio {
  font-size: .95rem;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}
.spotlight-creds {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2.5rem;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.cred-item svg { color: var(--gold-light); flex-shrink: 0; }
.spotlight-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .75rem 2rem;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.spotlight-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.spotlight-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  border: 1px solid rgba(196,150,58,.2);
  background: var(--navy-mid);
}
.spotlight-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .spotlight-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .spotlight-img-wrap { aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
  .spotlight-creds { align-items: center; }
  .spotlight-bio { margin-left: auto; margin-right: auto; }
}

/* ── Por qué elegirnos (full section) ── */
.elegirnos-section {
  background: var(--off-white);
  padding: 6rem 0;
}
.elegirnos-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3rem;
}
.elegirnos-inner > .section-eyebrow { margin-bottom: .75rem; }
.elegirnos-inner > .section-title { margin-bottom: 3.5rem; }
.elegirnos-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}
.elegirnos-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--topbar-h) + var(--nav-h) + 2rem);
  background: var(--border);
}
.elegirnos-img img { width: 100%; height: 100%; object-fit: cover; }
.elegirnos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.eleg-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.eleg-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.eleg-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eleg-item h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.eleg-item p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 1024px) {
  .elegirnos-layout { grid-template-columns: 1fr; gap: 3rem; }
  .elegirnos-img { aspect-ratio: 16/9; position: static; max-width: 100%; }
}
@media (max-width: 600px) {
  .elegirnos-grid { grid-template-columns: 1fr; }
}


/* ── Global Touch Optimization ── */
button, a, [role="button"],
.svc-card, .svc-pick-card, .barber-pick-card,
.slot, .cal-day, .faq-q, .ham, .nav-cta,
.eleg-item, .team-card, .res-card {
  touch-action: manipulation;
}

/* ── Brands Marquee ── */
.brands-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
  overflow: hidden;
  position: relative;
}
.brands-strip::before,
.brands-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}
.brands-strip::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.brands-strip::after  { right: 0; background: linear-gradient(to left,  var(--cream), transparent); }
.brands-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: brandScroll 30s linear infinite;
}
@keyframes brandScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-logo {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%) contrast(1.4) brightness(.85);
  opacity: .55;
  mix-blend-mode: multiply;
  transition: filter .3s ease, opacity .3s ease;
}
.brand-logo--sm { height: 22px; }
.brand-logo--lg { height: 38px; }
.brand-logo--invisalign { height: 75px; }
.brand-logo:hover { filter: grayscale(0%) contrast(1) brightness(1); opacity: .9; }
.brand-sep {
  font-size: .5rem;
  color: var(--gold);
  opacity: .5;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   MOBILE — COMPREHENSIVE IMPROVEMENTS
   Breakpoints: 900 · 600 · 480 · 375
   ═══════════════════════════════════════ */

/* ── overscroll: evita rebote del body en iOS ── */
body { overscroll-behavior-y: none; }

/* ── Topbar compacto en 480px ── */
@media (max-width: 480px) {
  :root { --topbar-h: 32px; }
  #topBar { height: 32px; }
  .topbar-inner { padding: 0 1rem; }
  .topbar-contact { font-size: .63rem; gap: .35rem; }
}

/* ── Hamburger touch target correcto ── */
@media (max-width: 900px) {
  .ham {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }
}

/* ── Section paddings: más ajustados en mobile ── */
@media (max-width: 900px) {
  .section          { padding: 3.5rem 1.25rem; }
  #servicios        { padding: 3.5rem 1.25rem 0; }
  .svc-intro        { padding-bottom: 0; }
  .svc-grid         { padding: 0 1.25rem 3.5rem; gap: .9rem; }
  .why-strip        { padding: 2.5rem 1.25rem; }
  #equipo           { padding: 3.5rem 1.25rem; }
  .mapa-section     { padding: 3.5rem 1.25rem; }
  .ba-section .section { padding: 3.5rem 1.25rem; }
  .doctor-spotlight { padding: 4rem 0; }
  .spotlight-inner  { padding: 0 1.25rem; }
  .elegirnos-section { padding: 4rem 0; }
  .elegirnos-inner  { padding: 0 1.25rem; }
  .resenas-section  { padding: 3.5rem 0; }
  .resenas-head     { padding: 0 1.25rem 1.75rem; }
  #faq .section     { padding: 3.5rem 1.25rem; }
}

/* ── Hero: 375px ── */
@media (max-width: 480px) {
  .hero-panel {
    padding: calc(var(--topbar-h) + var(--nav-h) + .5rem) 1.25rem 5rem;
    align-items: flex-start;
    text-align: left;
  }
  .hero-eyebrow  { justify-content: flex-start; }
  .hero-title    { font-size: clamp(1.75rem, 10vw, 2.8rem); }
  .hero-subtitle { font-size: .83rem; line-height: 1.6; }
  .hero-btns     { max-width: 100%; flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; min-height: 52px; font-size: .9rem; }
  .hero-trust-pills { justify-content: flex-start; gap: .3rem; }
  .hero-pill     { font-size: .68rem; padding: .25rem .65rem; }
}

/* ── Trust bar: 480px ── */
@media (max-width: 480px) {
  .trust-bar { padding: 1.75rem 1.25rem; }
  .trust-inner { gap: 1rem; }
  .trust-num { font-size: 1.9rem; }
  .trust-lbl { font-size: .7rem; }
}

/* ── Touch targets mínimos 44px ── */
@media (max-width: 900px) {
  /* Botón secundario en cards */
  .btn-sm {
    min-height: 44px;
    padding: .6rem 1.25rem;
    font-size: .82rem;
  }

  /* FAQ */
  .faq-q { min-height: 52px; padding: 1rem 1.25rem; font-size: .88rem; }

  /* Slot de horario */
  .slot { min-height: 44px; padding: .6rem .75rem; font-size: .82rem; }

  /* Días del calendario */
  .cal-day { font-size: .8rem; }
  .cal-nav button { width: 38px; height: 38px; }

  /* Pick cards — service */
  .svc-pick-card { padding: 1.1rem .75rem; min-height: 80px; }

  /* Pick cards — doctor */
  .barber-pick-card { padding: 1rem .5rem; }
  .barber-pick-card img { width: 64px; height: 64px; }
  .barber-pick-card p { font-size: .8rem; }
  .barber-pick-card span { font-size: .68rem; }

  /* Botón CTA navbar */
  .nav-cta { min-height: 44px; }

  /* Mob menu CTA */
  .mob-cta { min-height: 52px; font-size: .95rem; }
}

/* ── Service cards: 480px ── */
@media (max-width: 480px) {
  .svc-card-img { height: 160px; }
  .svc-card-body { padding: 1.25rem; gap: .5rem; }
  .svc-card-body h3 { font-size: 1.05rem; }
  .svc-card-body p  { font-size: .82rem; }
  .svc-footer { margin-top: .35rem; }
}

/* ── Team cards: 375px ── */
@media (max-width: 480px) {
  .team-img-wrap { height: 180px; }
  .team-info h3  { font-size: .92rem; }
}

/* ── WhatsApp: sube sobre el sticky CTA bar ── */
@media (max-width: 900px) {
  .whatsapp-btn {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px) + 1rem);
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }
}

/* ── Modal: slide-up desde abajo en mobile (patrón nativo) ── */
@media (max-width: 640px) {
  #resModal {
    padding: 0;
    align-items: flex-end;
    overflow: hidden;
  }
  .res-box {
    border-radius: 20px 20px 0 0;
    max-height: 92svh;
    width: 100%;
    max-width: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .res-left  { padding: 1.75rem 1.25rem; border-right: none; border-bottom: 1px solid var(--border); }
  .res-right { padding: 1.5rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px)); border-radius: 0; }
  .res-left h2  { font-size: 1.35rem; }
  .svc-pick-grid { grid-template-columns: repeat(2, 1fr); gap: .55rem; }
  .barber-pick-grid { grid-template-columns: repeat(2, 1fr); gap: .55rem; }
  .datetime-pick { grid-template-columns: 1fr; gap: 1rem; }
  .slots-wrap { width: 100%; }
  .slots { flex-direction: row; flex-wrap: wrap; max-height: none; }
  .slot { min-width: 74px; flex: 0 0 auto; }
}

/* ── Spotlight: 480px ── */
@media (max-width: 480px) {
  .spotlight-img-wrap { aspect-ratio: 1/1; max-width: 260px; }
  .spotlight-bio { font-size: .86rem; }
  .spotlight-title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .cred-item { font-size: .8rem; }
}

/* ── Elegirnos: 480px ── */
@media (max-width: 480px) {
  .elegirnos-section { padding: 3rem 0; }
  .eleg-item { padding: 1.5rem 1.25rem; }
  .elegirnos-grid { gap: 1rem; }
  .eleg-item h4 { font-size: 1rem; }
  .eleg-item p  { font-size: .82rem; }
}

/* ── Reviews card: 375px ── */
@media (max-width: 480px) {
  .res-card { width: 270px; padding: 1.25rem; }
  .res-card p { font-size: .82rem; }
}

/* ── Before/After: 480px ── */
@media (max-width: 480px) {
  .ba-info { padding: .85rem 1rem; }
  .ba-tag  { font-size: .68rem; }
  .ba-info p { font-size: .78rem; }
}

/* ── Sticky CTA: solo botón en mobile ── */
@media (max-width: 600px) {
  .sticky-cta-inner {
    padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom, 0px));
  }
  .sticky-cta-info { display: none; }
  .sticky-cta-btn {
    width: 100%;
    justify-content: center;
    font-size: .88rem;
    padding: .75rem 1rem;
    min-height: 46px;
  }
}

/* ── Footer: 480px ── */
@media (max-width: 480px) {
  .footer-inner  { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-top    { gap: 2rem; }
  .footer-cols   { gap: 1.5rem; }
  .footer-col a, .footer-col p { font-size: .8rem; }
  .footer-bottom { font-size: .73rem; }
}

/* ── Brands strip: bordes más pequeños en mobile ── */
@media (max-width: 600px) {
  .brands-strip::before,
  .brands-strip::after { width: 3rem; }
}

/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .brands-track  { animation: none; }
  .resenas-inner { animation: none; }
  .fade { transition: none; opacity: 1; transform: none; }
}
