/* Importar variáveis e estilos globais */
@import url("style.css");

.contact-section {
    padding: 32px 16px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 32px;
    margin-bottom: 32px; /* Adiciona espaço entre o card e o mapa */
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 16px;
    width: 32px;
    text-align: center;
}

.contact-item p, .contact-item a {
    font-size: 1rem;
    color: var(--gray-dark);
    text-align: left;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* Estilos para o mapa */
.map-container {
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 100%; /* Garante que o container ocupe toda a largura */
}

.map-container iframe {
    width: 100%;
    height: 400px;
}

@media (max-width: 600px) {
    .map-container iframe {
        height: 300px;
    }
}
