/* Localização */
.location-section {
    padding: 5rem 0;
    background: white;
}

.location-info h2 {
    color: #002147;
    margin-bottom: 1.5rem;
}

address p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

address i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    color: #002147;
}

.working-hours {
    list-style: none;
    padding: 0;
}

.working-hours li {
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    max-width: 250px;
    border-bottom: 1px solid #eee;
}

.working-hours li span:first-child {
    font-weight: 600;
}

.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Modal */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

#panoramaView {
    width: 100%;
    height: 500px;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsivo */
@media (max-width: 992px) {
    .infra-numbers {
        flex-direction: column;
    }

    .location-info {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .tab-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }
}

.section-title-left {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    color: #2c3e50;
    margin-bottom: 2rem;
    border-left: 4px solid #28a745;
    padding-left: 1rem;
}

.accordion-details details {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.accordion-details summary {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
}

.accordion-details summary::marker {
    display: none;
}

.accordion-details summary::after {
    content: "▾";
    font-size: 1rem;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(4px);
    transition: transform 0.3s ease;
}

.accordion-details details[open] summary::after {
    transform: rotate(180deg) translateY(-2px);
}

.infra-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.infra-list li {
    position: relative;
    margin-bottom: 0.6rem;
    padding-left: 1.4rem;
    font-size: 0.98rem;
    color: #555;
    line-height: 1.6;
}

.infra-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.section-title-left {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    color: #2c3e50;
    border-left: 5px solid #e4a11b;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.location-info p,
.location-info li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.location-info .bi {
    vertical-align: middle;
}

.map-container iframe {
    border-radius: 12px;
    height: 100%;
    min-height: 320px;
}

/* Estilo para a seção de vídeo */
.video-section {
    background-color: #fff;
    padding: 4rem 0;
}

.video-section .section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1.5rem;
}

.video-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Reduz um pouco a altura da janela de vídeo */
.video-wrapper .ratio {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 400px;
}
