/* Estilos Gerais */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #003c65;
    line-height: 1.6;
}

/* Cabeçalho com Imagem de Fundo */
header {
    background: linear-gradient(rgba(0, 60, 101, 0.8), rgba(0, 60, 101, 0.8)), 
                url('https://danielcaixeta.pro.br/scripts/ceteg/lpeja/eja.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 60, 101, 0.7);
    z-index: 0;
}

header > * {
    position: relative;
    z-index: 1;
}

header .logo img {
    max-width: 250px;
    margin-bottom: 20px;
}

header .header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    padding: 0 15px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

header .header-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Botões CTA */
.cta-buttons {
    margin: 40px auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    background: #f6891c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 200px;
}

.cta-button:hover {
    background: #e07a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-button.whatsapp-button {
    background: #25d366;
}

.cta-button.whatsapp-button:hover {
    background: #1da851;
}

/* Seção do Vídeo */
.video-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f9fa;
    overflow: hidden;
}

.video-section h2 {
    color: #003c65;
    margin-bottom: 30px;
    font-size: 2rem;
    padding: 0 15px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Seção de Benefícios */
.benefits {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.benefits h2 {
    color: #003c65;
    margin-bottom: 40px;
    font-size: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.benefit i {
    font-size: 2.5rem;
    color: #f6891c;
    margin-bottom: 15px;
}

.benefit h3 {
    color: #003c65;
    margin-bottom: 15px;
}

/* Seção Como Funciona */
.how-it-works {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.how-it-works h2 {
    color: #003c65;
    margin-bottom: 40px;
    font-size: 2rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step h3 {
    color: #f6891c;
    margin-bottom: 10px;
}

/* Seção FAQ */
.faq {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.faq h2 {
    color: #003c65;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.accordion-button {
    background-color: #003c65;
    color: white;
    font-weight: bold;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #f6891c;
    color: white;
}

.accordion-body {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: left;
}

/* Seção de Depoimentos */
.testimonials {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.testimonials h2 {
    color: #003c65;
    margin-bottom: 40px;
    font-size: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial .author {
    font-weight: bold;
    color: #003c65;
}

/* Formulário de Contato */
.contact-form {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.contact-form h2 {
    color: #003c65;
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-form p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.contact-form form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    color: #003c65;
    font-weight: bold;
}

.contact-form input,
.contact-form select {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: #f6891c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #e07a1a;
}

/* Rodapé */
footer {
    background: #003c65;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #1da851;
    transform: scale(1.1);
}

/* Media Queries para Responsividade */
@media (max-width: 992px) {
    header .header-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    header .header-content h1 {
        font-size: 1.8rem;
    }
    
    header .header-content p {
        font-size: 1rem;
    }
    
    .video-section h2,
    .benefits h2,
    .how-it-works h2,
    .faq h2,
    .testimonials h2,
    .contact-form h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    header .header-content h1 {
        font-size: 1.6rem;
    }
    
    .video-container {
        width: 95%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Seção de Oferta Especial */
.special-offer {
    padding: 80px 20px;
    text-align: center;
    background-color: #f6891c;
    color: white;
}

.special-offer h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

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

.offer-highlight {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.price-option {
    flex: 1;
    min-width: 200px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.price-detail {
    font-size: 1.2rem;
    opacity: 0.9;
}

.price-divider {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .special-offer h2 {
        font-size: 2rem;
    }
    
    .offer-title {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .pricing {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-divider {
        margin: 10px 0;
    }
}