/* =========================================
   GALERIAS E CARROSSEL - MOBILE FIRST
   ========================================= */
.event-info, .paisagens-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px 20px;
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 25px;
}

.titulo-label {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bronze);
    display: block;
    margin-bottom: 5px;
}

.info-item { 
    text-align: left; 
}

.info-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--bronze);
    display: block;
    margin-bottom: 2px;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 400;
    color: white;
}

/* Carrossel Swiper Otimizado para Touch */
.swiper {
    width: 100%;
    height: 60vh; /* Otimizado para ecrãs de telemóvel */
    border-radius: 16px;
    background: #000000;
    border: 1px solid rgba(255,255,255,0.05);
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--bronze);
    transform: scale(0.75); /* Setas mais discretas no mobile */
}

.swiper-pagination-bullet-active {
    background: var(--bronze) !important;
}

.download-container {
    text-align: center;
    margin-top: 25px;
}

.btn-download {
    display: block;
    width: 100%; /* Botão largo para ser fácil de clicar com o polegar */
    padding: 15px 20px;
    border: 1px solid var(--bronze);
    color: var(--bronze);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-download:hover {
    background: var(--bronze);
    color: white;
}

/* =========================================
   ADAPTAÇÃO PARA DESKTOP
   ========================================= */
@media (min-width: 768px) {
    .event-info, .paisagens-info {
        flex-direction: row;
        justify-content: center;
        gap: 50px;
        padding: 40px 20px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .info-item { 
        text-align: center; 
    }

    .titulo-label {
        font-size: 2.0rem;
    }

    .swiper {
        height: 75vh;
        border-radius: 24px;
    }

    .swiper-button-next, .swiper-button-prev {
        transform: scale(1);
    }

    .btn-download {
        display: inline-block;
        width: auto;
        padding: 15px 30px;
    }
}