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

html {
    scroll-behavior: smooth;
}

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

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

/* Header */
.header {
    background-image: url('attached_assets/generated_images/Comic_book_collage_background_d15fd2cd.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 74, 173, 0.7);
    pointer-events: none;
}

.header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.header .subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.cta-button, a.cta-button {
    text-decoration: none;
    display: inline-block;
    background: #00cc44;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 204, 68, 0.3);
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: #00aa36;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 204, 68, 0.4);
}

/* Seção de Benefícios */
.benefits {
    padding: 80px 0;
    background: #f5f5f5;
    background-image: url('attached_assets/generated_images/Hulk_comic_book_illustration_43992f03.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 245, 0.95);
    pointer-events: none;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #004aad;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.problem {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.problem h3 {
    color: #e74c3c;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.problem p {
    color: #666;
    font-size: 0.95rem;
}

.solution h3 {
    color: #00cc44;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.solution p {
    color: #555;
    font-weight: 500;
}

/* Seção de Preços */
.pricing {
    padding: 80px 0;
    background-image: url('attached_assets/generated_images/Comic_book_action_scene_577c7634.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    pointer-events: none;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #004aad;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #004aad 0%, #0066cc 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0, 74, 173, 0.4);
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00cc44;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.price {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: #00cc44;
}

.period {
    font-size: 1.2rem;
    opacity: 0.8;
}

.features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.features li {
    padding: 10px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.features li:hover {
    padding-left: 10px;
    color: #00cc44;
}

.bonus-item {
    background: rgba(0, 204, 68, 0.1);
    padding: 12px 15px !important;
    border-radius: 8px;
    margin: 5px 0;
    border-bottom: none !important;
    border-left: 4px solid #00cc44;
    font-weight: 600;
    color: #00ff66 !important;
}

.buy-button, a.buy-button {
    text-decoration: none;
    display: inline-block;
    background: #00cc44;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
}

.buy-button:hover {
    background: #00aa36;
    transform: translateY(-2px);
}

/* Depoimentos */
.testimonials {
    padding: 80px 0;
    background: #f5f5f5;
    background-image: url('attached_assets/generated_images/Multiple_superheroes_cityscape_scene_1d7a7bd1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 245, 0.95);
    pointer-events: none;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #004aad;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

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

.profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #004aad;
}

.info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #004aad;
}

.info span {
    font-size: 0.9rem;
    color: #666;
}

.testimonial p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

/* O que você vai receber */
.what-you-get {
    padding: 80px 0;
    background: white;
    background-image: url('attached_assets/generated_images/Spider-Man_swinging_through_city_d0030e1d.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.what-you-get::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    pointer-events: none;
}

.what-you-get h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #004aad;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

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

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

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

.feature .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #004aad;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Call to Action Final */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #004aad 0%, #0066cc 100%);
    color: white;
    text-align: center;
}

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

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

.urgency {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border: 2px solid #00cc44;
}

.urgency p {
    font-size: 1.2rem;
    color: #00cc44;
}

.cta-button-large, a.cta-button-large {
    text-decoration: none;
    display: inline-block;
    background: #00cc44;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 25px 60px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(0, 204, 68, 0.4);
    text-align: center;
}

.cta-button-large:hover {
    background: #00aa36;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 204, 68, 0.5);
}

.guarantee {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.guarantee p {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Seção de Contato */
.contact-support {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.contact-support h3 {
    font-size: 2rem;
    color: #004aad;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-support > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 25px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-item .icon {
    font-size: 2rem;
    margin-right: 20px;
}

.contact-details strong {
    display: block;
    color: #004aad;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details a {
    color: #00cc44;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #00aa36;
    text-decoration: underline;
}

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

/* Responsividade */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }
    
    .header .subtitle {
        font-size: 1.1rem;
    }
    
    .benefits h2,
    .pricing h2,
    .testimonials h2,
    .what-you-get h2 {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .pricing-card {
        margin: 0 20px;
    }
    
    .cta-button,
    .buy-button {
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .cta-button-large {
        font-size: 1.2rem;
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 60px 0;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .benefits,
    .pricing,
    .testimonials,
    .what-you-get,
    .final-cta {
        padding: 60px 0;
    }
    
    .benefit-card,
    .testimonial,
    .feature {
        padding: 20px;
    }
    
    .pricing-card {
        margin: 0 10px;
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 3rem;
    }
}

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

.benefit-card,
.testimonial,
.feature,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Efeitos de hover adicionais */
.benefit-card:hover .solution h3 {
    color: #00aa36;
    transition: color 0.3s ease;
}

.testimonial:hover .avatar {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.feature:hover .icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* Seção de Vídeo */
.video-container {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.video-placeholder {
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.02);
    border-color: #00cc44;
}

.play-button {
    font-size: 4rem;
    color: #00cc44;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.video-placeholder p {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Carrossel de HQs com SwiperJS */
.comics-showcase {
    padding: 80px 0;
    background: white;
    background-image: url('attached_assets/generated_images/Comic_book_collage_background_ab4a89e5.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.comics-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    pointer-events: none;
}

.comics-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #004aad;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.comics-swiper {
    position: relative;
    z-index: 1;
    padding: 0 20px 60px 20px;
}

.comic-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.comic-item:hover {
    transform: translateY(-10px);
}

.comic-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.comic-item h3 {
    font-size: 1.3rem;
    color: #004aad;
    margin-bottom: 10px;
    font-weight: 600;
}

.comic-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Customização dos botões de navegação do Swiper */
.comics-swiper .swiper-button-next,
.comics-swiper .swiper-button-prev {
    background: #004aad;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
}

.comics-swiper .swiper-button-next:after,
.comics-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.comics-swiper .swiper-button-next:hover,
.comics-swiper .swiper-button-prev:hover {
    background: #00cc44;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 204, 68, 0.4);
}

/* Customização da paginação do Swiper */
.comics-swiper .swiper-pagination {
    bottom: 20px;
}

.comics-swiper .swiper-pagination-bullet {
    background: #004aad;
    opacity: 0.3;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.comics-swiper .swiper-pagination-bullet-active {
    background: #00cc44;
    opacity: 1;
    transform: scale(1.2);
}

.comics-swiper .swiper-pagination-bullet:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

/* Seção Quadrinhos para Crianças */
.children-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.children-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.children-text h2 {
    font-size: 2.5rem;
    color: #004aad;
    margin-bottom: 25px;
    font-weight: 700;
}

.children-text > p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.benefits-list h3 {
    font-size: 1.4rem;
    color: #004aad;
    margin-bottom: 20px;
    font-weight: 600;
}

.benefits-list ul {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 74, 173, 0.1);
}

.highlight {
    background: linear-gradient(135deg, #004aad, #00cc44);
    padding: 25px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.highlight p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.children-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Responsividade para novos elementos */
@media (max-width: 768px) {
    .video-placeholder {
        height: 250px;
    }
    
    .play-button {
        font-size: 3rem;
    }
    
    .comics-swiper {
        padding: 0 10px 60px 10px;
    }
    
    .comic-item {
        padding: 15px;
    }
    
    .comic-item img {
        height: 300px;
    }
    
    .comics-swiper .swiper-button-next,
    .comics-swiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .comics-swiper .swiper-button-next:after,
    .comics-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .children-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .children-text h2 {
        font-size: 2rem;
    }
    
    .comics-showcase h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .video-placeholder {
        height: 200px;
    }
    
    .play-button {
        font-size: 2.5rem;
    }
    
    .comics-swiper {
        padding: 0 5px 50px 5px;
    }
    
    .comic-item {
        padding: 10px;
    }
    
    .comic-item img {
        height: 250px;
    }
    
    .comics-swiper .swiper-button-next,
    .comics-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .comics-swiper .swiper-button-next:after,
    .comics-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
    
    .comics-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .children-text h2 {
        font-size: 1.8rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}