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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    min-height: 500px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.video-section {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.hero-video {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: #000;
}

.hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-text .lead {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Problem Section */
.problem {
    background: linear-gradient(rgba(248, 249, 250, 0.8), rgba(248, 249, 250, 0.8)), url('attached_assets/generated_images/Worried_anxious_parents_00976abe.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    text-align: center;
    min-height: 400px;
}

.problem h2 {
    font-size: 2.2em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.problem p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('attached_assets/generated_images/Happy_developing_family_success_d31a01b4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
}

.solution h2 {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.highlight {
    color: #667eea;
    font-weight: bold;
}

.solution-intro {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 50px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #667eea;
    transition: transform 0.3s ease;
}

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

.benefit h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit p {
    color: #666;
    font-size: 1.1em;
}

/* Transformation Section */
.transformation {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.7) 0%, rgba(245, 87, 108, 0.7) 100%), url('attached_assets/generated_images/Confident_hopeful_parent_transformation_4b3c9563.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0;
    text-align: center;
    min-height: 400px;
}

.transformation h2 {
    font-size: 2.3em;
    margin-bottom: 20px;
}

.transformation p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Offer Section */
.offer {
    background-color: #2c3e50;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.offer h2 {
    font-size: 2.4em;
    margin-bottom: 40px;
}

.price {
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.2em;
}

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

.offer-content h3 {
    font-size: 1.6em;
    margin-bottom: 30px;
    color: #4ecdc4;
}

.offer-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.offer-list li {
    padding: 10px 0;
    font-size: 1.2em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Oferta Simples */
.offer-simple {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Apresentação do Ebook */
.ebook-presentation {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.ebook-image {
    flex: 0 0 250px;
}

.ebook-cover {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ebook-cover:hover {
    transform: scale(1.05);
}

.ebook-info {
    flex: 1;
    text-align: left;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .ebook-presentation {
        flex-direction: column;
        gap: 30px;
    }
    
    .ebook-image {
        flex: none;
        max-width: 200px;
        align-self: center;
    }
    
    .ebook-info {
        text-align: center;
    }
}

.offer-simple h2 {
    font-size: 2.2em;
    color: white;
    margin-bottom: 30px;
}

.offer-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid rgba(78, 205, 196, 0.5);
}

.offer-highlight h3 {
    color: #4ecdc4;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
}

.offer-description {
    font-size: 1.1em;
    color: white;
    line-height: 1.6;
    opacity: 0.95;
}

.what-included {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.what-included h4 {
    color: #4ecdc4;
    font-size: 1.3em;
    margin-bottom: 20px;
    text-align: center;
}

.simple-list {
    list-style: none;
    padding: 0;
}

.simple-list li {
    padding: 12px 0;
    font-size: 1.05em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.simple-list li:before {
    content: "✓ ";
    color: #4ecdc4;
    font-weight: bold;
    margin-right: 8px;
}

.price-simple {
    background: rgba(78, 205, 196, 0.2);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid #4ecdc4;
}

.price-text {
    font-size: 1.2em;
    color: white;
    margin-bottom: 10px;
}

.final-price {
    font-size: 3em;
    color: #4ecdc4;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-benefit {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.cta-simple {
    margin-top: 30px;
}

.simple-button {
    background: #4ecdc4;
    color: #2c3e50;
    border: none;
    padding: 20px 40px;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.simple-button:hover {
    background: #45b7aa;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(78, 205, 196, 0.6);
}

.guarantee {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    margin: 5px 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    background: #4ecdc4;
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #45b7aa;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Estilos para links que funcionam como botões */
a.simple-button, a.cta-button {
    text-decoration: none;
    display: inline-block;
}

a.simple-button:visited, a.cta-button:visited {
    color: inherit;
}

a.simple-button:active, a.cta-button:active {
    transform: translateY(0);
}

.security {
    margin-top: 20px;
    font-size: 1.1em;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 30px 0;
    text-align: center;
}

/* Estilo para imagens das seções */
.section-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.section-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.section-text {
    flex: 1;
}

/* Hero com imagem */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.section-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.8em;
    }
    
    .hero-text .lead {
        font-size: 1.1em;
    }
    
    .problem h2, .solution h2, .transformation h2, .offer h2, .cta h2 {
        font-size: 1.8em;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit {
        padding: 20px;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-video {
        width: 280px;
        height: 280px;
        border-radius: 8px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    
    .section-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .section-image {
        width: 280px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 1.5em;
    }
    
    .hero-text .lead {
        font-size: 1em;
    }
    
    .hero-video {
        width: 250px;
        height: 250px;
        border-radius: 6px;
    }
    
    .section-image {
        width: 250px;
        height: 160px;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .testimonials h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .testimonial-track {
        min-height: 480px;
    }
    
    .testimonial-content {
        padding: 25px 20px;
        margin: 0 10px;
        min-height: 350px;
        height: auto;
    }
    
    .testimonial-text {
        font-size: 0.95em;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .carousel-controls {
        gap: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
}

/* Seção de Garantias e Segurança */
.security-guarantees {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

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

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

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

.guarantee-icon {
    font-size: 3em;
    margin-bottom: 15px;
    line-height: 1;
}

.guarantee-item h4 {
    color: #2c3e50;
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: bold;
}

.guarantee-item p {
    color: #6c757d;
    font-size: 1em;
    line-height: 1.5;
    margin: 0;
}

.security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* Botão CTA do Hero */
.hero-cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    display: inline-block;
}

.hero-cta-button:hover {
    background: linear-gradient(135deg, #ee5a52 0%, #dc3f3a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.hero-cta-button:active {
    transform: translateY(-1px);
}

/* Seção de Depoimentos */
.testimonials {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    overflow: visible;
    height: auto;
    min-height: 420px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    pointer-events: none;
    overflow: visible;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    margin: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: auto;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: visible;
}

.testimonial-photo {
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    flex-grow: 1;
    text-align: center;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 1.2em;
    color: #fff;
}

.testimonial-author span {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5em;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}