/* ===== CONTAINER COM FUNDO ===== */
.contato-container {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 15px;

    background-image:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("../imagens/fundo-contato.jpg");

    background-size: cover;
    background-position: center;
}

/* ===== CARD CENTRAL ===== */
.contato-container {
    min-height: calc(100vh - 90px); /* desconta o header */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* 👈 NÃO centraliza vertical */
    padding: 20px 15px;
}


.contato-card {
    margin-top: 20px;
}


.contato-card h2 {
    color: #2563eb;
    margin-bottom: 10px;
}

.contato-card p {
    color: aliceblue;
    font-size: 16px;
    margin-bottom: 20px;
}


/* ===== CARDS DE CONTATO ===== */
.contato-opcoes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-contato {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    padding: 18px;

    border-radius: 10px;
    text-decoration: none;

    font-size: 18px;
    font-weight: bold;
}

.card-contato span {
    font-size: 15px;
    margin-top: 5px;
    font-weight: normal;
}

/* ===== WHATSAPP ===== */
.whatsapp {
    background-color: #16a34a;
    color: white;
}

.whatsapp:hover {
    background-color: #15803d;
}
/* ===== EMAIL E HORÁRIO ===== */
.email {
    background-color: #2563eb;
    color: white;
}

.email:hover {
    background-color: #1e40af;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 600px) {

    header {
        padding: 15px;
    }

    .logo h1 {
        font-size: 20px;
    }

    nav ul {
        gap: 12px;
    }

    .card-contato {
        font-size: 17px;
        padding: 20px;
    }
}
.localizacao {
    padding: 40px 20px;
    text-align: center;
}

.localizacao h2 {
    margin-bottom: 10px;
}

.mapa {
    margin-top: 20px;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.mapa iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
