<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Estilos específicos para a página de contato */

.hero-section {
    background-color: #004789;
    color: white;
    padding: 50px 0;
    text-align: center;
    background-image: linear-gradient(to right, #002f5c, #004789, #0077D9);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contato-section {
    padding: 60px 0;
    background-color: #f5f9ff;
}

.contato-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 20px;
}

/* Coluna de informações de contato */
.info-contato {
    flex: 1;
    min-width: 300px;
    background-color: #005DAA;
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-contato h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.info-contato &gt; p {
    margin-bottom: 30px;
    line-height: 1.5;
    opacity: 0.9;
}

.contato-item {
    display: flex;
    margin-bottom: 25px;
}

.contato-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contato-icon i {
    font-size: 1.5rem;
    color: white;
}

.contato-texto h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}

.contato-texto p {
    margin: 0 0 5px;
    opacity: 0.9;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #25D366;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-btn i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Formulário de contato */
.form-contato {
    flex: 2;
    min-width: 400px;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-contato h2 {
    color: #005DAA;
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.form-grupo {
    margin-bottom: 20px;
    width: calc(50% - 10px);
    display: inline-block;
    vertical-align: top;
}

.form-grupo:nth-child(odd) {
    margin-right: 20px;
}

.full-width {
    width: 100%;
    margin-right: 0;
}

.form-grupo label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-grupo input,
.form-grupo select,
.form-grupo textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-grupo input:focus,
.form-grupo select:focus,
.form-grupo textarea:focus {
    border-color: #005DAA;
    outline: none;
}

.checkbox-grupo {
    display: flex;
    align-items: flex-start;
    margin-top: 5px;
}

.checkbox-grupo input {
    width: auto;
    margin-right: 10px;
    margin-top: 4px;
}

.checkbox-grupo label {
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

.link-termos {
    color: #005DAA;
    text-decoration: underline;
}

.btn-enviar {
    background-color: #005DAA;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.btn-enviar:hover {
    background-color: #0077D9;
    transform: translateY(-2px);
}

.form-resposta {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
    font-weight: 600;
    text-align: center;
}

.sucesso {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.erro {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsividade */
@media (max-width: 992px) {
    .contato-wrapper {
        flex-direction: column;
    }
    
    .info-contato,
    .form-contato {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .form-grupo {
        width: 100%;
        margin-right: 0;
    }
    
    .contato-section {
        padding: 40px 0;
    }
    
    .info-contato,
    .form-contato {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contato-item {
        flex-direction: column;
    }
    
    .contato-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .form-contato h2,
    .info-contato h2 {
        font-size: 1.5rem;
    }
}
</pre></body></html>