/* --- SEÇÃO CONTATO --- */
.contato-section {
    padding: 80px 5%;
    background-color: var(--page-bg);
}

.container-contato {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Texto menor, Mapa maior */
    gap: 50px;
    align-items: center;
}

/* --- TEXTOS --- */
.contato-info h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contato-info p,
.item-info span {
    color: var(--text-secondary);
}

.info-detalhes {
    margin: 30px 0;
}

.item-info {
    margin-bottom: 20px;
}

.item-info strong {
    display: block;
    color: var(--text-highlight);
    margin-bottom: 5px;
}

/* --- BOTÃO ESTILO CASEMASTER --- */
.btn-como-chegar {
    display: inline-block;
    background: var(--btn-gradient-blue);
    color: var(--btn-text);
    padding: 15px 35px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.btn-como-chegar:hover {
    transform: translateY(-3px);
    background: var(--btn-gradient-blue-hover);
    box-shadow: var(--shadow-elevated);
}

/* --- MAPA COM BORDAS ARREDONDADAS --- */
.mapa-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--border-soft);
}

.mapa-container iframe {
    display: block;
    filter: grayscale(0.2) contrast(1.1); /* Estética levemente dessaturada para combinar com a marca */
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .container-contato {
        grid-template-columns: 1fr; /* Empilha no tablet/celular */
        text-align: center;
    }

    .contato-info {
        order: 1;
    }

    .mapa-container {
        order: 2;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contato-info h2 {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .contato-info p,
    .item-info span {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .item-info strong {
        font-size: 0.98rem;
    }
}