.secao-contato {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0 80px;
}

.card-contato {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: none;
    height: 100%;
}

.icone-contato {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #001942 0%, #003366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.card-contato:hover .icone-contato {
    background: linear-gradient(135deg, #B31D1D 0%, #8f1419 100%);
    transform: scale(1.1);
}

.titulo-contato {
    color: #001942;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.info-contato {
    color: #666;
    text-align: center;
    line-height: 1.6;
}

.formulario-contato {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: none;
}

.campo-formulario {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.campo-formulario:focus {
    border-color: #001942;
    box-shadow: 0 0 0 0.2rem rgba(0, 25, 66, 0.25);
}

.label-formulario {
    font-weight: 600;
    color: #001942;
    margin-bottom: 10px;
    display: block;
}

.botao-enviar {
    background: linear-gradient(135deg, #B31D1D 0%, #8f1419 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.botao-enviar:hover {
    background: linear-gradient(135deg, #8f1419 0%, #B31D1D 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(179, 29, 29, 0.3);
}

.mapa-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    height: 400px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

.horario-funcionamento {
    background: linear-gradient(135deg, #001942 0%, #003366 100%);
    color: white;
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
}

.horario-funcionamento h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.horario-item:last-child {
    border-bottom: none;
}

.dia-semana {
    font-weight: 600;
}

.horario {
    opacity: 0.9;
}

.faq-secao {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.pergunta-faq {
    background: #f8f9fa;
    border: none;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: #001942;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pergunta-faq:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.resposta-faq {
    padding: 20px;
    color: #666;
    line-height: 1.6;
    display: none;
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.resposta-faq.ativa {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.redes-sociais-contato {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.rede-social-link {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #001942 0%, #003366 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.rede-social-link:hover {
    background: linear-gradient(135deg, #B31D1D 0%, #8f1419 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(179, 29, 29, 0.3);
}