/* ==========================
   Estilo da Seção Contato - Guia
========================== */
#contato {
    padding: 50px 0;
    background-color: #121212; /* Fundo escuro */
    color: #f1f1f1; /* Texto claro */
    text-align: center;
}

#contato .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Informações de contato e imagem */
.contato-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 30px;
    background: #1a1a1a; /* Fundo mais escuro para destaque */
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Texto da seção */
.contato-info .texto {
    width: 55%;
    text-align: left;
}

.contato-info .texto h2 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.contato-info .texto h3 {
    font-size: 24px;
    font-weight: 500;
    color: #208ac9; /* Destaque em azul */
    margin-bottom: 15px;
}

.contato-info .texto p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contato-info .texto a {
    color: #208ac9;
    text-decoration: none;
    transition: color 0.3s;
}

.contato-info .texto a:hover {
    color: #fff;
}

/* Imagem da seção */
.contato-info .imagem {
    width: 40%;
}

.contato-info .imagem img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    filter: brightness(0.9);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.contato-info .imagem img:hover {
    transform: scale(1.05);
}

/* ==========================
   Estilo do Mapa
========================== */
.mapa iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ==========================
   Responsividade
========================== */
@media (max-width: 768px) {
    .contato-info {
        flex-direction: column;
        text-align: center;
    }
    
    .contato-info .texto,
    .contato-info .imagem {
        width: 100%;
    }
    
    .contato-info .imagem {
        margin-top: 20px;
    }
}
