/* =========================================================
   Luma — design tokens
   ========================================================= */

:root {
  --white: #ffffff;
  --bone: #fafaf7;
  --bone-2: #f4f4f0;
  --luma-blue: #0e4da4;
  --luma-blue-hover: #0a3e87;
  --luma-blue-soft: rgba(14, 77, 164, 0.08);
  --gold: #c9a24c;
  --ink: #0a0f1c;
  --ink-soft: #5b6470;
  --rule: #e8e8e3;
  --wa: #25d366;

  --r-card: 24px;
  --r-card-lg: 28px;
  --r-hero: 32px;
  --r-cta: 40px;
  --r-pill: 999px;

  --shadow-soft: 0 30px 80px -20px rgba(10, 15, 28, 0.18);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.04);
  --shadow-card-lg: 0 12px 40px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 18px 48px rgba(10, 15, 28, 0.1);
  --shadow-cta: 0 40px 100px rgba(14, 77, 164, 0.2);
  --shadow-video: 0 30px 60px rgba(14, 77, 164, 0.08);
  --shadow-nav: 0 8px 24px -12px rgba(10, 15, 28, 0.12);

  --container: 1240px;
  --nav-h: 88px;

  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   Base
   ========================================================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  /* Solo bloquea overflow horizontal — scroll vertical libre para Lenis */
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.25s var(--easing),
    color 0.25s var(--easing),
    border-color 0.25s var(--easing),
    transform 0.25s var(--easing),
    box-shadow 0.25s var(--easing);
  white-space: nowrap;
}

.btn--lg {
  font-size: 16px;
  padding: 16px 28px;
}

.btn--xl {
  font-size: 18px;
  padding: 20px 56px;
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.25);
}

.btn--primary {
  background: var(--luma-blue);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--luma-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(14, 77, 164, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--luma-blue);
  border-color: rgba(14, 77, 164, 0.3);
}

.btn--outline:hover {
  background: var(--luma-blue);
  color: var(--white);
  border-color: var(--luma-blue);
}

.btn--white {
  background: var(--white);
  color: var(--luma-blue);
}

.btn--white:hover {
  background: #f3f6fb;
  transform: translateY(-1px);
  box-shadow: 0 22px 50px -16px rgba(0, 0, 0, 0.35);
}

.btn__wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--xl .btn__wa-icon {
  width: 20px;
  height: 20px;
}

/* =========================================================
   Navegación
   ========================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 48px);
  background: transparent;
  transition:
    background-color 0.35s var(--easing),
    box-shadow 0.35s var(--easing);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-nav);
}

.nav__logo {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--luma-blue);
}

.nav__links {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
  font-size: 15px;
  font-weight: 500;
  color: var(--luma-blue);
}

.nav__links a {
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s var(--easing);
}

.nav__links a:hover {
  color: var(--luma-blue-hover);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: currentColor;
  border-radius: var(--r-pill);
  transition: width 0.35s var(--easing);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  justify-self: end;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  width: 100%;
  padding: calc(var(--nav-h) + 16px) 0 56px;
  display: flex;
  justify-content: center;
  background: var(--white);
}

.hero__media {
  position: relative;
  width: 92vw;
  max-width: 1640px;
  height: 85vh;
  min-height: 560px;
  border-radius: var(--r-hero);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: scale(0.96);
  opacity: 0;
  will-change: transform, opacity;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 28, 0) 0%,
    rgba(10, 15, 28, 0.05) 35%,
    rgba(255, 255, 255, 0.35) 75%,
    rgba(255, 255, 255, 0.7) 100%
  );
  pointer-events: none;
}

/* Difumina logo quemado en esquina inf. der. del video */
.hero__corner-mask {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 55%;
  pointer-events: none;
  background: radial-gradient(
    circle at 100% 100%,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.18) 28%,
    rgba(255, 255, 255, 0.08) 55%,
    rgba(255, 255, 255, 0) 85%
  );
}

/* ----- Audio toggle ----- */

.hero__audio {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.25s var(--easing),
    transform 0.15s var(--easing),
    border-color 0.25s var(--easing);
}

.hero__audio:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.8);
}

.hero__audio:active {
  transform: scale(0.95);
}

.hero__audio-icon {
  width: 20px;
  height: 20px;
  display: none;
}

.hero__audio.is-muted .hero__audio-icon--muted {
  display: block;
}

.hero__audio:not(.is-muted) .hero__audio-icon--on {
  display: block;
}

/* ----- Hero content ----- */

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 80px);
  color: var(--white);
  z-index: 2;
}

.hero__title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 1100px;
  text-shadow: 0 2px 24px rgba(10, 15, 28, 0.25);
}

.hero__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  margin: 22px auto 36px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 14px rgba(10, 15, 28, 0.4);
}

.hero__subtitle-main {
  display: block;
}

.hero__subtitle-loc {
  display: block;
  margin-top: 6px;
  font-size: 0.92em;
  opacity: 0.85;
}

.hero__ctas {
  display: flex;
  justify-content: center;
}

/* =========================================================
   Sections — shared
   ========================================================= */

.section {
  padding: clamp(96px, 12vw, 160px) 0;
  position: relative;
}

.section--white {
  background: var(--white);
}

.section--bone {
  background: var(--bone);
}

.section__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.section__head--center {
  align-items: center;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--luma-blue-soft);
  color: var(--luma-blue);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.section__head--center .badge {
  align-self: center;
}

.section__title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  max-width: 22ch;
}

.section__head--center .section__title {
  margin-inline: auto;
}

.section__subtitle {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}

.section__head--center .section__subtitle {
  margin-inline: auto;
}

.section__lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
  max-width: 56ch;
}

.section__lead:last-child {
  margin-bottom: 0;
}

/* Placeholder de imagen */

.placeholder {
  position: relative;
  background: var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}

.placeholder--square {
  aspect-ratio: 1 / 1;
}

.placeholder__label {
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

/* =========================================================
   Nosotros
   ========================================================= */

.nosotros__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.nosotros__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.nosotros__copy .section__title {
  max-width: 16ch;
}

.nosotros__media {
  border-radius: 28px;
  background: var(--luma-blue);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 5vw, 60px);
  overflow: hidden;
}

.nosotros__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* =========================================================
   A quién servimos
   ========================================================= */

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.serve-card {
  background: var(--bone);
  border-radius: var(--r-card);
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  transition:
    transform 0.35s var(--easing),
    box-shadow 0.35s var(--easing);
}

.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.serve-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: var(--luma-blue);
  will-change: transform;
}

.serve-card__icon svg {
  width: 100%;
  height: 100%;
}

.serve-card__title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.serve-card__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* =========================================================
   Cobertura
   ========================================================= */

.cov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1000px;
}

.cov-card {
  background: var(--white);
  border-radius: var(--r-card-lg);
  box-shadow: var(--shadow-card-lg);
  transform-style: preserve-3d;
  transition:
    transform 0.45s var(--easing),
    box-shadow 0.35s var(--easing);
  will-change: transform;
}

.cov-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.cov-card__inner {
  padding: 48px 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cov-card__icon {
  width: 44px;
  height: 44px;
  color: var(--luma-blue);
  margin-bottom: 4px;
}

.cov-card__title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 32px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}

.cov-card__rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: var(--r-pill);
  margin: 4px 0 6px;
}

.cov-card__addr,
.cov-card__hours {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* =========================================================
   Video 2 — Conoce a Luma
   ========================================================= */

.video2__wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-hero);
  overflow: hidden;
  box-shadow: var(--shadow-video);
  background: var(--bone);
}

.video2__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bone);
}

.video2__poster {
  position: absolute;
  inset: 0;
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--easing);
  z-index: 2;
}

.video2__poster.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video2__logo {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(64px, 10vw, 120px);
  color: var(--luma-blue);
  opacity: 0.3;
  letter-spacing: -0.01em;
}

.video2__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: var(--r-pill);
  background: var(--luma-blue);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 16px 40px -10px rgba(14, 77, 164, 0.55);
  animation: play-pulse 2s ease-in-out infinite;
  transition:
    opacity 0.4s var(--easing),
    transform 0.2s var(--easing);
}

.video2__play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.video2__play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video2__play svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}

@keyframes play-pulse {
  0%,
  100% {
    box-shadow: 0 16px 40px -10px rgba(14, 77, 164, 0.55),
      0 0 0 0 rgba(14, 77, 164, 0.35);
  }
  50% {
    box-shadow: 0 16px 40px -10px rgba(14, 77, 164, 0.55),
      0 0 0 18px rgba(14, 77, 164, 0);
  }
}

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

.contact {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 40px);
  background: var(--white);
}

.contact__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 120px) clamp(28px, 6vw, 96px);
  border-radius: var(--r-cta);
  background: var(--luma-blue);
  box-shadow: var(--shadow-cta);
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  top: 24px;
  right: 24px;
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  opacity: 0.22;
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.contact__label,
.contact__title,
.contact__subtitle,
.contact__btn,
.contact__phone {
  position: relative;
  z-index: 1;
}

.contact__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
}

.contact__title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
  margin-inline: auto;
}

.contact__subtitle {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 22px auto 40px;
  max-width: 52ch;
}

.contact__btn .btn__wa-icon {
  color: var(--wa);
}

.contact__phone {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  transition: color 0.25s var(--easing);
}

.contact__phone:hover {
  color: var(--white);
}

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

.footer {
  background: var(--white);
  padding-top: 80px;
}

.footer__inner {
  background: var(--bone-2);
  border-radius: 32px 32px 0 0;
  padding: 60px clamp(24px, 5vw, 80px) 40px;
  margin: 0 clamp(16px, 3vw, 40px);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: 48px;
}

.footer__logo {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 28px;
  color: var(--luma-blue);
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 36ch;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  background: var(--luma-blue);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.25s var(--easing),
    transform 0.25s var(--easing);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__social:hover {
  background: var(--luma-blue-hover);
  transform: scale(1.1);
}

.footer__heading {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.footer__list a {
  transition: color 0.2s var(--easing);
}

.footer__list a:hover {
  color: var(--luma-blue);
}

.footer__divider {
  height: 1px;
  background: var(--rule);
  margin-bottom: 24px;
}

.footer__copy {
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
}

/* =========================================================
   Floating WhatsApp
   ========================================================= */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s var(--easing),
    transform 0.3s var(--easing);
}

.wa-float.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float__inner {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: var(--r-pill);
  background: var(--wa);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: box-shadow 0.3s var(--easing);
}

.wa-float:hover .wa-float__inner {
  animation-play-state: paused;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.5);
}

.wa-float__inner svg {
  width: 30px;
  height: 30px;
}

@keyframes wa-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(6px);
  transition:
    opacity 0.25s var(--easing),
    transform 0.25s var(--easing);
  box-shadow: 0 8px 24px rgba(10, 15, 28, 0.2);
}

.wa-float:hover .wa-float__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (hover: none) {
  .wa-float__tooltip {
    display: none;
  }
}

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

@media (max-width: 1024px) {
  .cov-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nosotros__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nosotros__media {
    max-width: 520px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact__bg {
    width: clamp(160px, 24vw, 260px);
    height: clamp(160px, 24vw, 260px);
  }
}

@media (max-width: 820px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .nav__links {
    display: none;
  }
  .hero__media {
    width: 94vw;
    height: 78vh;
    min-height: 520px;
    border-radius: 28px;
  }
  .hero__subtitle {
    margin: 18px auto 28px;
  }
  .hero__audio {
    top: 16px;
    right: 16px;
  }
  .cov-card__inner {
    padding: 36px 32px;
  }
  .serve-card {
    padding: 28px;
  }
  .contact__bg {
    top: 12px;
    right: 12px;
    opacity: 0.16;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: calc(var(--nav-h) + 8px);
  }
  .hero__media {
    width: 94vw;
    height: 72vh;
    border-radius: 24px;
  }
  .btn--lg {
    font-size: 15px;
    padding: 14px 22px;
  }
  .btn--xl {
    font-size: 16px;
    padding: 18px 36px;
  }
  .serve-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact__inner {
    border-radius: 28px;
    padding: 64px 24px;
  }
  .contact__bg {
    display: none;
  }
  .wa-float {
    bottom: 18px;
    right: 18px;
  }
}

/* =========================================================
   Accesibilidad — respeta prefers-reduced-motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .hero__media {
    transform: none;
    opacity: 1;
  }
  .wa-float__inner,
  .video2__play {
    animation: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
