

.page-title {
     border-left: 3px solid #691C33; 
     margin-left: 30px; 
     color: rgb(105, 28, 49); 
     font-size: 35px; 
     font-weight: bold; 
     text-align: left; 
     margin-top: 15px; 
}

.page-title p { 
    margin-left: 15px; 
}

.recargar-link {
    text-decoration: none;
    color: inherit;
}

.menu-museum{
    max-width: 80%;
    width: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: center;    
    align-self: center;
}

.menu-museum a { 
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    color: #A07B4A;
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    width: 50%;
    justify-content: center;
    text-align: center;
    align-items: center;
    transition: all 0.2s ease;
    border-bottom: solid; 
}

.menu-museum a:hover { 
    cursor: pointer; 
    background-color: rgba(141, 87, 0, 0.227); 
}


.carrusel-container { 
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    margin: 30px auto;
}

.carrusel { 
    position: relative; 
    display: flex;  
    align-items: center; 
    justify-content: center; 
    width: 100%;
    height: 100%; 
}

.slide { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    border-radius: 5px;
}

@media(max-width: 600px){
    .prev, .next{
        width: 35px;
        height: 35px;
        font-size: 22x;
    }
}
.slide.active { 
    display: block; 
}

.slide:hover {
    cursor: pointer;
}

.prev, .next { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background-color: rgba(105, 28, 51, 0.7); 
    color: white; 
    border: none; 
    font-size: 30px; 
    font-weight: bold; 
    cursor: pointer; 
    border-radius: 50%; 
    z-index: 10; 
    width: 45px; 
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.prev:hover, .next:hover { 
    background-color: rgb(105, 28, 51); 
}

.prev { 
    left: 10px; 
}

.next { 
    right: 10px; 
}


.section-content {
      max-width: 100%;
      width: 100%; 
      height: 100%; 
      display: flex; 
      flex-wrap: wrap; 
      justify-content: center; 
      gap: 20px; 
    }

.contenido-seccion { 
    display: none; 
    text-align: center; 
}

.contenido-seccion .etiqueta-seccion {
    color: rgb(105, 28, 49);
    font-size: 35px;
    font-weight: bold;
    margin-top: 15px;
}

.separador strong {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: #A07B4A;
}

.tarjeta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 90px;
    padding: 92px;
}

.tarjeta {
    background-color: rgba(141, 87, 0, 0.1); 
    width: 100%;
    max-width: 450px;  
    border: 1px solid rgba(160, 123, 74, 0.2); 
    border-radius: 8px; 
    padding: 10px; 
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tarjeta img { 
    width: 100%; 
    height: 250px;
    margin-bottom: 10px;
    object-fit:contain; 
}

.tarjeta p { 
    margin: 5px 0;
}

button{
    min-width: 80px;
    height: 35px;
}

.button-inf {
    background-color: rgba(105, 28, 51);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    height: 35px;
    display: flex;
    transition: background-clor 0.3s ease;
    align-self: center;
    justify-content: center;
}


@media (max-width: 768px) {
    .tarjeta-grid {
        grid-template-columns: 1fr;
    }
}

.tarjeta-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    width: 100%;
    min-height: 35px;
    padding-top: 10px;
}
.redes-sociales{
    display: flex;
    align-items: center;
}

.redes-sociales ul{
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
}
.redes-sociales li{
    display: flex;
    align-items: center;
}
.redes-sociales img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

@media(max-width:600px){
    .tarjeta-footer{
        flex-direction: column;
        align-items: stretch;
    }
    .button-inf{
        width: 100%;
        text-align: center;
        align-self: center;
    }
    .redes-sociales{
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    .redes-sociales ul{
        justify-content: center;
        gap: 25px;
    }
    .tarjeta img
    {
        width: 90%; 
        height: 250px;
    }
    
}

.modal { 
    background-color: rgba(141, 87, 0, 0.3); 
    display: none; 
    position: fixed; 
    z-index: 999; 
    left: 0; top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    backdrop-filter: blur(4px); 
}

.modal-contenido { 
    color: white; 
    background-color: rgba(105, 28, 51, 0.9); 
    margin: auto auto; 
    padding: 20px; 
    border: 2px solid #ddc8a1; 
    width: 90%; 
    max-width: 600px; 
    border-radius: 10px; 
    text-align: center; 
    position: relative; 
    font-size: 14px; 
}

.cerrar { 
    display: none;
    position: absolute; 
    top: 5px; 
    right: 5px; 
    color: white; 
    font-size: 24px; 
    font-weight: bold; 
    cursor: pointer; 
}

.body-no-scroll { 
    overflow: hidden; 
}

.prev, .next {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.modal-contenido {
    width: 95%;
    font-size: 12px;
}

.cerrar-inferior {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 10px 18px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cerrar-inferior:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 480px) {
    .cerrar-inferior {
        width: 92%;
        font-size: 16px;
        padding: 12px;
        align-self: center;
    }
}


@media (max-width: 600px) {

    .carrusel-container {
        width: 90%;
    }
    .slide {
        height: 250px;
    }
    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .menu-museum {
        flex-direction: column;
        align-items: center;
    }
    .menu-museum a {
        width: 90%;
        text-align: center;
        font-size:  20px;
        margin-bottom: 10px;
        padding: 12px;
    }
    .contenido-seccion
    {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .tarjeta
    {
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .tarjeta-grid
    {
        padding: 0px;
        width: 80%;
    }
}