/* Estilos para a página de eBooks */

.ebooks-hero {
    background-color: #1a1a1a;
    padding: 60px 0;
    text-align: center;
    width: 100%;
}

.ebooks-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

.ebooks-hero .subtitle {
    font-size: 1.25rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.ebooks-section {
    padding: 80px 0;
    background-color: #0f0f0f;
    width: 100%;
}

.ebook-feature {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.ebook-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.ebook-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ebook-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ff5500;
    text-transform: uppercase;
}

.ebook-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

.ebook-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.benefit-item i {
    color: #ff5500;
    font-size: 1.25rem;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1rem;
    color: #ffffff;
}

.ebook-cta {
    margin-top: 20px;
}

.price-tag {
    margin-bottom: 20px;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.old-price span {
    font-weight: 600;
}

.current-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ff5500;
    margin-bottom: 5px;
}

.payment-info {
    font-size: 0.875rem;
    color: #ccc;
}

.btn-cta {
    display: inline-block;
    background-color: #ff5500;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    text-align: center;
}

.btn-cta:hover {
    background-color: #e64d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 85, 0, 0.3);
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods p {
    font-size: 0.875rem;
    color: #ccc;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons i {
    font-size: 1.5rem;
    color: #ccc;
}

.ebook-details {
    margin-bottom: 60px;
    width: 100%;
}

.ebook-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

.detail-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.detail-icon {
    width: 70px;
    height: 70px;
    background-color: #ff5500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.detail-icon i {
    font-size: 1.875rem;
    color: #ffffff;
}

.detail-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.detail-item p {
    font-size: 0.875rem;
    color: #ccc;
}

.testimonials {
    margin-bottom: 60px;
    width: 100%;
}

.testimonials h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.testimonial {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-content p {
    font-size: 1rem;
    color: #ccc;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3.75rem;
    color: #ff5500;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -15px;
}

.testimonial-author h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: #999;
}

.final-cta {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.final-cta h3 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.final-cta p {
    font-size: 1.125rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 30px;
}

.faq-section {
    padding: 80px 0;
    background-color: #0a0a0a;
    width: 100%;
}

.faq-section h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    width: 100%;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.faq-question i {
    font-size: 1.125rem;
    color: #ff5500;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

/* Responsividade */
@media (min-width: 768px) {
    .ebook-feature {
        flex-direction: row;
    }
    
    .ebook-image {
        max-width: 45%;
    }
    
    .ebook-content {
        max-width: 55%;
        padding-left: 40px;
    }
    
    .footer-social .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .ebooks-hero h1 {
        font-size: 2.25rem;
    }
    
    .ebooks-hero .subtitle {
        font-size: 1.125rem;
    }
    
    .ebook-content h2 {
        font-size: 1.75rem;
    }
    
    .ebook-content h3 {
        font-size: 1.125rem;
    }
    
    .current-price {
        font-size: 1.75rem;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta h3 {
        font-size: 1.5rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
}

/* eBooks Page Styles - Versão Aprimorada */

/* Hero Section */
.ebooks-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.ebooks-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Código Monstro Section */
.codigo-monstro-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.produto-principal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.produto-imagem img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(255, 85, 0, 0.3);
}

.produto-info h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ff5500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.produto-info h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.4;
    font-weight: 600;
}

.beneficios-lista {
    list-style: none;
    padding: 0;
}

.beneficios-lista li {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.beneficios-lista i {
    color: #ff5500;
    font-size: 1.2rem;
}

/* Preço Section */
.preco-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 85, 0, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.preco-antigo {
    color: #999;
    font-size: 1.1rem;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.preco-atual {
    font-size: 3rem;
    font-weight: 900;
    color: #ff5500;
    margin-bottom: 15px;
}

.pagamento-info {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-cta {
    background: linear-gradient(45deg, #ff5500, #ff7700);
    color: #fff;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background: linear-gradient(45deg, #ff7700, #ff9900);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 85, 0, 0.4);
}

.formas-pagamento {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.formas-pagamento p {
    color: #ccc;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.payment-icons i {
    font-size: 2rem;
    color: #ff5500;
}

/* Conteúdo do eBook */
.conteudo-ebook {
    background: #111;
    padding: 80px 0;
}

.conteudo-ebook h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 800;
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.caracteristica-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 85, 0, 0.2);
    transition: all 0.3s ease;
}

.caracteristica-card:hover {
    background: rgba(255, 85, 0, 0.1);
    transform: translateY(-5px);
}

.caracteristica-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff5500, #ff7700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.caracteristica-icon i {
    font-size: 2rem;
    color: #fff;
}

.caracteristica-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.caracteristica-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Depoimentos */
.depoimentos-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.depoimentos-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 60px;
    font-weight: 800;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 85, 0, 0.2);
    position: relative;
}

.aspas {
    font-size: 4rem;
    color: #ff5500;
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.depoimento-texto {
    color: #ccc;
    font-style: italic;
    line-height: 1.6;
    margin: 40px 0 30px;
    font-size: 1rem;
}

.depoimento-autor h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.depoimento-autor span {
    color: #ff5500;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #ff5500, #ff7700);
    padding: 80px 0;
    text-align: center;
}

.cta-final h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-final p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-final {
    background: #fff;
    color: #ff5500;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta-final:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ebooks-hero h1 {
        font-size: 2.5rem;
    }
    
    .produto-principal {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .produto-info h2 {
        font-size: 2.2rem;
    }
    
    .caracteristicas-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .preco-section {
        margin: 0 20px;
    }
    
    .cta-final h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .ebooks-hero {
        padding: 80px 0 60px;
    }
    
    .ebooks-hero h1 {
        font-size: 2rem;
    }
    
    .produto-info h2 {
        font-size: 1.8rem;
    }
    
    .produto-info h3 {
        font-size: 1.1rem;
    }
    
    .preco-atual {
        font-size: 2.5rem;
    }
    
    .btn-cta,
    .btn-cta-final {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

