/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* BLOCO 1 - Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    background-image: url('../images/hero-car.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.85) 0%, rgba(42, 82, 152, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title span.highlight {
    color: #FFD700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-subtitle p {
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 20px 0;
}

.benefits-list li {
    margin: 10px 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
    margin: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

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

.trust-indicators {
    margin-top: 30px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.trust-indicators span {
    margin: 0 15px;
    display: inline-block;
}

/* BLOCO 2 - Benefícios */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c3e50;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #25D366;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
}

/* BLOCO 3 - Simulador Visual */
.simulator-section {
    padding: 80px 0;
    background: white;
}

.simulator-table {
    max-width: 800px;
    margin: 0 auto 40px;
    overflow-x: auto;
}

.simulator-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.simulator-table th {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.simulator-table td {
    padding: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.simulator-table tr:nth-child(even) {
    background: #f8f9fa;
}

.simulator-table tr:hover {
    background: #e8f5e8;
}

.simulator-cta {
    text-align: center;
    margin-top: 40px;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: #25D366;
    margin-bottom: 20px;
}

/* BLOCO 4 - Prova Social */
.testimonial-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #25D366;
    font-weight: bold;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #25D366;
    font-size: 1.1rem;
}

/* BLOCO 5 - Garantia e Credibilidade */
.credibility-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.credibility-content {
    max-width: 700px;
    margin: 0 auto;
}

.credibility-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

/* CTA Final */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-trust {
    margin-top: 30px;
    font-size: 1rem;
    opacity: 0.8;
}

.final-trust span {
    margin: 0 10px;
}

/* BLOCO 6 - Rodapé */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 0;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 25px;
    }
    
    .simulator-table {
        font-size: 0.9rem;
    }
    
    .simulator-table th,
    .simulator-table td {
        padding: 15px 10px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .final-cta-section h2 {
        font-size: 2rem;
    }
    
    .final-cta-section p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .cta-button.large {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefits-section,
    .simulator-section,
    .credibility-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .simulator-table th,
    .simulator-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .trust-indicators span {
        display: block;
        margin: 5px 0;
    }
    
    .final-trust span {
        display: block;
        margin: 5px 0;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item,
.testimonial-content,
.simulator-table {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
.cta-button:focus,
.whatsapp-button:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}

/* Otimizações para impressão */
@media print {
    .whatsapp-float,
    .cta-button {
        display: none;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
}

