@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== Design tokens + accesibilidad ===== */
:root {
  --ink: #3b2f2f;
  --paper: #ffffff;
  --brand: #c19a6b; /* acentos/fondos suaves */
  --brand-strong: #876b4a; /* botón accesible (≥4.5:1 con blanco) */
  --brand-strong-hover: #7a5837; /* hover más profundo */
  --radius-pill: 999px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.12);
}

body,
html {
  height: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

/* Focus visible unificado */
:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 6px rgba(135, 107, 74, 0.7);
  transition: box-shadow 0.2s ease;
}

/* Respeta preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Hero ===== */
.hero {
  height: 100vh; /* ocupa toda la altura de la ventana */
  display: flex;
  flex-direction: column;
  justify-content: center; /* centra vertical */
  align-items: center; /* centra horizontal */
  text-align: center;

  /* Fondo degradé */
  background: linear-gradient(135deg, #f5f0e6 0%, #d8bfa3 100%);
  color: var(--ink); /* un marrón oscuro para el texto */
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: 700;
}

.hero p {
  font-size: 1.5rem;
  margin: 0.5rem 0 0;
  font-weight: 400;
}

/* ===== Cuenta regresiva ===== */
.countdown-section {
  background: #ffffff;
  color: var(--ink);
}

.countdown-wrap {
  width: min(100% - 6vw, 68rem);
  margin: 0 auto;
  padding: clamp(32px, 8vw, 72px) 0;
  text-align: center;
}

/* Título (fecha) — ahora más protagonista */
.event-date {
  margin: 0 0 clamp(28px, 5vw, 40px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700; /* Montserrat Bold */
  font-size: clamp(1.1rem, 2.6vw, 1.6rem); /* ↑ tamaño */
  opacity: 0.95;
}

/* Línea “Faltan…” para separar visualmente */
.countdown-lead {
  margin: 0 0 clamp(22px, 4vw, 32px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400; /* Montserrat Regular */
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  opacity: 0.8;
}

/* Contadores siempre en una sola línea */
.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap; /* clave: no apilar */
  gap: clamp(12px, 3.5vw, 36px);
}

/* Cada caja se adapta sin romper línea */
.time-box {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: clamp(60px, 20vw, 120px); /* asegura ancho mínimo relativo */
}

/* Números grandes pero fluidos (se achican en móvil) */
.time {
  font-weight: 700; /* Montserrat Bold */
  line-height: 1;
  font-size: clamp(1.8rem, 12vw, 4.2rem);
  letter-spacing: 0.02em;
}

/* Etiquetas debajo */
.label {
  font-weight: 400; /* Montserrat Regular */
  font-size: clamp(0.7rem, 2.6vw, 1rem);
  opacity: 0.85;
}

/* Ajuste extra para pantallas muy angostas (≤360px) */
@media (max-width: 360px) {
  .time-box {
    min-width: 56px;
  }
  .time {
    font-size: clamp(1.6rem, 13vw, 3.2rem);
  }
  .countdown {
    gap: 10px;
  }
}

/* ===== Ceremonia y Fiesta ===== */
.venue-section {
  /* marrón cálido usado en el Hero/botón */
  background: var(--brand);
  color: #ffffff; /* texto claro por defecto */
}

.venue-wrap {
  width: min(100% - 6vw, 68rem);
  margin: 0 auto;
  padding: clamp(48px, 9vw, 96px) 0;
  text-align: center;
}

.venue-overline {
  margin: 0 0 clamp(10px, 2.5vw, 14px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700; /* Montserrat Bold */
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  color: rgba(255, 255, 255, 0.9);
}

.venue-name {
  margin: 0 0 clamp(14px, 3vw, 18px);
  font-weight: 700; /* Montserrat Bold */
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  line-height: 1.25;
  color: #ffffff;
}

.venue-address {
  margin: 0; /* queda pegado al título */
  font-weight: 400; /* Montserrat Regular */
  font-size: clamp(0.95rem, 2.3vw, 1.05rem);
  color: rgba(255, 255, 255, 0.92);
}

/* horario separado y más grande */
.venue-time {
  margin: clamp(8px, 2.5vw, 14px) 0 clamp(22px, 4.5vw, 32px);
  font-weight: 700; /* Montserrat Bold */
  font-size: clamp(1.1rem, 3.6vw, 1.6rem);
  color: #ffffff;
}

/* Botón invertido sobre fondo marrón (venue) */
.venue-section .btn-primary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
  background: #fff;
  color: #5b432b; /* texto más oscuro para mejor lectura */
}
.venue-section .btn-primary:hover {
  background: #f3e9dd;
  color: #4b3723;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.venue-section .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* ===== Carrusel ===== */
.gallery-section {
  background: #ffffff;
  color: #0f0f0f;
}

.gallery-wrap {
  width: min(100% - 6vw, 68rem);
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) 0;
}

/* Contenedor principal */
.carousel {
  position: relative;
  outline: none;
}

/* Flechas: simétricas y dentro del carrusel */
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  /*background: rgba(0, 0, 0, 0.06);*/
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.car-btn.prev {
  left: 12px;
}
.car-btn.next {
  right: 12px;
}

.car-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.04);
}

.car-btn:active {
  background: rgba(255, 255, 255, 0.8);
}

.carousel:focus-visible .car-btn {
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 6px rgba(193, 154, 107, 0.75);
}

/* Ventana y pista */
.car-viewport {
  overflow: hidden;
  border-radius: 28px;
  position: relative;
}

:root {
  --car-gap: clamp(16px, 3vw, 28px);
}

.car-track {
  display: flex;
  gap: var(--car-gap);
  will-change: transform;
  transition: transform 0.4s ease;
}

/* Slides: tamaño uniforme con recorte */
.car-slide {
  flex: 0 0 100%; /* 1 por vista en móvil */
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  overflow: hidden;
  background: #eee;
}

.car-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(100%); /* blanco y negro */
}

/* En escritorio: exactamente 3 por vista */
@media (min-width: 900px) {
  .car-slide {
    flex: 0 0 calc((100% - (2 * var(--car-gap))) / 3);
  }
}

/* Ajuste flechas en pantallas muy chicas */
@media (max-width: 430px) {
  .car-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .car-btn.prev {
    left: 8px;
  }
  .car-btn.next {
    right: 8px;
  }
}

/* ===== Dress Code ===== */
.dresscode-section {
  background: #f5f0e6; /* beige claro */
  color: var(--ink);
}

.dresscode-wrap {
  width: min(100% - 6vw, 68rem);
  margin: 0 auto;
  padding: clamp(40px, 9vw, 96px) 0;
  text-align: center;
}

.dresscode-icon {
  width: clamp(40px, 6vw, 64px);
  height: auto;
  margin: 0 auto clamp(16px, 3vw, 24px);
}

.dresscode-icon img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8) sepia(20%) hue-rotate(15deg)
    saturate(120%);
  /* el filter da un tono marrón/beige al PNG para integrarlo con la paleta */
}

.dresscode-overline {
  margin: 0 0 clamp(8px, 2.5vw, 12px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700; /* Montserrat Bold */
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  opacity: 0.9;
}

.dresscode-text {
  margin: 0;
  font-weight: 400; /* Montserrat Regular */
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  opacity: 0.9;
}

/* ===== Sección Regalo ===== */
.gift-section {
  background: #f7f7f7; /* gris claro */
  color: var(--ink);
}

.gift-wrap {
  width: min(100% - 6vw, 68rem);
  margin: 0 auto;
  padding: clamp(40px, 9vw, 96px) 0;
  text-align: center;
}

.gift-icon {
  width: clamp(40px, 6vw, 64px);
  height: auto;
  margin: 0 auto clamp(16px, 3vw, 24px);
}

.gift-icon img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8) sepia(20%) hue-rotate(15deg)
    saturate(120%);
}

.gift-text {
  margin: 0 0 clamp(24px, 4vw, 36px);
  font-weight: 400; /* Montserrat Regular */
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  opacity: 0.9;
}

/* ===== Gift: Desplegable ===== */
.gift-accordion {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  text-align: left;
}

.gift-toggle {
  display: inline-block;
  width: 100%;
  padding: 12px 48px 12px 20px; /* deja espacio para el chevron */
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
  background: var(--brand-strong);
  color: #fff;
  list-style: none; /* oculta marcador por defecto de summary */
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.gift-toggle:hover {
  background: var(--brand-strong-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.gift-toggle:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Chevron */
.gift-toggle::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: transform 0.2s ease;
  /* flecha hacia abajo */
  transform-origin: 50% 50%;
  rotate: 45deg;
}

/* Abierto: rota el chevron */
.gift-accordion[open] .gift-toggle::after {
  rotate: -135deg; /* apunta hacia arriba */
}

/* Contenido */
.gift-content {
  overflow: hidden;
  padding: 0 6px;
  /* animación simple de apertura/cierre */
  max-height: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}

.gift-accordion[open] .gift-content {
  padding-top: 14px;
  max-height: 300px; /* suficiente para 3 filas; ajustá si sumás más */
  opacity: 1;
}

.gift-list {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 16px 18px;
}

.gift-list li {
  padding: 8px 2px;
  font-size: clamp(0.95rem, 2.3vw, 1.05rem);
  display: flex;
  gap: 8px;
  align-items: baseline;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.gift-list li:last-child {
  border-bottom: none;
}

.gift-field {
  font-weight: 700;
  color: var(--ink);
  min-width: 74px; /* “Banco”, “Titular”, “Alias” alineados */
  opacity: 0.95;
}

/* Focus accesible en summary */
.gift-toggle:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 6px rgba(135, 107, 74, 0.7);
}

/* ===== Botones unificados (gift, rsvp, instagram) ===== */
.gift-section .btn-primary,
.rsvp-btn,
.ig-handle {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
  background: var(--brand-strong);
  color: #fff; /* contraste OK */
}

.gift-section .btn-primary:hover,
.rsvp-btn:hover,
.ig-handle:hover {
  background: var(--brand-strong-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.gift-section .btn-primary:active,
.rsvp-btn:active,
.ig-handle:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* ===== Sección Instagram ===== */
.ig-section {
  background: #ffffff; /* fondo blanco */
  color: var(--ink);
}

.ig-wrap {
  width: min(100% - 6vw, 68rem);
  margin: 0 auto;
  padding: clamp(40px, 9vw, 96px) 0;
  text-align: center;
}

.ig-icon {
  width: clamp(40px, 7vw, 64px);
  margin: 0 auto clamp(20px, 3vw, 28px);
}

.ig-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.ig-text {
  margin: 0 0 clamp(18px, 3vw, 24px);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500; /* Montserrat Medium */
  opacity: 0.9;
}

/* Oculto para lectores de pantalla auxiliares */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Sección Confirmación de asistencia ===== */
.rsvp-section {
  position: relative;
  background: #f5f0e6;
  color: var(--ink);
  /* Fondo con foto */
  background-image: url("images/fondo1.jpg");
  background-size: cover;
  background-position: center;
  isolation: isolate; /* para que el overlay no afecte a otros z-index */
}

.rsvp-overlay {
  position: absolute;
  inset: 0;
  /* velo claro para asegurar legibilidad sobre la foto */
  background: rgba(255, 255, 255, 0.68);
  z-index: 0;
  backdrop-filter: blur(1px);
}

.rsvp-wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 6vw, 68rem);
  margin: 0 auto;
  padding: clamp(48px, 9vw, 112px) 0;
  text-align: center;
}

.rsvp-icon {
  width: clamp(48px, 7vw, 72px);
  height: auto;
  margin: 0 auto clamp(16px, 3vw, 24px);
}

.rsvp-icon img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8) sepia(20%) hue-rotate(15deg)
    saturate(120%);
  opacity: 0.9; /* mantiene la coherencia con el resto de íconos */
}

.rsvp-overline {
  margin: 0 0 clamp(10px, 2.5vw, 14px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700; /* Montserrat Bold */
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  opacity: 0.9;
}

.rsvp-intro {
  margin: 0 0 clamp(10px, 2.8vw, 16px);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  line-height: 1.55;
  opacity: 0.95;
}

.rsvp-deadline {
  margin: 0 0 clamp(12px, 3vw, 18px);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  opacity: 0.9;
}

.rsvp-note {
  margin: 0 0 clamp(22px, 4vw, 32px);
  font-size: clamp(0.9rem, 2.4vw, 1.05rem);
  opacity: 0.9;
}

.rsvp-link {
  color: #7a5837;
  text-decoration: underline;
}

.rsvp-link:hover {
  color: #6b4f32;
}

/* Ajustes finos en pantallas muy angostas */
@media (max-width: 360px) {
  .rsvp-intro {
    font-size: clamp(1rem, 3.2vw, 1.25rem);
  }
}

/* ===== Modal (Gift) ===== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}
.modal.is-open {
  display: flex; /* centra por contenido */
  align-items: center;
  justify-content: center;
  padding: 24px; /* margen interno p/ que no toque bordes */
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0; /* inicia transparente */
  backdrop-filter: blur(1.5px);
  transition: opacity 0.35s var(--ease-out),
    backdrop-filter 0.35s var(--ease-out);
}
.modal.is-open .modal-backdrop {
  opacity: 1; /* aparece suave */
  backdrop-filter: blur(4px); /* blur más orgánico al abrir */
}

.modal-dialog {
  position: relative; /* ya no absolute/inset */
  width: min(92vw, 340px); /* caja chica */
  max-height: 80vh; /* nunca ocupa toda la pantalla */
  overflow: auto; /* scroll si hiciera falta */
  background: #fff;
  color: var(--ink);
  border-radius: 16px; /* más sutil */
  box-shadow: var(--shadow-md);
  padding: 16px 18px; /* menos padding */
  display: grid;
  gap: 12px; /* menor separación */
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: translateY(10px) scale(0.985);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.modal.is-open .modal-dialog {
  transform: translateY(0) scale(1); /* antes: translateY(0) */
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.04);
  box-shadow: var(--shadow-sm);
}
.modal-close:active {
  transform: scale(0.98);
}

/* Encabezado compacto (sin ícono) */
.modal-head {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 6px;
  padding-right: 0;
}
.modal-icon {
  display: none;
}

.modal-title {
  margin: 0;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.98rem;
  opacity: 0.9;
}

/* Lista súper prolija y chica */
.modal-list {
  list-style: none;
  margin: 0;
  padding: 8px 10px; /* mucho más compacta */
  background: #fafafa;
  border-radius: 10px;
  box-shadow: none;
  display: grid;
  gap: 6px;
}
.modal-list li {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 6px 0; /* sin “espacios enormes” */
}
.modal-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.modal-list .field {
  min-width: 64px; /* etiquetas alineadas */
  font-weight: 600;
  opacity: 0.95;
  color: var(--ink);
}

/* Focus visible coherente */
.modal [tabindex],
.modal button,
.modal a,
.modal summary {
  outline: none;
}
.modal :focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 6px rgba(135, 107, 74, 0.7);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .modal-dialog {
    transition: none;
  }
}

/* ===== Microinteracciones elegantes (ADITIVO) ===== */

/* Tokens de timing */
:root {
  --ease-out: cubic-bezier(0.25, 0.7, 0.2, 1);
  --dur-fast: 0.24s;
  --dur-med: 0.55s;
  --dur-slow: 1.2s;
}

/* A. Scroll reveal: estado inicial + visible */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(0.4px);
  transition: opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out),
    filter var(--dur-slow) var(--ease-out);
  will-change: opacity, transform, filter;
}
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* B. Hero: entrada escalonada + degradé “vivo” */
.hero {
  background-size: 160% 160%;
  animation: gradient-drift 90s ease-in-out infinite alternate;
}

.hero h1,
.hero p {
  opacity: 0;
  transform: translateY(8px);
  animation: hero-up var(--dur-slow) var(--ease-out) forwards;
}
.hero p {
  animation-delay: 0.18s;
}
@keyframes hero-up {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes gradient-drift {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* C. Botones e íconos: lift + sutil realce */
.gift-section .btn-primary,
.rsvp-btn,
.ig-handle {
  will-change: transform, box-shadow, filter;
}
.gift-section .btn-primary:hover,
.rsvp-btn:hover,
.ig-handle:hover {
  /* ya tenés hover; esto suma un realce mínimo sin exagerar */
  filter: saturate(1.03);
}

/* D. Carrusel: hover suave en fotos */
.car-slide img {
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}
.car-slide img:hover {
  transform: scale(1.03);
  filter: grayscale(85%);
}

/* Respeta reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
  }
  .hero {
    animation: none;
  }
  .hero h1,
  .hero p {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
