/* Importação de Fonte (Inter para um visual moderno e legível) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

/* Variáveis de Cores (Foco em Conversão e Energia) */
:root {
    --primary-color: #002D62; /* Azul Escuro (Institucional) */
    --secondary-color: #FFC72C; /* Amarelo/Dourado (Destaque/Ação) */
    --cta-color: #FF4500; /* Laranja Vibrante (Call to Action) */
    --text-color: #333333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --whatsapp-green: #25d366;
}

/* Estilos Gerais */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--text-color);
    overflow-x: hidden; /* Evita scroll horizontal */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Tipografia e Títulos */
h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.subheadline {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 40px;
}

.subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Botões de Ação (CTA) */
.btn-cta {
    display: inline-block;
    background: var(--cta-color);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.btn-cta:hover {
    background-color: #cc3700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

.btn-cta i {
    margin-right: 10px;
}

.btn-primary-small {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary-small:hover {
    background-color: #e0b025;
}

/* Animação de Pulso para CTA */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Cabeçalho (Simplificado para LP) */
header {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

header h1 {
    margin: 0;
    font-size: 22px;
    color: var(--primary-color);
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: inline-block;
    margin-left: 25px;
}

/* Seção Hero (Atenção) */
.hero {
    min-height: 600px;
    background: linear-gradient(rgba(0, 45, 98, 0.8), rgba(0, 45, 98, 0.8)), url('../img/hero-bg-vibrante.jpg') no-repeat center center/cover;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    max-width: 50%;
}

.hero-content h2 {
    font-size: 56px;
    text-align: left;
    color: var(--white);
    line-height: 1.1;
}

.hero-content .subheadline {
    text-align: left;
    color: var(--light-bg);
}

.hero-form-box {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 400px;
}

.hero-form-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    text-align: center;
}

.hero-form-box p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

/* Seção Benefícios (Desejo) */
.beneficios {
    background-color: var(--light-bg);
    text-align: center;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.beneficio-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.beneficio-item:hover {
    transform: translateY(-5px);
}

.icon-beneficio {
    font-size: 45px;
    color: var(--cta-color);
    margin-bottom: 15px;
}

.beneficio-item h4 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Seção Engajamento (Prova Social) */
.engajamento {
    background-color: var(--white);
}

.engajamento-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.img-carros {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.engajamento-text {
    max-width: 50%;
}

.engajamento-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.engajamento-text .destaque {
    font-weight: 700;
    color: var(--cta-color);
    font-size: 20px;
}

/* Seção Contato (Ação) */
.contato {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.contato h2 {
    color: var(--white);
}

.contato .subtitle {
    color: var(--light-bg);
}

.contato form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contato input, .contato select, .contato textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

/* Páginas de Conteúdo (Políticas) */
.content-page {
    padding-top: 40px;
    padding-bottom: 40px;
}

.content-page h2 {
    text-align: left;
    margin-bottom: 30px;
}

.content-page h3 {
    margin-top: 30px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    color: var(--primary-color);
}

/* Rodapé */
footer {
    background: #222;
    color: var(--light-bg);
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

/* Botão Flutuante do WhatsApp (Percorrendo a Tela) */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
    animation: pulse 2s infinite; /* Mantém a atenção */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

.whatsapp-float i {
    color: var(--white);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-form-box {
        max-width: 100%;
    }

    .hero-content h2 {
        text-align: center;
        font-size: 40px;
    }

    .hero-content .subheadline {
        text-align: center;
    }

    .engajamento-content {
        flex-direction: column;
    }

    .img-carros, .engajamento-text {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .subheadline {
        font-size: 20px;
    }

    .btn-cta {
        width: 100%;
        box-sizing: border-box;
    }
}
