body {
  background-image: url('/img/barroco fondo.jpg'); /* asegúrate que no tenga \ en el nombre */
  background-size: auto; /* No escalar, dejar tamaño original del patrón */
  background-repeat: repeat; /* Para que se repita como pattern */
  background-attachment: scroll; /* scroll es más seguro en móviles */
  background-position: top left;
}

body.body-mara {
  background-color: white !important;
  background-image: none !important;
}




/* Reset mejorado */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Portada principal */
#portada {
  width: 100%;
  height: 100vh;
  background-image: url('../img/portada.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* por si el overlay se desborda */
}

#portada::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* oscuridad ajustable */
  z-index: 1;
}

/* Asegurá que el contenido quede por encima */
#portadanao > * {
  position: relative;
  z-index: 2;
}

/* Portada principal */
#portadanao {
  width: 100%;
  height: 100vh;
  background-image: url('../img/GALERIAS/portadanao.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* por si el overlay se desborda */
}


/* Asegurá que el contenido quede por encima */
#portadanao > * {
  position: relative;
  z-index: 2;
}


/* Contenido de la portada */
.portada-contenido {
  z-index: 2;
}


/* Ajustes para pantallas chicas */
@media (max-width: 768px) {
  #portada {
    height: 100vh; /* También ocupa 100% de la pantalla en celulares */
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* En móviles es mejor scroll normal */
  }

  .logo-portada {
    width: 60%;
    height: auto;
    opacity: 0;
  }
}

#bienvenida {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px); /* 💡 desenfoque del fondo */
  background-color: rgba(255, 255, 255, 0.1); /* capa semitransparente */
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.bienvenida-contenido {
  color: white;
  padding: 2rem;
  z-index: 1;
}

#bienvenida.oculta {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}


.bienvenida-contenido h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; /* Regular */
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bienvenida-contenido p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; /* Regular */
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

#btn-ingresar {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; /* Regular */
  padding: 0.7rem 2rem;
  font-size: 1rem;
  background: white;
  color: black;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#btn-ingresar:hover {
  background: #000000; /* rosa suave */
}


#btn-musica {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease;
}

#btn-musica:hover {
  transform: scale(1.1);
}

#btn-musica img {
  width: 28px;
  height: 28px;
}

@keyframes latido {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

#btn-musica {
  animation: latido 2s ease-in-out infinite;
}

.flecha-deslizar {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: saltar 2s infinite;
  z-index: 100;
  opacity: 1;
  transition: opacity 0.5s ease; /* 👈 transición suave */
  pointer-events: none; /* para que no moleste al tocar */
}

.flecha-deslizar img {
  width: 80px;
  height: auto;
}


@keyframes saltar {
  0%   { transform: translateX(-50%) translateY(0); }
  50%  { transform: translateX(-50%) translateY(10px); }
  100% { transform: translateX(-50%) translateY(0); }
}





.contador {
  text-align: center;
  padding: 20px 0;
}

.contador-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.contador-texto {
  font-weight: 400;
  font-size: 1.2rem;
  padding: 0 40px;
  margin-bottom: 20px;
}

/* Estilos únicos por invitación */
.contador-mara {
  background-color: #000000;
  color: #ffffff important!;
  font-family: 'Montserrat', sans-serif;
}

.contador-nao {
  background-color: #c8d4d0;
  color: #ba5f5a;
  font-family: 'Playfair Display', serif;
  padding: 20px;
  border: 1px solid #ba5f5a;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.5), inset 0 0 0 6px #ba5f5a;
  border-radius: 8px;
}



/* Línea del contador */
.contador-linea {
  gap: 8px;
  flex-wrap: nowrap; /* 👈 No permitir bajar de línea */
}


/* Bloques de cada número */
.contador-bloque {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

/* Números grandes */
.contador-numero {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; /* Montserrat Black */
  font-size: 3rem;
  line-height: 1;
}

.contador-numero-barroco {
  font-family: 'Playfair Display', serif;
  font-weight: 500; /* Montserrat Black */
  font-size: 3rem;
  line-height: 1;
}

/* Texto de DÍAS, HORAS, etc. */
.contador-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400; /* Regular */
  font-size: 1rem;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Separador ":" */
.contador-separador {
  position: relative;
  top: -10px; /* Sube el : para alinearlo visualmente */
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 5px;
}

/* Sección de Lugar */
#lugar {
  background-color: #f5f5f5; /* Fondo claro para diferenciar la sección */
  color: #000000;
}

.lugar-bloque {
  max-width: 400px;
  margin: 0 auto;
}

.lugar-icono {
  width: 300px;
  height: auto;
  margin-bottom: 10px;
}

.lugar-icono-iglesia {
  width: 65px;
  height: auto;
  margin-bottom: 10px;
}


.lugar-direccion {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; /* Light */
  font-size: 1.2rem;
  margin-bottom: 20px;
}


.lugar-titulo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; /* Light */
  font-size: 1.7rem;
    color: rgb(0, 0, 0);
  margin-bottom: 10px;
}

.lugar-titulo-iglesia {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; /* Light */
  font-size: 1.7rem;
    color: rgb(0, 0, 0);
  margin-bottom: 10px;
}


.lugar-direccion-iglesia {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; /* Light */
  font-size: 1.2rem;
    color: rgb(0, 0, 0);
  margin-bottom: 20px;
}



.btn-lugar {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  background-color: #000000;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.separador-barroco {
  padding: 60px 0;
  text-align: center;
}

.separador-barroco img {
  height: auto;
  max-width: 300px;
  opacity: 0.9;
}



.container-iglesia {
  background-color: #ffffff;
}

.btn-lugar:hover {
  background-color: #ff5722;
}

.info-extra-linea {
  gap: 20px;
  flex-wrap: wrap; /* Permite que en móviles se acomoden en varias líneas si es necesario */
}

.lugar-bloque {
  width: 250px; /* Fijamos ancho para que todos los bloques tengan el mismo tamaño */
  margin-bottom: 20px;
}

/* Animación para los iconos */
@keyframes flotar {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Aplicar la animación a los iconos */
.lugar-icono {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  animation: flotar 3s ease-in-out infinite;
}

/* Galería */
#galeria {
  background-color: #fff;
  color: #333;
  padding: 20px 0;
}


.galeria-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
}

.galeria-img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.galeria-img:hover {
  transform: scale(1.20);
}

#confirmar-asistencia {
  position: relative;
  background-image: url('/img/GALERIAS/LUXV/fondo.jpg'); /* opcional */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: white;
  overflow: hidden; /* importante para que el overlay no sobresalga */
}

#confirmar-asistencia::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* oscuridad ajustable */
  z-index: 1;
}

/* Para asegurar que el contenido esté por encima */
#confirmar-asistencia .container {
  position: relative;
  z-index: 2;
}


.confirmar-asistencia-linea {
  gap: 1rem;
}

.asistencia-bloque {
  max-width: 320px;
}

.asistencia-icono {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  animation: flotar 3s ease-in-out infinite;
}

.asistencia-titulo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.3rem;
}

.asistencia-titulo-nao {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.5rem;
  font-weight: 400;
  color: #64f8ba;
  margin-bottom: 0.3rem;
}

.asistencia-descripcion {
  font-size: 1rem;
  color: #eee;
}

#confirmar-asistencia-nao {
  position: relative;
  background-color: #050a30;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: white;
  overflow: hidden; /* importante para que el overlay no sobresalga */
}

#confirmar-asistencia-nao::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0); /* oscuridad ajustable */
  z-index: 1;
}

/* Para asegurar que el contenido esté por encima */
#confirmar-asistencia-nao .container {
  position: relative;
  z-index: 2;
}


/* Efecto de flotar */
@keyframes flotar {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

#seccion-instagram2 {
  background-image: url('/img/GALERIAS/LUXV/REGALOS.jpg'); /* opcional */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  overflow: hidden;

}

#seccion-instagram2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45); /* Oscurece el fondo */
  z-index: 1;
}

/* Asegurar que el contenido esté por encima del overlay */
#seccion-instagram2 .container {
  position: relative;
  z-index: 2;
}

#seccion-instagram {
  background-image: url('/img/GALERIAS/LUXV/INSTAGRAM.jpg'); /* opcional */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  overflow: hidden;

}

#seccion-instagram-nao {
  background-image: url('/img/GALERIAS/NAOXV/4.jpg'); /* opcional */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  overflow: hidden;

}

.instagram-linea {
  gap: 1rem;
}

.instagram-bloque {
  max-width: 320px;

  
}

.instagram-icono {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  animation: flotar 3s ease-in-out infinite;
}

.instagram-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}



.instagram-descripcion {
  font-family: 'Montserrat', sans-serif;
  font-size: 1 rem;
  font-weight: 400;
  color: #eee;
}

#seccion-instagram::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45); /* Oscurece el fondo */
  z-index: 1;
}

#seccion-instagram-nao::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45); /* Oscurece el fondo */
  z-index: 1;
}

/* Asegurar que el contenido esté por encima del overlay */
#seccion-instagram .container {
  position: relative;
  z-index: 2;
}

#seccion-instagram a.btn {
  text-decoration: none !important;
  
}

#seccion-instagram a.btn.btn-light {
  color: rgb(0, 0, 0) !important;
}

/* Asegurar que el contenido esté por encima del overlay */
#seccion-instagram-nao .container {
  position: relative;
  z-index: 2;
}

#seccion-instagram-nao a.btn {
  text-decoration: none !important;
  
}

#seccion-instagram-nao a.btn.btn-light {
  color: rgb(0, 0, 0) !important;
}



/* Animación flotante */
@keyframes flotar {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}


@media (max-width: 768px) {
  
  /* Texto arriba del contador */
  .contador-texto {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  /* Número del contador */
  .contador-numero {
    font-size: 2.5rem;
  }

  /* Separador (:) */
  .contador-separador {
    font-size: 2.5rem;
    top: -8px;
  }

  /* Texto de DÍAS, HORAS, etc. */
  .contador-label {
    font-size: 0.8rem;
  }

  /* Línea del contador */
  .contador-linea {
    gap: 2px;
    flex-wrap: nowrap; /* 👈 Mantener siempre una sola fila */
  }

  .contador-bloque {
    flex: 1 1 auto; /* 👈 Muy importante: flex-grow, flex-shrink y flex-basis */
    min-width: 0;   /* 👈 Fundamental para que no obligue a agrandarse y provoque scroll */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

/* Sección de Galería */
#galeria {
  background-color: #fff;
  color: #333;
  padding: 20px 0;
}

.galeria-titulo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Contenedor de imágenes */
.galeria-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  overflow-x: auto;
  padding: 5px;
}

.galeria-img {
  flex: 0 0 auto;
  width: 185px; /* Miniatura cuadrada */
  height: 185px; /* Miniatura cuadrada */
  object-fit: cover; /* 👈 Esto recorta al centro y mantiene proporciones */
  object-position: center; /* 👈 Se enfoca en el centro de la foto */
  border-radius: 9px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.galeria-img:hover {
  transform: scale(1.05);
}


/* Efecto Fade In Up */
.fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fadeInUp.active {
  opacity: 1;
  transform: translateY(0);
}

#creditos-web {
  background-color: #111;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.creditos-texto {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

}

.btn-personalizado {
  background-color: #000000; /* rosa fuerte, cambiálo por el que quieras */
  color: white;
  border: none;
}

.btn-personalizado:hover {
  background-color: #d39481; /* tono más oscuro al pasar el mouse */
}

#seccion-regalo {
  background-image: url('/img/GALERIAS/LUXV/fondo.jpg'); /* opcional */
  padding-top: 60px;
  padding-bottom: 60px;
}

#seccion-regalo-nao {
  background-color: #050a30; /* fondo oscuro elegante */
  padding-top: 60px;
  padding-bottom: 60px;
}


.regalo-bloque {
  max-width: 320px;
}

.regalo-icono {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  animation: flotar 3s ease-in-out infinite;
}

.regalo-titulo {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.regalo-titulo-nao {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #eae7d9;
  margin-bottom: 0.3rem;
}

.regalo-descripcion {
  font-size: 1rem;
  color: #eee;
}

.img-sobre {
  width: 300px;
  height: auto;
  animation: flotar 3s ease-in-out infinite;
}

/* Si no tenías ya esta animación: */
@keyframes flotar {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}


.boton-sobre {
  all: unset; /* elimina TODOS los estilos del botón */
  cursor: pointer;
  display: inline-block;
}

.img-sobre {
  width: 300px;
  height: auto;
  animation: flotar 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.boton-sobre:hover .img-sobre {
  transform: scale(1.05);
}


.btn-personalizado-nao {
  background-color: #eae7d9;
  color: #111;
  border: none;
}

.btn-personalizado-nao:hover {
  background-color: #fbb6c4;
}

/* Fondo general del contenedor Swiper */
.swiper {
  background-color: transparent !important;
}

/* Fondo de cada slide */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  background-color: transparent !important;
}

.swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  background-color: transparent !important;
  object-fit: contain;
  border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  filter: invert(1); /* blanco puro */
  background-color: transparent !important;
  opacity: 0.8;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
}

.swiper-pagination-bullet {
  background-color: #ccc; /* color normal */
  
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #d1a369; /* color del punto activo (ej. dorado pastel) */
  
}

.tarjeta-misa {
  position: relative;
  width: 320px; /* o 100% si querés que sea responsivo */
  margin: auto;
}

.fondo-misa {
  width: 100%;
  display: block;
}

.contenido-misa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* CENTRADO REAL */
  text-align: center;
  width: 90%;
  color: #8c3c3c;
  font-family: 'Playfair Display', serif;
}

.icono-misa {
  width: 100px; /* más grande */
  margin-bottom: 25px;
}

.titulo-misa {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.detalle-misa {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-misa {
  display: inline-block;
  background-color: #a34d4d;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s;
}

.btn-misa:hover {
  background-color: #923c3c;
}

.btn-instagram {
  display: inline-block;
  background-color: #a34d4d;
  color: white !important;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s;
}

.btn-instagram:hover {
  background-color: #923c3c;
}


/* 🔒 Forzar galería transparente */
#galeria {
  background-color: transparent !important;
}

#galeria .container {
  background-color: transparent !important;
}

.swiper {
  background-color: transparent !important;
}

.swiper-slide {
  background-color: transparent !important;
}

/* Flechas negras con fondo transparente */
.swiper-button-next,
.swiper-button-prev {
  color: black !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* Si son pseudo-elementos */
.swiper-button-next::after,
.swiper-button-prev::after {
  color: black !important;
}

/* Si son SVG */
.swiper-button-next svg,
.swiper-button-prev svg {
  fill: black !important;
}

/* 🔒 En modo oscuro, mantener flechas negras */
@media (prefers-color-scheme: dark) {
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-button-next::after,
  .swiper-button-prev::after,
  .swiper-button-next svg,
  .swiper-button-prev svg {
    color: black !important;
    fill: black !important;
  }
}



.titulo-dresscodesvg {
  filter: none !important;
  mix-blend-mode: normal !important;
  color: inherit !important;
  background-color: transparent !important;
  isolation: isolate; /* previene herencias visuales en ciertos navegadores */
}

.NAO_ASISTENCIA {
  filter: none !important;
  mix-blend-mode: normal !important;
  color: inherit !important;
  background-color: transparent !important;
  isolation: isolate; /* previene herencias visuales en ciertos navegadores */
}

.NAO_FIESTA {
  filter: none !important;
  mix-blend-mode: normal !important;
  color: inherit !important;
  background-color: transparent !important;
  isolation: isolate; /* previene herencias visuales en ciertos navegadores */
}

.NAO_MUSICA {
  filter: none !important;
  mix-blend-mode: normal !important;
  color: inherit !important;
  background-color: transparent !important;
  isolation: isolate; /* previene herencias visuales en ciertos navegadores */
}

.NAO_REGALOS {
  filter: none !important;
  mix-blend-mode: normal !important;
  color: inherit !important;
  background-color: transparent !important;
  isolation: isolate; /* previene herencias visuales en ciertos navegadores */
}

.NAO_MISABLANCA {
  filter: none !important;
  mix-blend-mode: normal !important;
  color: inherit !important;
  background-color: transparent !important;
  isolation: isolate; /* previene herencias visuales en ciertos navegadores */
}

/* ✅ iOS FIX: desactivar background-attachment: fixed en iOS Safari */
@supports (-webkit-touch-callout: none) {
  #portada,
  #portadanao {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}

/* ✅ Altura real en móviles iOS para evitar bugs con 100vh */
#portada,
#portadanao {
  height: calc(var(--vh, 1vh) * 100);
}

@supports (-webkit-touch-callout: none) {
  body {
    background-attachment: scroll !important;
    background-size: auto !important;
    background-position: top left !important;
  }
}
