/* ANIMAÇÕES */
@keyframes slideFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


.location-section {
    width: 100%;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #f8f9fc, #e9edf3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    font-family: 'Segoe UI', sans-serif;
}

/* Bloco de informações */
.info-box {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 30px 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    max-width: 900px;
    width: 100%;
    animation: slideFade 0.8s ease forwards;
}

/* Lista */
.desc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.desc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideFade 0.6s ease forwards;
    animation-delay: calc(var(--i) * 0.2s);
}

/* Ícones */
.desc-item img {
    width: 28px;
    height: 28px;
}

/* Mapa */
.mapBox {
    width: 100%;
    max-width: 1000px;
    height: 450px;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    animation: slideFade 0.8s ease forwards;
}

.mapBox iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Observação */
.observation {
    background-color: #fff0d3;
    color: #7a4b00;
    font-size: 18px;
    padding: 15px 25px;
    border-left: 6px solid #f0ad4e;
    border-radius: 10px;
    max-width: 900px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    animation: popIn 1s ease forwards;
    text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .desc-item {
        font-size: 17px;
    }

    .mapBox {
        height: 300px;
    }

    .observation {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .desc-item {
        flex-direction: column;
        text-align: center;
    }

    .desc-item img {
        margin-bottom: 5px;
    }

    .mapBox {
        height: 250px;
    }

    .observation {
        font-size: 14px;
    }
}

/* Ordem de animação */
.desc-item:nth-child(1) { --i: 1; }
.desc-item:nth-child(2) { --i: 2; }
.desc-item:nth-child(3) { --i: 3; }
