body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
}


/*//////////////////////////////////////////////////////HEADER//////////////////////////////////////// */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgb(0, 0, 0, 0);
    z-index: 1000;
    padding: 15px 5%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1800px;
    margin: 0 auto;
    height: 100px;
}

.logo img {
    height: 100px;
    max-width: 100%;
    object-fit: contain;
}

nav {
    flex: 2;
    left: 10%;
    justify-content: center;
    display: flex;
    gap: 85px;
    padding-right: 10%;
    transition: all 0.3s ease-in-out;  /* Add transition here */
}

.nav-button {
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    color: white;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
} 

.nav-button:hover {
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    margin: 2px 0;
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
    .hamburger span {
        width: 25px;
        height: 3px;
        margin: 2px 0;
    }
    
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #7d7d7df1;
        padding: 1rem;
        color: black;
        opacity: 0;  /* Start with 0 opacity */
        transform: translateY(-10px);  /* Start slightly above final position */
    }

    nav.show {
        display: flex;
        opacity: 1;  /* Fade in to full opacity */
        transform: translateY(0);  /* Move to final position */
    }

    .nav-button {
        margin: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }
}

/*//////////////////////////////////////////////////PRODUCTOS/////////////////////////////////////////////////////*/


#productos{
    margin-top: 150px;
    scroll-margin-top: 150px;
}

#products{
    margin-top: 150px;
    scroll-margin-top: 150px;
}

.product-card {
    cursor: pointer;
}

#productos h2 {
    text-align: left;
    font-family: 'Syne', sans-serif; /* O la fuente que uses */
    font-size: 2rem;
    margin-bottom: 30px;
  }

#products h2 {
text-align: left;
font-family: 'Syne', sans-serif; /* O la fuente que uses */
font-size: 2rem;
margin-bottom: 30px;
}
  

.productos-container {
    max-width: 1200px; /* Ajusta según tus necesidades */
    margin: 0 auto;
    padding: 0 20px; /* Opcional, para dar algo de espacio lateral */
  }
  

/* Contenedor principal del grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 2rem; /* Espacio entre columnas y filas */
    margin: 0 auto;
    max-width: 1200px; /* Ajusta el ancho máximo si lo deseas */
}

/* Cada tarjeta de producto */
.product-card {
    text-align: center;
    padding: 0.1rem;
    /*border: 1px solid #eaeaea; /* Borde sutil */
    border-radius: 4px;        /* Esquinas ligeramente redondeadas */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #fafafa;
}

/* Efecto hover en la tarjeta */
.product-card:hover {
    transform: translateY(-5px);
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
}

/* Imagen del producto */
.product-card img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ajusta la imagen */
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 1rem;
}

/* Título del producto */
.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Montserrat';
    margin: 0.2rem 0;
    text-align: left;
}

/* Precio del producto */
.product-price {
    font-size: 0.8rem;
    font-family: 'Montserrat';
    font-weight: normal;
    color: #333;
    margin: 0.2rem 0;
    text-align: left;
}

@media screen and (max-width: 768px) {
    #productos h2 {
        text-align: left;
        font-family: 'Syne', sans-serif; /* O la fuente que uses */
        font-size: 2rem;
        margin-bottom: 30px;
      }
    
    #products h2 {
    text-align: left;
    font-family: 'Syne', sans-serif; /* O la fuente que uses */
    font-size: 2rem;
    margin-bottom: 30px;
    }
}


/*//////////////////////////////////////////////////ABOUT US/////////////////////////////////////////////////////*/

#TituloAbout{
    margin-top: 140px;
    margin-left: 5%;
    font-family: 'syne';
    font-weight: bold;
    font-size: 17px;
}

#ContenidoAbout{
    margin-top: 15px;
    margin-left: 5%;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.9px;
    line-height: 25px;
    padding-right: 40%;
}

.Nosotros {
    position: absolute; /* Posicionamiento absoluto para el rectángulo */
    margin-top: 120px;
    margin-bottom: 20px;
    left: 0; /* Alinea el rectángulo a la izquierda */
    right: 0; /* Alinea el rectángulo a la derecha */
    height: 300px; /* Altura del rectángulo */
    background-color: transparent; /* Color del rectángulo */
    z-index: 0; /* Asegura que el rectángulo esté detrás del contenedor */
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
}

.imagen2 {
    text-align: center; /* Centrar el texto bajo la imagen */
    width: 500px; /* Ancho de cada contenedor de imagen para que sea responsivo */
    margin-bottom: 100px;
    margin-top: 200px;
    padding-bottom: 30px;

}

.imagen2 img {
    width: 100%; /* Hace que la imagen sea completamente responsiva dentro de su contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    margin-bottom: 20px;
    margin-top: 20px;

}

#About{
    margin-top: 500px;
    color: transparent;
    
}

/*///////////////////////////////////////////////////CONTACT/////////////////////////////////////////////////////*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#contact {
    position: relative;
    height: 100vh;
    width: 100%;
}

.image-containerContact {
    position: absolute;
    left: 0;
    top: 0;
    width: 53%;
    height: 100%;
    overflow: hidden;
}

.image-containerContact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay-div {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: rgba(255, 255, 255, 0);
    padding: 10px;
    border-radius: 5px;
}

.contact-form-container {
    position: absolute;
    margin-top: 10px;
    right: 0;
    top: 0;
    width: 47%;
    height: 100%;
    overflow-y: auto;
    background-color: #ffffff;
    padding: 15px;
}

.contact-form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
    
}

form {
    display: flex;
    flex-direction: column;
}

label, input, textarea {
    margin-bottom: 15px;
}

input, textarea {
    padding: 10px;
    border: 1px solid black;
    border-radius: 4px;
}

textarea {
    height: 150px;
}

#botonFormulario {
    cursor: pointer;
    background-color: transparent;
    font-family: 'Raleway', sans-serif;
    color: black;
    font-weight: 300;
    border: 1px solid black;
    background-color: rgb(46, 46, 46, 0);
    border-radius: 4px;
    padding: 10px;
    transition: all 0.3s ease;
}

#botonFormulario:hover {
    background-color: rgb(255, 232, 173);
    font-weight: 100;
}

#TituloFormulario {
    font-weight: 600;
    color: black;
    font-size: 35px;
    margin-bottom: 0px;
    display: block;
    font-family: 'syne';
}

.SeccionesForm{
    color: black;
    font-family: 'syne';
    font-size: 14px;
}

#TextoFormulario {
    font-weight: 100;
    color: black;
    font-size: 13px;
    margin-top: 0px;
    margin-bottom: 40px;
    display: block;
    font-family: 'Raleway', sans-serif;

}

.contact-info {
    margin-top: 40px;
    color: white;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    margin-top: 15px;
}

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 24px;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .image-containerContact,
    .contact-form-container {
        position: static;
        width: 100%;
    }

    .image-containerContact {
        height: 40vh;
    }

    .contact-form-container {
        height: auto;
        padding: 20px;
    }

    .overlay-div {
        left: 10px;
        bottom: 10px;
    }
    
}

@media (max-width: 768px) {
    .image-containerContact {
        position: relative;
    }

    .overlay-div {
        position: absolute;
        left: 10px;
        top: 10px;
        bottom: auto;
        background-color: rgba(255, 255, 255, 0);  /* Semi-transparent background */
        padding: 10px;
        border-radius: 5px;
        z-index: 10;  /* Ensure it's above the image */
    }

    .contact-info {
        margin-top: 200px;
        color: white;
    }

    .social-icon{
        color: white;
    }
}

/*////////////////////////////////////////////////////FILOSOFIA///////////////////////////////////////*/

/* Contenedor general */
#filosofia {
    display: grid;
    grid-template-rows: auto auto auto auto auto;
    gap: 20px;
    max-width: auto;
    margin: 0 auto;
    padding: 30px;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  
  /* Fila 1: Dos imágenes lado a lado */
  .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .grid-container img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* Fila 2: Bloque de texto con título */
  .text-block {
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 70%;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.9px;
    line-height: 25px;
  }
  .text-block h2 {
    margin-bottom: 10px;
    font-family: 'Syne', sans-serif;
  }

  .grid-row h2 {
    margin-bottom: 10px;
    font-family: 'Syne', sans-serif;
  }
  
  /* Fila 3: Imagen grande a ancho completo */
  .big-image img {
    width: 95%;
    height: auto;
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
  }
  
  /* Fila 4: Dos columnas: izquierda con imagen pequeña; derecha con texto */
  .grid-row {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
  }
  .grid-row .left {
    display: grid;
    /* Para mostrar las imágenes una al lado de la otra, si son más de una se pueden poner en columnas */
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }  
  .grid-row .left img {
    width: 100%;
    height: auto;
    display: block;
  }
  .grid-row .right {
    text-align: left;
    padding: 10px;
    align-self: end; /* Alinea el contenido al final de la celda */
  }
  
  /* Fila 5: Dos imágenes al final */
  .bottom-images {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bottom-images img {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
    display: block;
    padding-right: 10px;
    padding-left: 10px;
  }
  
  /* Media Queries para hacerlo responsive */
  @media (max-width: 768px) {
    /* Ajusta el padding del contenedor general */
    #filosofia {
      padding: 20px;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    
    /* En pantallas pequeñas, las dos imágenes de la Fila 1 se apilan */
    .grid-container {
      grid-template-columns: 1fr;
    }
    
    /* El bloque de texto ocupa el 100% */
    .text-block {
      max-width: 100%;
    }
    
    /* En la Fila 4, las columnas se apilan verticalmente */
    .grid-row {
      grid-template-columns: 1fr;
    }
    /* Si deseas que la columna de imágenes vaya primero y el texto abajo */
    .grid-row .left,
    .grid-row .right {
      grid-template-columns: 1fr;
    }
    .grid-row .right {
      align-self: initial;
      margin-top: 20px;
    }
    
    /* En la Fila 5, las dos imágenes se muestran en una sola columna */
    .bottom-images {
      grid-template-columns: 1fr;
    }
  }
  
  
  

/*//////////////////////////////////////////////////////SECCION OCUO//////////////////////////// */
#Ocuo {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura completa de la ventana */
    overflow: hidden;
}

.video-background {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Mantén el video detrás del contenido */
    overflow: hidden;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Hace que el video cubra todo el contenedor */
}

.contenido {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10; /* Asegúrate de que el contenido esté encima del video */
}

.buttonOcuo {
    position: absolute;
    width: 120px;
    height: 40px;
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    z-index: 20; /* Asegúrate de que el botón esté por encima */
    transform: translate(-50%, -50%);
}


.buttonOcuo img {
    width: 80px; /* Adjust as needed */
    height: auto;
}


.buttonOcuo {
    position: relative;
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: font-size 0.3s ease;
    padding: 0;
}

.buttonOcuo img {
    width: 80px; /* Adjust as needed */
    height: auto;
}

.button:hover{
    font-size: 15px;
}

.tooltip {
    position: absolute;
    display: none;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 5px;
}

.tooltip img {
    max-width: 450px;
    display: block;
}

.tooltip #tooltipText {
    margin-bottom: 5px;
    font-size: 18px;
    font-family: 'syne';
    font-style: normal;
    font-weight: 40;
    letter-spacing: 4px;
}

@media screen and (max-width: 768px) {
    .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; /* Ocupa el 100% de la altura de la ventana */
        overflow: hidden;
        background: #A4B2B1; /* El fondo negro evitará ver franjas blancas */
    }
    #background-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: contain;  /* Muestra el video completo sin recortes */
        transform: translate(-50%, -50%);
    }
}





/*////////////////////////////////////////////////////SECCION ERMITA//////////////////////////////////////////////*/
#Ermita {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../data/eDITADO.png');
    background-size: cover;
    background-position: center;
}

.buttonErmita {
    position: relative;
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: font-size 0.3s ease;
    padding: 0;
}

.buttonErmita img {
    width: 80px; /* Adjust as needed */
    height: auto;
}

.buttonErmita:hover{
    font-size: 15px;
}

#hoverImage {
    position: absolute;
    background-color: rgba(255, 255, 255, 1);
    padding-top: 10px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 4px;
    display: none;
    z-index: 1000;
}

#hoverImage {
    color: black;
    padding-top: 120;
    margin-bottom: 0.5rem;
    font-family: 'syne';
    font-style: normal;
    font-weight: 40;
    letter-spacing: 4px;
    font-size: 20px;
}

#hoverImage img {
    max-width: 500px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .background-container {
        width: 100vh;
        height: 100vw;
        transform: rotate(90deg);
        transform-origin: top left;
        top: 0;
        left: 100%;
        touch-action: manipulation;
    }
    .buttonErmita {
        z-index: 1000;
        position: relative;
    }
}

/*/////////////////////////////////////////////ERMITA PARED//////////////////////////////////////////////*/

/* Ajuste del contenedor principal */
#ermita-pared {
    margin-top: 80px;
}

/* Contenedor del video: ocupa el alto de la ventana */
#video-background {
    position: relative;
    width: 100%;
    height: 100vh; /* Alto completo de la ventana */
    overflow: hidden;
    background: black; /* Evita bordes o fondos en blanco */
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* Elimina las franjas, pero recorta parte del video */
}


/* Contenedor de los elementos inferiores (rectángulo y texto) */
.rectanguloContainer {
    background-color: transparent;
    padding: 30px 0;  /* Espacio arriba y abajo */
    text-align: center;
    width: 100%;
}

/*/////////////////////////////////////////////MESA ERMITA//////////////////////////////////////////////*/


/* Contenedor de la imagen: ocupa el alto de la ventana */
#image-background {
    position: relative;
    width: 100%;
    height: 100vh; /* Alto completo de la ventana */
    overflow: hidden;
    background: black; /* Evita bordes o fondos en blanco */
}

#image-background img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover; /* La imagen se ajusta para cubrir el contenedor */
}

/* Contenedor de los elementos inferiores (rectángulo y texto) */
.rectanguloContainer {
    background-color: transparent;
    padding: 30px 0;  /* Espacio arriba y abajo */
    text-align: center;
    width: 100%;
}


  

/*/////////////////////////////////////////////ERMITA>TODAS LAS LAMPARAS ERMITA//////////////////////////////////////////////*/

.container {
    padding-top: 130px;
    max-width: 1200px;
    margin: 0 auto;
}
.section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: 50% 50%;
    margin-bottom: 40px;
}
.image-container {
    flex: 1;
    padding: 0px;
    min-width: 200px;
}
.image-container img {
    max-width: 90%;
    height: auto;
}
.text-container {
    flex: 1;
    padding: 10px;
    min-width: 200px;
}

.new-bottom-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
  
.new-bottom-images .image-container img {
width: 100%;
height: auto;
object-fit: cover; /* Opcional */
}
  
.big-text {
    font-size: 24px;
    text-align: center;
}

/* Fila 3: Imagen grande a ancho completo */
.big-image2 img {
width: 95%;
height: auto;
object-fit: cover; /* Opcional */
margin-top: 50px;
margin-bottom: 50px;
}

.bottom-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0; /* Sin espacio entre celdas */
}
  
.bottom-images .image-container img {
width: 100%;
height: auto;
object-fit: cover; /* Opcional, para que se ajusten sin distorsión */
}  

.bottom-images2 {
    display: flex;
    justify-content: space-between;
}
.bottom-images2 .image-container {
    flex: 0 1 48%;
}

#TituloErmitaPiso {
    font-family: 'syne'; 
    font-size: 28px; 
    font-weight: 500;
    color: black;
    margin-bottom: 0px; 
}

#PiezaPiedra {
    font-family: 'syne'; 
    font-size: 15px; 
    font-weight: 500;
    color: black;
    margin-top: 50px; 
}

#TextoErmitaPiso {
    font-family: 'syne'; 
    font-size: 15px; 
    font-weight: 100;
    color: black;
    margin-top: 0px; 
}

p {
    margin-top: 0px;
    margin-bottom: 5px;
    font-size: 15px; 
    font-family: 'syne';
    font-style: normal;
}

#Tabla {
    padding-top: 25px;
    font-family: 'syne';
    font-style: normal;
    font-weight: 40;
    font-size: 15px;
}

#TextoGrande {
    padding-top: 35%;
    padding-right: 70px;
    font-family: 'syne';
    font-style: normal;
    font-weight: 40;
    font-size: 25px;
}

.imagen-amplia {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  

th, td {
    border: 1px solid transparent; /* Añade un borde a las celdas y los encabezados */
    padding: 4px; /* Añade un relleno dentro de las celdas */
    padding-right: 100px;
    text-align: left; /* Alinea el texto a la izquierda */
}

h1 {
    font-family: 'syne';
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 13px;
}

.rectangulo2 {
    margin-top: 100px;
    background-color: rgb(244, 244, 244, 0); /* Color del rectángulo */
    height: 20px; /* Altura del rectángulo */
    text-align: center; /* Centra el texto horizontalmente */
    padding-bottom: 30px;
    justify-content: space-around;
    display: flex;
    top: 0; /* Puedes ajustar esto según necesites */
    bottom: 0;
    left: 0; /* Alinea a la izquierda del contenedor */
    right: 0; /* Alinea a la derecha del contenedor */
}


.rectangulo {
    position: absolute; /* Posicionamiento absoluto para el rectángulo */
    margin-top: 0px;
    padding-bottom: 0px;
    left: 0; /* Alinea el rectángulo a la izquierda */
    right: 0; /* Alinea el rectángulo a la derecha */
    height: 400px; /* Altura del rectángulo */
    background-color: rgb(244, 244, 244); /* Color del rectángulo */
    z-index: 0; /* Asegura que el rectángulo esté detrás del contenedor */
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
}

#MasDeSerie{
    font-size: 20px;
    font-weight: 20;
}

.imagen {
    text-align: center; /* Centrar el texto bajo la imagen */
    width: 30%; /* Ancho de cada contenedor de imagen para que sea responsivo */
    margin-bottom: 20px;
}

.imagen img {
    width: 100%; /* Hace que la imagen sea completamente responsiva dentro de su contenedor */
    height: auto; /* Mantiene la proporción de la imagen */
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    /* Sección principal: pasar a una columna única */
    .section {
        grid-template-columns: 1fr;
    }
    /* Ajustar los contenedores de imagen y texto */
    .image-container, .text-container {
        min-width: auto;
        padding: 10px;
        text-align: center;
    }
    .image-container img {
        max-width: 100%;
    }
    /* Las imágenes inferiores en grupo se muestran en una sola columna */
    .new-bottom-images {
        grid-template-columns: 1fr;
    }
    /* Ajustar las secciones de tablas o textos grandes */
    #TextoGrande {
        padding-top: 20px;
        padding-right: 20px;
        font-size: 20px;
    }
    /* En la sección de imágenes adicionales, hacer que cada contenedor ocupe el 100% */
    .imagen {
        width: 100%;
    }
    /* Si el rectángulo de fondo afecta la visualización en móviles, se puede hacer estático */
    .rectangulo {
        position: static;
        height: auto;
        flex-direction: column;
        padding: 20px;
    }
}

#EM_ErmitaPared img {
    cursor: pointer;
}

#EP_ErmitaPared img {
    cursor: pointer;
}

#ME_ErmitaPared img {
    cursor: pointer;
}

#EM_MesaErmita img {
    cursor: pointer;
}

#EP_MesaErmita img {
    cursor: pointer;
}

#EA_MesaErmita img {
    cursor: pointer;
}

#EA_EM img {
    cursor: pointer;
}

#EP_EM img {
    cursor: pointer;
}

#EP_EP img {
    cursor: pointer;
}

#ME_EM img {
    cursor: pointer;
}

#ME_EP img {
    cursor: pointer;
}

#EM_EP img {
    cursor: pointer;
}

#EA_EP img {
    cursor: pointer;
}

/*//////////////////////////////////////// MAIN/////////////////////////////////////// */
main > section {
    display: none;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

main > section.active {
    display: block;
    opacity: 1;
}



/**/



