/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

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

/* Header com Desconto */
.header-discount {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    font-size: 16px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #173117, #000000);
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.hero-logo {
    max-width: 120px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 400;
    margin-bottom: 30px;
}

.video-container {
    max-width: 600px;
    margin: 0 auto 30px;
    border: 3px solid #ff0000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    position: relative;
}

.video-container iframe {
    border-radius: 12px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.price-box {
    margin-bottom: 20px;
    font-size: 2.2em;
    font-weight: 500;
}

.price-box p {
    display: inline-block;
}

.old-price {
    text-decoration: line-through;
    color: #ff4d4d;
    margin-right: 10px;
    font-weight: 400;
}

.new-price {
    color: #00ff00; /* Verde para destaque */
    font-weight: 700;
}

/* Sections */
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #000000, #29751c);
    margin: 20px auto 0; 
    border-radius: 2px;
}

/* Problems Section */
.problems {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.problems h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.problems .highlight-red {
    color: #ff0000;
}

.mockup-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
    border-radius: 10px;
}

.problems-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.problems-list li {
    background: #111111;
    border: 1px solid #ff0000;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.problem-icon {
    color: #ff0000;
    font-size: 1.5rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.benefits .highlight-green {
    color: #00ff00;
}

.benefits-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.benefits-list li {
    background: #111111;
    border: 1px solid #00ff00;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.benefit-icon {
    color: #00ff00;
    font-size: 1.5rem;
}

.green-button {
    background: #00ff00;
    color: #000000;
}

.green-button:hover {
    background: #00cc00;
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #000000;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.testimonials .highlight-green {
    color: #00ff00;
}

.testimonials-slider {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

.swiper-button-next, .swiper-button-prev {
    color: #00ff00;
}

.swiper-pagination-bullet-active {
    background: #00ff00;
}

/* Urgency Section */
.urgency {
    padding: 60px 0;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
}

.urgency .section-title {
    color: white;
    margin-bottom: 0;
}

.urgency .section-title::after {
    background: white;
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: #000000;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.plan-card {
    background: #111;
    border: 2px solid #333;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.plan-card.featured {
    border-color: #00ff00;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

.plan-header {
    position: relative;
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.popular-badge {
    background: #00ff00;
    color: #000;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    fill: #00ff00;
}

.plan-price .old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #999;
    display: block;
}

.plan-price .new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ff00;
    line-height: 1;
}

.plan-card .cta-button {
    margin-top: auto; /* Alinha o botão na parte inferior */
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.plan-card {
    background: #000000;
    border-radius: 20px;
    border: 3px solid #00ff00;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.6);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 0, 0.4);
}

.plan-card.featured {
    border: 3px solid #ffff00;
    box-shadow: 0 0 25px rgba(255, 255, 0, 0.6);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 255, 0, 0.4);
}

.plan-header {
    background: #000000;
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.plan-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popular-badge {
    background: #ffff00;
    color: #000000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-features {
    padding: 10px;
    background: #000000;
    list-style: none;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333333;
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-icon {
    color: #00ff00;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
}

.plan-price {
    padding: 10px;
    text-align: center;
    background: #000000;
    margin-top: auto;
}

.plan-price .old-price {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
    opacity: 0.7;
}

.plan-price .new-price {
    font-size: 4rem;
    font-weight: 900;
    color: #00ff00;
    display: block;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.cta-button {
    background-color: #00ff00;
    color: #000;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.5em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    margin: 30px;
}

.cta-button:hover {
    background-color: #00cc00;
}

.cta-button .icon-hand {
    font-size: 1.2em;
}

.plan-card.featured .cta-button {
    background: #00ff00;
}

.plan-card.featured .cta-button:hover {
    background: #00cc00;
    box-shadow: 0 10px 20px rgba(0, 255, 0, 0.3);
}

/* Delivery Section */
.delivery {
    padding: 80px 0;
    background: #000000;
}

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

.delivery-item {
    background: #111111;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    transition: transform 0.3s ease;
}

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

.delivery-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: #00ff00;
}

.delivery-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.delivery-item p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.delivery-item p:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #000000;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #333333;
    border-radius: 10px;
    overflow: hidden;
    background: #111111;
}

.faq-question {
    width: 100%;
    background: #111111;
    border: none;
    padding: 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #00ff00;
}

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

.faq-answer {
    display: none;
    background: #111111;
    padding: 25px;
}

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

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333333;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .problems, .benefits, .testimonials, .delivery, .faq {
        padding: 60px 0;
    }
    
    .problems-grid, .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .problem-item, .benefit-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .delivery-item {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header-discount {
        font-size: 14px;
    }

    .hero .price-box {
        font-size: 1.8em;
    }

    .problems h2,
    .benefits h2,
    .testimonials h2 {
        font-size: 2rem;
    }

    .plan-price .new-price {
        font-size: 3rem;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 1.2rem;
    }
}

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

.problem-item, .benefit-item, .testimonial-item, .delivery-item, .plan-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}