:root {
    --primary: #1E90FF;
    --secondary: #1E90FF;
    --accent: #1E90FF;
    --light: #ffffff;
    --dark: #000000;
    --success: #1E90FF;
    --light-bg: #ffffff;
    --text-color: #000000;
    --border-radius: 18px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

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

/* Header Styles */
header {
    background-color: var(--light);
    color: var(--dark);
    padding: 8px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    color: var(--accent);
    font-size: 26px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.trust-indicators i {
    color: var(--success);
    margin-right: 5px;
}

/* Hero Section */
.hero {
    padding: 70px 0 40px;
    background: linear-gradient(135deg, rgba(93, 138, 107, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    z-index: -1;
}

.urgency-banner {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 10px 10px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 300;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero h1 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.hero .subtitle {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero p {
    font-size: 16px;
    color: var(--dark);
    margin: 0 auto 30px;
    max-width: 600px;
    opacity: 0.9;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    margin: 30px auto;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.mind-techniques {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.mind-techniques h2 {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
}

.mind-techniques p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

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

.technique-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.technique-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.technique-item h3 {
    font-size: 25px;
    margin-bottom: 10px;
    color: var(--dark);
}

.social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.social-proof-item i {
    color: var(--accent);
}

.rating-stars {
    display: flex;
    gap: 2px;
    margin: 15px 0;
    justify-content: center;
}

.rating-stars i {
    color: #ffd700;
    font-size: 20px;
}

.rating-text {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.cta-button {
    display: inline-block;
    background: rgb(1, 165, 1);
    color: rgb(255, 255, 255);
    padding: 20px 45px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231, 158, 79, 0.4);
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(45deg, var(--secondary), #8b4f7a);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(123, 63, 101, 0.5);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: black;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1px;
    font-weight: 600;
    margin-top: 15px;
}

/* Scarcity Section */
.scarcity {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    text-align: center;
}

.scarcity h3 {
    color: #856404;
    margin-bottom: 10px;
    font-size: 18px;
}

.scarcity p {
    color: #856404;
    font-size: 16px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.countdown-item {
    background: var(--primary);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.countdown-number {
    font-size: 24px;
    font-weight: bold;
    display: block;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
}

/* Benefits Section */
.benefits {
    padding: 70px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.benefit-card {
    background-color: white;
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border-top: 5px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 138, 107, 0.02) 0%, rgba(231, 158, 79, 0.02) 100%);
    z-index: -1;
}

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

.benefit-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--dark);
    font-weight: 600;
}

.benefit-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* Statistics Section */
.statistics {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* How It Works Section */
.how-it-works {
    padding: 70px 0;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

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

.step {
    text-align: center;
    background: white;
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(93, 138, 107, 0.3);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.step p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 70px 0;
    background-color: white;
}

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

.testimonial-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    position: relative;
    transition: transform 0.3s ease;
}

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

.testimonial-card:before {
    content: """;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: -20px;
    left: 15px;
    font-family: Arial;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 16px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--accent);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
}

.author-info p {
    color: #666;
    font-size: 14px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
}

/* FAQ Section */
.faq {
    padding: 70px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.faq-question i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px;
    color: #555;
    line-height: 1.7;
    display: none;
}

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

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

/* Checkout Section */
.checkout {
    padding: 30px 0 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.checkout-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.checkout-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.checkout-title {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 700;
}

.checkout-price {
    font-size: 50px;
    font-weight: 800;
    color: var(--secondary);
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-original-price {
    text-decoration: line-through;
    color: #000000;
    font-size: 20px;
    margin-right: 10px;
}

.checkout-savings {
    background: rgb(2, 190, 2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0;
    display: inline-block;
}

.checkout-description {
    color: #555;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.checkout-features {
    text-align: left;
    margin: 30px 0;
}

.checkout-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.checkout-features li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 18px;
    background: #f0f8f0;
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-button {
    display: block;
    background:#46be00;
    color: white;
    text-decoration: none;
    padding: 22px 40px;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 700;
    margin: 30px auto;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(231, 158, 79, 0.4);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.checkout-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.checkout-button:hover::before {
    left: 100%;
}

.checkout-button:hover {
    background: linear-gradient(45deg, var(--secondary), #8b4f7a);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(123, 63, 101, 0.5);
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
    gap: 10px;
    flex-wrap: wrap;
}

.security-badge i {
    color: var(--primary);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.payment-method {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #eee;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: var(--border-radius);
    color: var(--success);
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 25px;
    text-align: center;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-section p,
.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    line-height: 1.8;
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--accent);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 25px;
    text-align: center;
    color: #bdc3c7;
    font-size: 14px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 47px;
    }

    .section-title {
        font-size: 28px;
    }

    .benefits-grid,
    .steps,
    .testimonials-grid,
    .pricing-comparison {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    .trust-indicators {
        justify-content: center;
    }

    .social-proof {
        flex-direction: column;
        gap: 10px;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkout-box {
        padding: 25px;
    }

    .checkout-button {
        padding: 18px 25px;
        font-size: 18px;
    }

    .checkout-price {
        flex-direction: column;
        gap: 10px;
    }

    .techniques-grid {
        grid-template-columns: 1fr;
    }
}

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

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

/* Estilos customizados para logo e ícones */
.logo img {
    width: 48px !important;
    height: 48px !important;
    margin-right: 15px !important;
}

/* Aumentando o tamanho dos emojis nas seções principais */
.technique-item {
    font-size: 3rem !important;
}

.benefit-card {
    font-size: 3rem !important;
}

.social-proof-item {
    font-size: 1.5rem !important;
}

.guarantee-badge {
    font-size: 1.5rem !important;
    width: 500px !important;
    height: 1px !important;
    justify-content: center; /* centraliza horizontal */
    align-items: center;     /* centraliza vertical */
    text-align: center;      /* garante que o texto fique centralizado */
}


