.location-zue {
    background: #fff;
    margin-top: 90px;
    padding: 0.1px 11% 35px 10%; 
    text-align: center;
}

.location-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #333;
    text-decoration: underline;
    text-decoration-color: #e3ab46; 
    margin-bottom: 10px;
    display: block;
}

.location-subtitle{
    font-family:'Montserrat', sans-serif;
    font-style:italic;
    font-weight:300;
    max-width:800px;
    margin:20px auto 30px;
}

.divider-line {
    height: 1px;
    background: #ccc;
    width: 60%;   
    margin: 20px auto; 
    opacity: 0.6;
}

.schedule {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    gap: 10px;             
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 17px;
    color: #444;
    margin: 10px 0;        
}

.location-content {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.location-box{
    border:4px solid #e3ab46;
    border-radius:18px;
    padding:15px;
    width:420px;
}

.location-box iframe{
    width:100%;
    height:300px;
    border:0;
    border-radius:12px;
}

.box-label{
    font-family:'Gloock', serif;
    margin-top:15px;
    font-size:18px;
}

.mini-carousel{
    position:relative;
    height:300px;
    overflow:hidden;
    border-radius:12px;
}

.mini-carousel img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1s ease;
}

.mini-carousel img.active{
    opacity:1;
}

.location-footer {
    margin-top: 30px; 
    margin-bottom: 0;
    font-family: 'Gloock', serif;
    font-size: 22px;
    text-decoration: underline;
    text-decoration-color: #e3ab46;
}

/* Tablets: hasta 768px */
@media (max-width: 768px) {
    .location-zue {
        padding: 15px 6% 30px 6%;
    }

    .location-title {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .location-subtitle {
        font-size: 15px;
        max-width: 90%;
        margin: 15px auto 25px;
    }

    .divider-line {
        width: 80%;
    }

    .schedule {
        font-size: 15px;
        gap: 8px;
    }

    .location-content {
        flex-direction: column;
        gap: 25px;
    }

    .location-box {
        width: 100%;
        padding: 12px;
    }

    .location-box iframe {
        height: 250px;
    }

    .box-label {
        font-size: 16px;
    }

    .mini-carousel {
        height: 250px;
    }

    .location-footer {
        font-size: 20px;
    }
}

/* Móviles: hasta 480px */
@media (max-width: 480px) {
    .location-zue {
        padding: 1px 5% 20px 5%;
    }

    .location-title {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .location-subtitle {
        font-size: 14px;
        margin: 12px auto 20px;
    }

    .divider-line {
        width: 90%;
    }

    .schedule {
        font-size: 13px;
        gap: 6px;
    }

    .location-content {
        gap: 20px;
    }

    .location-box {
        padding: 10px;
    }

    .location-box iframe {
        height: 200px;
    }

    .box-label {
        font-size: 14px;
    }

    .mini-carousel {
        height: 200px;
    }

    .location-footer {
        font-size: 18px;
    }
}