/* =========================================================
   Coral Odontología — sistema visual
   Tipografía: Fraunces (display) + Manrope (cuerpo/UI)
   Paleta: cream/paper + coral (acento) + teal profundo + menta
   Motivo de firma: arco (ventanas de la clínica) + coral que crece
   ========================================================= */

:root {
  --paper: #FAF6EE;
  --paper-alt: #F2EADC;
  --ink: #14282A;
  --ink-soft: #52706C;
  --ink-faint: #8AA29D;
  --accent: #FF6F52;
  --accent-dark: #E2532F;
  --accent-soft: #FFE2D8;
  --mint: #BFE3D3;
  --mint-deep: #4F8F7D;
  --line: rgba(20, 40, 42, 0.12);
  --card: #FFFFFF;
  --shadow-soft: 0 20px 50px -25px rgba(20, 40, 42, 0.35);
  --radius-arch: 48px 48px 14px 14px;
  --radius-card: 22px;
  --ff-display: "Fraunces", serif;
  --ff-body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 600; margin: 0; line-height: 1.12; letter-spacing: -0.01em; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Reveal utility (GSAP-driven; hidden pre-JS fallback keeps content visible) */
.reveal { opacity: 1; }

/* =========================================================
   Botones
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(255, 111, 82, 0.55);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(255, 111, 82, 0.6); background: var(--accent-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 13px 8px;
}
.btn-ghost:hover { color: var(--accent-dark); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

/* =========================================================
   Header / Nav
   ========================================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(250, 246, 238, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
}
.nav-brand img { width: 34px; height: 34px; object-fit: contain; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--accent-dark); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero — full-bleed con video/imagen + scrim
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 90px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video, .hero-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-fallback-img { display: none; }
.hero.video-failed .hero-video { display: none; }
.hero.video-failed .hero-fallback-img { display: block; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(20,28,26,0.82) 0%, rgba(20,28,26,0.5) 38%, rgba(20,28,26,0.18) 62%, rgba(20,28,26,0.35) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 76px;
  flex-wrap: wrap;
}
.hero-copy { max-width: 640px; color: #fff; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.hero .lead {
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero .lead span { color: #fff; font-weight: 700; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero .btn-ghost { color: #fff; }
.hero .btn-ghost:hover { color: var(--mint); }

.hero-meta {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-meta strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.7rem;
  color: #fff;
  font-weight: 600;
}
.hero-meta span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.hero-badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-arch);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
  max-width: 300px;
}
.tooth-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tooth-icon svg { width: 26px; height: 26px; }
.hero-badge strong { display: block; font-size: 0.92rem; color: var(--ink); }
.hero-badge span { font-size: 0.78rem; color: var(--ink-soft); }

/* =========================================================
   Confianza
   ========================================================= */

.trust { padding: 56px 0; border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item .icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--mint);
  color: var(--mint-deep);
  display: flex; align-items: center; justify-content: center;
}
.trust-item .icon svg { width: 20px; height: 20px; }
.trust-item h4 { font-family: var(--ff-body); font-size: 0.95rem; font-weight: 800; margin-bottom: 4px; }
.trust-item p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.5; }

/* =========================================================
   Secciones genéricas
   ========================================================= */

section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.centered { max-width: 620px; margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section-head.centered .eyebrow::before { display: none; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 14px;
}
.section-head p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.6; }

/* =========================================================
   Especialidades
   ========================================================= */

.services { background: var(--paper-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-card);
  padding: 30px 24px 26px;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.service-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint-deep);
  background: var(--mint);
  padding: 5px 10px;
  border-radius: 999px;
}
.service-card .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card .icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; }

/* =========================================================
   Misión / Visión — con motivo de coral que crece
   ========================================================= */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  gap: 32px;
  align-items: center;
}
.mission-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 36px 30px;
}
.mission-tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.mission-card p { color: var(--ink-soft); line-height: 1.7; font-size: 1rem; }
.mission-visual { display: flex; justify-content: center; }
.coral-grow { width: 100%; max-width: 240px; color: var(--accent); overflow: visible; }
.coral-grow .branch {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}
.coral-grow .b1, .coral-grow .b2, .coral-grow .b5, .coral-grow .b6 { stroke-width: 2.4; opacity: 0.85; }
.coral-grow .bud { fill: var(--mint-deep); opacity: 0; }

/* =========================================================
   Equipo
   ========================================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.team-card {
  background: var(--card);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.team-card .photo {
  aspect-ratio: 4 / 4.4;
  overflow: hidden;
  border-radius: var(--radius-arch);
  margin: 10px 10px 0;
}
.team-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.team-card .info { padding: 22px 22px 26px; }
.team-card .role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 8px;
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.team-card .info p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; }

/* =========================================================
   Instalaciones / Galería
   ========================================================= */

.facilities { background: var(--paper-alt); }
.gallery-head { max-width: 560px; margin: 0 auto 44px; text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: var(--line);
}
.gallery-item-lg { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-zoom {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(250,246,238,0.92);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery-zoom svg { width: 16px; height: 16px; }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 900;
  background: rgba(15, 24, 22, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-figure { max-width: min(90vw, 1000px); max-height: 82vh; text-align: center; }
.lightbox-figure img { max-height: 76vh; margin: 0 auto; border-radius: 16px; object-fit: contain; }
.lightbox-figure figcaption { color: #fff; margin-top: 16px; font-size: 0.95rem; opacity: 0.85; }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-close svg, .lightbox-nav svg { width: 20px; height: 20px; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* =========================================================
   Testimonios
   ========================================================= */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 30px 26px;
}
.testi-stars { display: flex; gap: 4px; color: var(--accent); margin-bottom: 16px; }
.testi-stars svg { width: 16px; height: 16px; }
.quote { font-size: 0.98rem; line-height: 1.65; color: var(--ink); margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--mint-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
}
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { font-size: 0.78rem; color: var(--ink-soft); }

/* =========================================================
   FAQ
   ========================================================= */

.faq { background: var(--paper-alt); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}
.faq-icon {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent-dark);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-icon::before { top: 9px; left: 2px; right: 2px; height: 2px; }
.faq-icon::after { left: 9px; top: 2px; bottom: 2px; width: 2px; }
.faq-item.is-open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-answer { max-height: 260px; }
.faq-answer div { padding: 0 24px 22px; }
.faq-answer p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }

/* =========================================================
   Contacto
   ========================================================= */

.contact .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.contact-list { margin: 28px 0 30px; display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .icon svg { width: 19px; height: 19px; }
.contact-row h4 { font-family: var(--ff-body); font-size: 0.85rem; font-weight: 800; margin-bottom: 2px; }
.contact-row p { font-size: 0.92rem; color: var(--ink-soft); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.contact-panel h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-panel > p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 22px; }
.appointment-form { display: flex; flex-direction: column; gap: 6px; }
.appointment-form label { font-size: 0.8rem; font-weight: 700; color: var(--ink); margin-top: 12px; }
.appointment-form input, .appointment-form select, .appointment-form textarea {
  font-family: var(--ff-body);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  font-size: 0.92rem;
  color: var(--ink);
  resize: vertical;
}
.appointment-form input:focus, .appointment-form select:focus, .appointment-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.appointment-form button { margin-top: 18px; justify-content: center; }
.appointment-form-note { font-size: 0.76rem; color: var(--ink-faint); margin-top: 12px; text-align: center; }

/* =========================================================
   Footer
   ========================================================= */

.site-footer { background: var(--ink); color: rgba(250,246,238,0.82); padding: 68px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,246,238,0.14);
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--ff-display); font-weight: 600; font-size: 1.15rem; color: #fff; margin-bottom: 14px; }
.footer-brand img { width: 30px; height: 30px; }
.footer-col .desc { font-size: 0.88rem; line-height: 1.6; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(250,246,238,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--accent); }
.footer-col h5 { font-family: var(--ff-body); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col p { font-size: 0.88rem; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 0;
  font-size: 0.78rem;
  color: rgba(250,246,238,0.55);
}

/* =========================================================
   WhatsApp flotante
   ========================================================= */

.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 400;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.08); }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-outline { display: none; }
  .site-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-visual { order: -1; }
  .coral-grow { max-width: 160px; }
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item-lg { grid-column: span 2; grid-row: span 1; }
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact .container { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 68px 0; }
  .hero { min-height: 92vh; }
  .hero-inner { padding-bottom: 40px; }
  .hero-badge { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-col:first-child { grid-column: span 2; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; }
}

/* Respeta prefers-reduced-motion en transiciones CSS también */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .service-card, .team-card, .btn, .gallery-item img { transition: none; }
}
