/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 39, 73, 0.95) 0%, rgba(30, 39, 73, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFB800;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Botões CTA */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.cta-secondary {
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    color: #1E2749;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 184, 0, 0.4);
}

.cta-large {
    font-size: 1.4rem;
    padding: 22px 50px;
}

/* Animação Pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Trust Bar */
.trust-bar {
    background: linear-gradient(135deg, #1E2749 0%, #2a3a5f 100%);
    padding: 40px 0;
    color: white;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFB800;
    margin-bottom: 5px;
}

.trust-text {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

/* Seções */
.diferenciais,
.veiculos,
.depoimentos,
.certificacoes {
    padding: 80px 0;
}

.diferenciais {
    background: #f5f5f5;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
    color: #1E2749;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* Diferenciais Grid */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.diferencial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.diferencial-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.diferencial-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1E2749;
}

.diferencial-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

/* Banner de Urgência */
.urgencia-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    animation: pulse 3s infinite;
}

/* Veículos Grid */
.veiculos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.veiculo-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.veiculo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.veiculo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 25px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.badge-escassez {
    background: linear-gradient(135deg, #FF4500 0%, #DC143C 100%);
    color: white;
}

.badge-bonus {
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    color: #1E2749;
}

.badge-urgencia {
    background: linear-gradient(135deg, #FF1744 0%, #C2185B 100%);
    color: white;
}

.veiculo-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.veiculo-content {
    padding: 25px;
}

.veiculo-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1E2749;
}

.veiculo-descricao {
    color: #666;
    margin-bottom: 15px;
    font-size: 1rem;
}

.veiculo-detalhes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.veiculo-detalhes span {
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #333;
}

.veiculo-preco {
    margin-bottom: 20px;
    text-align: center;
}

.preco-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.preco-valor {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #25D366;
}

.veiculo-card .cta-button {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
}

/* Depoimentos */
.depoimentos {
    background: #f5f5f5;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.depoimento-stars {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFB800;
}

.depoimento-texto {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-autor {
    font-weight: 700;
    color: #1E2749;
}

/* Certificações */
.certificacoes {
    background: #1E2749;
    color: white;
}

.certificacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.certificacao-item {
    padding: 20px;
}

.certificacao-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #FFB800;
}

.certificacao-item p {
    font-size: 1rem;
    font-weight: 600;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    padding: 80px 0;
    text-align: center;
    color: #1E2749;
}

.cta-final-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-final-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.cta-final-urgencia {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

/* Footer */
.footer {
    background: #1E2749;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFB800;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #FFB800;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferenciais-grid,
    .veiculos-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    .cta-final-title {
        font-size: 2rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .cta-large {
        font-size: 1.1rem;
        padding: 18px 35px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .urgencia-banner {
        font-size: 0.9rem;
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .logo {
        max-width: 150px;
    }

    .trust-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .veiculo-card h3 {
        font-size: 1.5rem;
    }

    .preco-valor {
        font-size: 1.8rem;
    }
}


/* Seção Consultor de Estoque */
.consultor-estoque {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    text-align: center;
}

.consultor-estoque .section-subtitle {
    margin-bottom: 40px;
    font-size: 1.3rem;
}
