@import "paleta.css";

:root {
  --pagina: var(--negro-azulado);
  --superficie: var(--azul-marino-suave);
  --borde: rgba(217, 218, 212, 0.12);
  --texto: var(--crema);
  --texto-suave: rgba(217, 218, 212, 0.7);
  --texto-tenue: rgba(217, 218, 212, 0.5);

  --acento: var(--dorado);
  --acento-suave: rgba(206, 188, 106, 0.14);
  --acento-tinta: var(--negro-azulado);

  --radio: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Sin esto, el navegador reajusta el scroll solo cuando algo arriba
     (fuentes, video, imágenes) termina de cargar y cambia de tamaño —
     en móvil, con conexión lenta, eso puede terminar empujando la
     página hasta secciones más abajo del todo en vez de dejarla arriba. */
  overflow-anchor: none;
}

body {
  margin: 0;
  background-color: var(--pagina);
  color: var(--texto);
  font-family: "Poppins", -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

/* Animaciones de entrada (hero al cargar, resto al hacer scroll) */

@keyframes heroSubir {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroLogoAparecer {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-bienvenida,
.hero-logo,
.hero-eslogan,
.hero-acciones {
  opacity: 0;
  animation: heroSubir 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-logo {
  animation-name: heroLogoAparecer;
  animation-duration: 0.9s;
}

.hero-bienvenida { animation-delay: 1.9s; }
.hero-logo { animation-delay: 2.05s; }
.hero-eslogan { animation-delay: 2.4s; }
.hero-acciones { animation-delay: 2.6s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Intro: llaves cruzadas antes del hero */

.intro-llaves {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--pagina);
  pointer-events: none;
  animation: introOcultar 0.6s ease forwards;
  animation-delay: 1.7s;
}

.intro-llave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: auto;
}

.intro-llave-izq {
  animation: introLlaveIzq 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
             introLlaveOcultar 0.25s ease forwards;
  animation-delay: 0s, 0.9s;
}

.intro-llave-der {
  animation: introLlaveDer 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
             introLlaveOcultar 0.25s ease forwards;
  animation-delay: 0s, 0.9s;
}

.intro-llaves-final {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: auto;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  animation: introFinalMostrar 0.4s ease forwards;
  animation-delay: 0.85s;
}

@keyframes introLlaveIzq {
  from { transform: translate(-50%, -50%) translateX(-70vw) rotate(-45deg); }
  to { transform: translate(-50%, -50%) translateX(0) rotate(-45deg); }
}

@keyframes introLlaveDer {
  from { transform: translate(-50%, -50%) translateX(70vw) rotate(45deg) scaleX(-1); }
  to { transform: translate(-50%, -50%) translateX(0) rotate(45deg) scaleX(-1); }
}

@keyframes introLlaveOcultar {
  to { opacity: 0; }
}

@keyframes introFinalMostrar {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes introOcultar {
  to { opacity: 0; visibility: hidden; }
}

/* Selector de idioma */

.boton-idioma-landing {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 45;
  padding: 8px 16px;
  background-color: rgba(1, 8, 33, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--acento);
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--acento);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.boton-idioma-landing:hover {
  background-color: var(--acento-suave);
  transform: translateY(-1px);
}

/* Hero */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  overflow: hidden;
}

.hero-foto {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-degradado {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(1, 8, 33, 0.4) 0%, rgba(1, 8, 33, 0.55) 60%, rgba(1, 8, 33, 0.72) 100%),
    linear-gradient(0deg, rgba(1, 8, 33, 0.8) 0%, rgba(1, 8, 33, 0) 30%);
}

.hero-contenido {
  position: relative;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-bienvenida {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dorado);
}

.hero-logo {
  display: block;
  max-width: 340px;
  width: 100%;
  height: auto;
  filter: invert(1);
}

.hero-eslogan {
  position: relative;
  max-width: 460px;
  margin: 20px 0 32px;
  font-size: 16px;
  color: var(--texto-suave);
}

.hero-acciones {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* Botones */

.boton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.boton:hover {
  transform: translateY(-2px);
}

.boton:active {
  transform: translateY(0);
}

.boton-primario:hover {
  box-shadow: 0 8px 20px rgba(206, 188, 106, 0.3);
}

.boton-primario {
  background-color: var(--acento);
  color: var(--acento-tinta);
}

.boton-primario:hover {
  background-color: var(--dorado-suave);
}

.boton-secundario {
  background: transparent;
  color: var(--acento);
  border: 1px solid var(--acento);
}

.boton-secundario:hover {
  background-color: var(--acento-suave);
}

.boton-whatsapp {
  gap: 10px;
  background-color: #25d366;
  color: #fff;
}

.boton-whatsapp:hover {
  background-color: #1ebe5b;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* Secciones */

.seccion-sitio {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}

/* Video */

.video-sitio {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 0;
}

.video-cuadricula {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.video-marco {
  overflow: hidden;
  height: 420px;
  border-radius: var(--radio);
  border: 1px solid var(--borde);
}

.video-reproductor {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* El archivo trae franjas negras de cine incrustadas en el video; el
     zoom las saca de cuadro sin importar la relación de aspecto del
     contenedor en cada breakpoint. */
  transform: scale(1.4);
}

.video-texto {
  text-align: left;
}

.video-texto h2 {
  margin: 0 0 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
  color: var(--texto);
}

.video-texto p {
  margin: 0;
  color: var(--texto-suave);
  font-size: 15px;
  line-height: 1.6;
}

/* Galería (carrusel con flechas) */

.galeria-sitio {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 68px;
  text-align: center;
}

.galeria-carrusel {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.galeria-viewport {
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0;
}

.galeria-pista {
  display: flex;
  gap: 16px;
  padding: 2px;
  touch-action: pan-y;
  cursor: grab;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.galeria-pista.arrastrando {
  cursor: grabbing;
}

.galeria-pieza {
  position: relative;
  overflow: hidden;
  display: block;
  flex: 0 0 300px;
  margin: 0;
  border-radius: var(--radio);
  border: 1px solid var(--borde);
}

.galeria-pieza img {
  -webkit-user-drag: none;
  user-select: none;
}

.galeria-pieza img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: grayscale(45%) brightness(0.92);
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}

.galeria-pieza:hover img {
  transform: scale(1.045);
  filter: grayscale(0%) brightness(1);
}

.galeria-flecha {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-color: var(--superficie);
  border: 1px solid var(--borde);
  color: var(--texto);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.galeria-flecha:hover {
  border-color: var(--acento);
  color: var(--acento);
}

.galeria-flecha:active {
  transform: scale(0.94);
}

/* Cuadrícula "¿Qué buscas?" */

.opciones-cuadricula {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1140px;
  margin: 8px auto 0;
  text-align: left;
}

.opcion-tarjeta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  background-color: var(--superficie);
  border: 1px solid var(--borde);
  border-top: 3px solid var(--tarjeta-acento, var(--dorado));
  border-radius: var(--radio);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.opcion-tarjeta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Colores de marca (paleta.css) en vez de los genéricos rojo/azul/amarillo
   de antes. El verde oscuro crudo es demasiado apagado para texto sobre
   --superficie (fondo oscuro), así que para "Trabaja con nosotros" se usa
   un tinte más claro del mismo verde solo en el texto/ícono — el borde
   superior de la tarjeta sí queda con el verde de marca real. */
.opcion-tarjeta-reservas { --tarjeta-acento: var(--taupe); }
.opcion-tarjeta-comunidad { --tarjeta-acento: var(--dorado); }
.opcion-tarjeta-empleo {
  --tarjeta-acento: var(--verde-oscuro);
  --tarjeta-acento-texto: color-mix(in srgb, var(--verde-oscuro) 45%, var(--crema) 55%);
}
.opcion-tarjeta-proveedores { --tarjeta-acento: var(--crema); }
.opcion-tarjeta-menu { --tarjeta-acento: var(--dorado-suave); }

.opcion-tarjeta svg {
  color: var(--tarjeta-acento-texto, var(--tarjeta-acento));
}

.opcion-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tarjeta-acento-texto, var(--tarjeta-acento));
}

.opcion-tarjeta h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--texto);
}

.opcion-tarjeta p:not(.opcion-eyebrow) {
  margin: 0;
  flex: 1;
  font-size: 13px;
  color: var(--texto-suave);
}

.opcion-tarjeta a {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tarjeta-acento-texto, var(--tarjeta-acento));
  text-decoration: none;
}

.opcion-tarjeta a:hover {
  text-decoration: underline;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dorado);
}

@font-face {
  font-family: "Aviano Contrast";
  src: url("assets/fonts/AvianoContrast.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.eyebrow-marca {
  font-family: "Aviano Contrast", "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.eyebrow-linea {
  display: block;
  width: 32px;
  height: 1px;
  background-color: var(--dorado);
}

.seccion-sitio h2 {
  margin: 0 0 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--texto);
}

@font-face {
  font-family: "Aviano Cooper Heavy";
  src: url("assets/fonts/AvianoHeavyCooper.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Titulares con la tipografía de marca (Aviano Cooper Heavy, ver PDF de
   marca). "Baloo 2" queda como alternativa por si el .otf no llegara a
   cargar (fuente bloqueada, navegador muy viejo, etc.). */
h2.titulo-marca {
  font-family: "Aviano Cooper Heavy", "Baloo 2", "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.seccion-texto {
  margin: 0 0 28px;
  color: var(--texto-suave);
  font-size: 15px;
}

/* Páginas individuales de formulario (eventos, empleo, proveedores) */

.seccion-standalone {
  max-width: 900px;
  padding-top: 48px;
  text-align: left;
}

.enlace-volver {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--texto-suave);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.enlace-volver:hover {
  color: var(--acento);
}

.seccion-standalone .eyebrow {
  justify-content: flex-start;
}

.subopciones-grupo {
  margin-bottom: 28px;
}

.subopciones-grupo:last-of-type {
  margin-bottom: 36px;
}

.subopciones-grupo-titulo {
  max-width: 900px;
  margin: 0 auto 14px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dorado);
}

.subopciones-cuadricula {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.subopcion-tarjeta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
  background-color: var(--pagina);
  border: 1px solid var(--borde);
  border-radius: var(--radio);
  color: var(--texto);
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  text-align: left;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.subopcion-tarjeta:hover {
  border-color: var(--acento);
}

.subopcion-tarjeta.seleccionada {
  border-color: var(--acento);
  background-color: var(--acento-suave);
}

.subopcion-icono {
  font-size: 20px;
}

.subopcion-titulo {
  font-weight: 700;
  font-size: 13px;
}

.subopcion-texto {
  font-size: 12px;
  color: var(--texto-suave);
}

.formulario-landing {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

/* Entrada del formulario de postulación (empleo/proveedores): al llegar
   a la vista, el bloque completo sube con un leve escalado y luego cada
   campo aparece en cascada, en vez del fade plano genérico de .reveal. */
.formulario-landing.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.formulario-landing.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.formulario-landing.reveal-visible > * {
  opacity: 0;
  animation: formularioCampoAparecer 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.formulario-landing.reveal-visible > *:nth-child(1) { animation-delay: 0.08s; }
.formulario-landing.reveal-visible > *:nth-child(2) { animation-delay: 0.16s; }
.formulario-landing.reveal-visible > *:nth-child(3) { animation-delay: 0.24s; }
.formulario-landing.reveal-visible > *:nth-child(4) { animation-delay: 0.32s; }
.formulario-landing.reveal-visible > *:nth-child(5) { animation-delay: 0.4s; }
.formulario-landing.reveal-visible > *:nth-child(6) { animation-delay: 0.48s; }
.formulario-landing.reveal-visible > *:nth-child(7) { animation-delay: 0.56s; }
.formulario-landing.reveal-visible > *:nth-child(8) { animation-delay: 0.64s; }
.formulario-landing.reveal-visible > *:nth-child(9) { animation-delay: 0.72s; }

@keyframes formularioCampoAparecer {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.formulario-landing h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--texto);
}

.formulario-fila {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.formulario-campo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.formulario-campo.is-oculta {
  display: none;
}

.formulario-campo label {
  font-size: 12px;
  font-weight: 600;
  color: var(--texto-suave);
}

.formulario-campo input,
.formulario-campo select,
.formulario-campo textarea {
  padding: 11px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--texto);
  background-color: var(--pagina);
  border: 1px solid var(--borde);
  border-radius: 10px;
  resize: vertical;
}

.formulario-campo input:focus,
.formulario-campo select:focus,
.formulario-campo textarea:focus {
  outline: none;
  border-color: var(--acento);
  box-shadow: 0 0 0 3px var(--acento-suave);
}

.formulario-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--texto-suave);
  cursor: pointer;
}

.formulario-checkbox input {
  margin-top: 3px;
  accent-color: var(--acento);
}

.formulario-checkbox a {
  color: var(--dorado);
}

.formulario-error {
  margin: 0;
  min-height: 16px;
  font-size: 13px;
  color: #c23f57;
}

.formulario-nota {
  margin: 0;
  font-size: 12px;
  color: var(--texto-tenue);
}

.formulario-landing .boton {
  align-self: flex-start;
}

.formulario-exito {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  text-align: center;
  color: var(--texto);
}

.formulario-exito svg {
  color: var(--acento);
}

/* Ubicación */

.ubicacion-cuadricula {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
  align-items: start;
}

.ubicacion-datos dl {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ubicacion-datos dt {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--texto-tenue);
}

.ubicacion-datos dd {
  margin: 0;
  font-size: 14px;
  color: var(--texto);
}

.ubicacion-mapa {
  width: 100%;
  height: 320px;
  border: 1px solid var(--borde);
  border-radius: var(--radio);
}

/* Pie */

.pie-sitio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  border-top: 1px solid var(--borde);
  color: var(--texto-tenue);
  font-size: 12px;
}

.pie-sitio p {
  margin: 0;
}

.pie-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--texto);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pie-instagram svg {
  color: var(--dorado);
}

.pie-instagram:hover {
  color: var(--dorado);
}

/* Responsivo */

@media (max-width: 980px) {
  .opciones-cuadricula {
    grid-template-columns: repeat(2, 1fr);
  }

  .subopciones-cuadricula {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .opciones-cuadricula {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 100vh;
    height: 100svh;
    padding: 60px 20px 40px;
  }

  .hero-degradado {
    background:
      linear-gradient(180deg, rgba(1, 8, 33, 0.5) 0%, rgba(1, 8, 33, 0.6) 60%, rgba(1, 8, 33, 0.8) 100%);
  }

  .ubicacion-cuadricula {
    grid-template-columns: 1fr;
  }

  .galeria-pieza {
    flex-basis: 240px;
  }

  .galeria-pieza img {
    height: 300px;
  }

  .galeria-flecha {
    display: none;
  }

  .subopciones-cuadricula {
    grid-template-columns: 1fr 1fr;
  }

  .formulario-fila {
    grid-template-columns: 1fr;
  }

  .seccion-sitio,
  .galeria-sitio {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .video-sitio {
    padding-top: 48px;
  }

  .video-cuadricula {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .video-marco {
    height: 300px;
  }

  .video-texto {
    text-align: center;
  }

  .ubicacion-mapa {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 48px 16px 32px;
  }

  .hero-logo {
    max-width: 260px;
  }

  .hero-eslogan {
    font-size: 14px;
  }

  .boton {
    padding: 12px 22px;
    font-size: 12px;
  }

  .seccion-sitio,
  .galeria-sitio,
  .video-sitio {
    padding-left: 16px;
    padding-right: 16px;
  }

  .video-marco {
    height: 240px;
  }

  .opcion-tarjeta {
    padding: 18px 16px;
  }

  .galeria-pieza {
    flex-basis: 210px;
  }

  .galeria-pieza img {
    height: 260px;
  }

  .subopciones-cuadricula {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .intro-llaves {
    display: none;
  }

  .hero-bienvenida,
  .hero-logo,
  .hero-eslogan,
  .hero-acciones {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .formulario-landing.reveal-visible > * {
    animation: none;
    opacity: 1;
  }
}
