:root {
    --cor-primaria: #2b3990; /* Azul */
    --cor-secundaria: #ed3237; /* Vermelho */
    --cor-branca: #ffffff;
    --cor-texto: #333333;
    --cor-fundo: #f5f5f5;
    --fonte-principal: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-principal);
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.logo-container img {
    max-height: 60px;
    width: auto;
}

/* Banner */
.banner {
    background-color: var(--cor-primaria);
    color: var(--cor-branca);
    padding: 60px 0;
    text-align: center;
}

.banner h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Formulário */
.form-section {
    padding: 60px 0;
}

.form-container {
    background-color: var(--cor-branca);
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.form-title {
    color: var(--cor-primaria);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-col {
    flex: 1;
    padding: 0 15px;
    min-width: 250px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--cor-primaria);
    outline: none;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--cor-primaria);
    color: var(--cor-branca);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #1f2a6b;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background-color: var(--cor-secundaria);
}

.btn-primary:hover {
    background-color: #c52a2f;
}

/* Alertas */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Benefícios */
.benefits {
    padding: 60px 0;
    background-color: var(--cor-branca);
}

.benefits-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--cor-primaria);
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--cor-fundo);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    margin-bottom: 30px;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--cor-primaria);
    text-transform: uppercase;
    font-weight: 700;
}

/* Footer */
footer {
    background-color: var(--cor-primaria);
    color: var(--cor-branca);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 50px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.footer-links ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    list-style: none;
    padding: 0;
}

.footer-links li {
    text-align: center;
    flex: 1;
}

.footer-links a {
    color: var(--cor-branca);
    text-decoration: none;
    transition: opacity 0.3s;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    padding: 10px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-col {
        flex: 100%;
        margin-bottom: 15px;
    }
    
    .banner h1 {
        font-size: 2rem;
    }
    
    .banner p {
        font-size: 1rem;
    }
    
    .benefit-card {
        min-width: 100%;
    }
    
    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-container {
        flex-direction: column;
    }
    
    .footer-logo {
        flex-direction: column;
    }
}
