/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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;
}


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

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

.star-rating {
    display: inline-flex;
    align-items: center;
    background: #FF69B4;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.star-rating i {
    margin-right: 8px;
    color: #FFD700;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.video-container {
    margin: 3rem 0;
}

.video-intro {
    text-align: center;
    color: #666;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #32CD32, #006400); /* verde limão + verde escuro */
    color: white;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.4); /* sombra baseada no verde claro */
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
}

.cta-button.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #dee2e6;
}

.cta-button.secondary:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.3rem;
}



/* CTA Buttons */
.buy-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-button.primary {
    background: linear-gradient(135deg, #32CD32, #006400);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.buy-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.6);
}

.buy-button.secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #dee2e6;
}

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

.buy-button.large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF69B4, #E91E63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Products Section */
.products {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F8FF 0%, #FFE5F1 100%);
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.product-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.product-image i {
    font-size: 1.8rem;
    color: white;
}

.product-card h3 {
    font-size: 1.3rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* Bonus Section */
.bonus-section {
    margin-top: 4rem;
    text-align: center;
}

.bonus-section h3 {
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.bonus-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #FFD700;
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bonus-card h4 {
    font-size: 1.1rem;
    color: #2C3E50;
    margin: 1rem 0 0.5rem;
    font-weight: 600;
}

.bonus-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border-color: #FF69B4;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF69B4, #E91E63);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.plan-description {
    color: #666;
    margin-bottom: 2rem;
}

.price {
    margin-bottom: 2rem;
}

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

.current-price {
    font-size: 3rem;
    color: #FF69B4;
    font-weight: 700;
}

/* Specific pricing for Jornada Completa card */
.pricing-card.popular .price,
.pricing-card.complete .price {
    background: #4CAF50;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem -1rem;
}

.pricing-card.popular .old-price,
.pricing-card.complete .old-price {
    color: white;
    opacity: 0.9;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-card.popular .current-price,
.pricing-card.complete .current-price {
    color: white;
    font-size: 3rem;
    font-weight: 700;
}

/* Star icons for bonus items */
.pricing-card.popular .features li i.fa-star,
.pricing-card.complete .features li i.fa-star {
    color: #FFD700;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.features li i {
    color: #4CAF50;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.offer-notice {
    font-size: 0.9rem;
    color: red;
    font-weight: 500;
    margin-top: 1rem;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F8FF 0%, #FFE5F1 100%);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.testimonial-avatar {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-avatar i {
    font-size: 3rem;
    color: #FF69B4;
}

.testimonial-content {
    text-align: center;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #FFD700;
    margin: 0 2px;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-content h4 {
    color: #2C3E50;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-content span {
    color: #999;
    font-size: 0.9rem;
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: white;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 2.5rem;
    color: white;
}

.guarantee-text h2 {
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.security-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.badge i {
    color: #4CAF50;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.badge span {
    color: #2C3E50;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFE5F1 0%, #F0F8FF 100%);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    font-weight: 600;
    color: #2C3E50;
    font-size: 1.1rem;
}

.faq-question i {
    color: #FF69B4;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

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

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

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

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-container {
    max-width: 500px;
    margin: 0 auto;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    color: white;
}

.cta-benefit i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

.cta-benefit span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #2C3E50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #FF69B4;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-contact h4,
.footer-links h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-contact p {
    color: #bdc3c7;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: #FF69B4;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF69B4;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .benefits h2,
    .products h2,
    .pricing h2,
    .testimonials h2,
    .faq h2 {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 20px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .benefits-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .video-intro {
        font-size: 1rem;
    }
    
    .video-container {
        margin: 2rem 0;
    }
    
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

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

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

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

/* Focus states for accessibility */
.cta-button:focus,
.faq-question:focus {
    outline: 2px solid #FF69B4;
    outline-offset: 2px;
}



.hero-banner {
    background-color: #FF9800;
    width: 100%;
    text-align: center;
}

.hero-banner h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    padding: 20px 15px;  /* só espaçamento dentro da faixa */
    margin: 0; /* evita espaços extras */
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 1.4rem;
        padding: 15px 10px;
    }
}

