:root {
    --primary-color: #1A5D1A;
    --secondary-color: #1E4D1E;
    --accent-color: #4CAF50;
    --text-color: #2C3E50;
    --dark-bg: #1E1E24;
    --darker-bg: #141418;
    --card-bg: #2A2A32;
    --light-bg: #ffffff;
    --white: #ffffff;
    --gray-100: rgba(255, 255, 255, 0.05);
    --gray-200: rgba(255, 255, 255, 0.08);
    --gray-300: rgba(255, 255, 255, 0.12);
    --success-color: #48BB78;
    --error-color: #F56565;
    --gradient-start: #1A1A20;
    --gradient-end: #2A2A32;
    --light-text: #2C3E50;
    --light-text-secondary: #4A5568;
    --light-text-strong: #1A202C;
    --dark-text: #F7FAFC;
    --dark-text-secondary: #E2E8F0;
    --light-card: #ffffff;
    --light-border: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--dark-bg);
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero h1 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.subtitle {
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/><path d="M0 0h4v4H0V0zm8 0h4v4H8V0zm8 0h4v4h-4V0zM4 4h4v4H4V4zm8 0h4v4h-4V4zM0 8h4v4H0V8zm8 0h4v4H8V8zm8 0h4v4h-4V8zM4 12h4v4H4v-4zm8 0h4v4h-4v-4zM0 16h4v4H0v-4zm8 0h4v4H8v-4zm8 0h4v4h-4v-4z" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    opacity: 0.5;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Logo Styling */
.logo {
    max-width: 264px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.hero h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 800px;
}

.hero .subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.25rem;
    max-width: 700px;
    opacity: 0.95;
}

/* Video Container */
.video-container {
    width: 100%;
    max-width: 800px;
    margin: 1rem auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: var(--darker-bg);
    transform: none !important; /* Prevent animation transforms from affecting aspect ratio */
}

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

/* Remove other video-container animations */
.video-container {
    animation: none !important;
}

@media (max-width: 768px) {
    .video-container {
        margin: 1rem auto;
        max-width: 100%;
        padding-bottom: 56.25%;
    }
}

/* CTA Button */
.cta-button {
    padding: 16px 32px;
    margin: 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    background: #FF6B00;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    line-height: 1;
}

.cta-button .button-arrow {
    margin-left: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    background: #FF7B1A;
}

.cta-button:active {
    transform: translateY(0);
}

/* Benefits Section - Light */
.benefits {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
    color: var(--light-text-strong);
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1560493676-04071c5f467b?auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: 0.1;
    filter: grayscale(100%);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light-text-strong);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    background: var(--light-card);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--light-border);
    backdrop-filter: blur(10px);
    color: var(--light-text-strong);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: var(--gray-300);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* For Who Section - Dark */
.for-who {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    color: var(--dark-text);
}

.for-who::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--gray-100), transparent);
    opacity: 0.1;
}

.for-who-content {
    display: flex;
    gap: 2rem;
}

.for-who-is, .for-who-not {
    flex: 1;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-200);
    color: var(--dark-text);
}

.for-who h2 {
    margin-bottom: 30px;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.for-who ul {
    list-style: none;
}

.for-who li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: transform 0.2s ease;
    border: 1px solid var(--gray-200);
    color: var(--dark-text-secondary);
}

.for-who li:hover {
    transform: translateX(5px);
}

.for-who-is li span {
    color: var(--success-color);
    font-size: 1.2rem;
}

.for-who-not li span {
    color: var(--error-color);
    font-size: 1.2rem;
}

/* Results Section with Testimonials */
.results {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    z-index: 1;
}

.results .container {
    position: relative;
    z-index: 2;
}

.results h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

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

.testimonial-image-container {
    width: 100%;
    background: var(--card-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.testimonial-content {
    padding: 20px;
    background: var(--card-bg);
    border-top: 1px solid var(--gray-200);
}

.testimonial-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--dark-text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Hover Effects */
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: var(--gray-300);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .testimonial-image-container {
        padding: 0;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-content h3 {
        font-size: 1.2rem;
    }

    .testimonial-content p {
        font-size: 0.9rem;
    }
}

/* Reset global styles for methodology section */
body section.methodology {
    all: initial;
    display: block;
    font-family: 'Poppins', sans-serif;
}

/* Force white background and override any inherited styles */
body section.methodology {
    background-color: #ffffff !important;
    position: relative;
    padding: 100px 0;
    color: #1A202C;
    z-index: 1;
}

body section.methodology::before,
body section.methodology::after {
    display: none !important;
}

body section.methodology .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    background-color: #ffffff !important;
}

body section.methodology h2 {
    all: initial;
    display: block;
    font-family: 'Poppins', sans-serif;
    color: #1A202C !important;
    text-align: center;
    margin: 40px 0;
    font-size: 2.2rem;
    font-weight: 700;
}

body section.methodology .methodology-content {
    background-color: #ffffff !important;
    text-align: center;
}

body section.methodology .methodology-content > p {
    all: initial;
    display: block;
    font-family: 'Poppins', sans-serif;
    color: #4A5568 !important;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.25rem;
    line-height: 1.6;
}

body section.methodology .methodology-image {
    width: 100%;
    max-width: 768px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

body section.methodology .methodology-header {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body section.methodology .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
    background-color: #ffffff !important;
}

body section.methodology .step-card {
    all: initial;
    display: block;
    font-family: 'Poppins', sans-serif;
    background: #ffffff !important;
    padding: 40px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body section.methodology .step-card h3 {
    all: initial;
    display: block;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color) !important;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

body section.methodology .step-card p {
    all: initial;
    display: block;
    font-family: 'Poppins', sans-serif;
    color: #4A5568 !important;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Override any dark theme or global styles */
body section.methodology *:not(a):not(button):not(input) {
    background-color: transparent;
}

@media (max-width: 768px) {
    body section.methodology .container {
        padding: 0 24px;
    }
    
    body section.methodology h2 {
        font-size: 1.8rem;
    }
    
    body section.methodology .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Pricing Section - Light */
.pricing {
    background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 4rem 0;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    padding: 0 200px;
}

.price-box {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.price-header {
    margin-bottom: 2rem;
    text-align: center;
}

.price-header h2 {
    font-size: 1.8rem;
    color: var(--light-text-strong);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.price-tag {
    margin: 1.5rem 0;
    text-align: center;
}

.original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.current-price {
    margin: 1rem 0;
    text-align: center;
}

.price-value {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 1.1rem;
    color: #666;
    margin-left: 0.5rem;
}

.installments {
    margin-top: 1.5rem;
    text-align: center;
}

.installments-label {
    display: block;
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.installments-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.installments-number {
    font-size: 2.4rem;
    font-weight: 600;
}

.installments-price {
    font-size: 4rem;
    font-weight: 800;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    padding: 0;
    columns: 2;
    column-gap: 10px;
    max-width: 100%;
}

.features-list li {
    margin: 6px 0;
    padding-left: 24px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--light-text-strong);
    font-size: 0.95rem;
    break-inside: avoid;
    line-height: 1.3;
}

.features-list li i {
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.payment-icon {
    height: 24px;
    width: auto;
    opacity: 0.8;
}

.payment-icon:hover {
    opacity: 1;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #666;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.guarantee-badge i {
    color: var(--success-color);
}

.cta-button {
    padding: 16px 32px;
    margin: 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    background: #FF6B00;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    line-height: 1;
}

.cta-button .button-arrow {
    margin-left: 8px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
    background: #FF7B1A;
}

@media (max-width: 1200px) {
    .pricing .container {
        padding: 0 100px;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 30px 20px;
    }

    .pricing .container {
        padding: 0 20px;
    }

    .price-box {
        padding: 24px 20px;
    }

    .price-header h2 {
        font-size: 1.4rem;
    }

    .price-value {
        font-size: 2.8rem;
    }

    .features-list {
        columns: 1;
    }

    .features-list li {
        font-size: 0.9rem;
    }
}

/* FAQ Section - Dark */
.faq {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    color: var(--dark-text);
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--gray-100), transparent);
    opacity: 0.1;
}

.faq h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-grid {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    color: var(--dark-text);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border-color: var(--gray-300);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

/* About Section - Light */
.about {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
    color: var(--light-text);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--gray-200) 0%, transparent 70%);
    opacity: 0.1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    max-width: 300px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light-text);
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--light-text-secondary);
    line-height: 1.8;
}

/* Guarantee Section - New Design */
.guarantee {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 93, 26, 0.05), rgba(30, 77, 30, 0.05));
    z-index: 1;
}

.guarantee-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.guarantee-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.guarantee-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    animation: pulse 2s ease-in-out infinite;
}

.guarantee-text {
    padding: 20px 0;
}

.guarantee-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.guarantee-text p {
    font-size: 1.1rem;
    color: var(--light-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
}

.guarantee-badge i {
    font-size: 1.2rem;
}

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

@media (max-width: 992px) {
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .guarantee-image {
        order: -1;
    }

    .guarantee-image img {
        max-width: 250px;
    }

    .guarantee-text {
        text-align: center;
    }

    .guarantee-badge {
        margin: 20px auto 0;
    }
}

@media (max-width: 576px) {
    .guarantee {
        padding: 60px 0;
    }

    .guarantee-card {
        padding: 30px;
    }

    .guarantee-text h2 {
        font-size: 1.8rem;
    }

    .guarantee-text p {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    background: var(--darker-bg);
    position: relative;
    border-top: 1px solid var(--gray-200);
}

footer .cta-button {
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-container {
        margin: 1rem auto;
        width: 100%;
    }
    
    .for-who-content {
        flex-direction: column;
    }
    
    .benefits-grid,
    .results-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .price-box,
    .bonus-box {
        padding: 30px;
    }

    .current-price {
        font-size: 2.8rem;
    }

    .bonus-box h3 {
        font-size: 2rem;
    }

    .logo {
        max-width: 216px;
        margin-bottom: 30px;
    }

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    p {
        line-height: 1.7;
    }

    .cta-button {
        width: 100%;
        padding: 15px 30px;
        font-size: 1rem;
    }

    .bonus-tag {
        font-size: 1.8rem;
    }
}

/* Animations */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Button Arrow Animation */
.button-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Card Hover Effects */
.benefit-card,
.result-card,
.step-card,
.faq-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover,
.result-card:hover,
.step-card:hover,
.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border-color: var(--gray-300);
}

/* Scroll Animation for Header */
.hero.scrolled {
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(to right, #f6f7f8 8%, #edeef1 18%, #f6f7f8 33%);
    background-size: 1000px 100%;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide In Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations to specific elements */
.hero h1,
.hero .subtitle,
.hero .cta-button {
    animation: fadeIn 0.8s ease-out forwards;
}

.video-container {
    animation: scaleIn 0.8s ease-out forwards;
}

.benefit-card,
.result-card,
.step-card,
.faq-item {
    animation: slideIn 0.6s ease-out forwards;
}

/* Stagger animations for grid items */
.benefits-grid > *:nth-child(1) { animation-delay: 0.1s; }
.benefits-grid > *:nth-child(2) { animation-delay: 0.2s; }
.benefits-grid > *:nth-child(3) { animation-delay: 0.3s; }

.results-grid > *:nth-child(1) { animation-delay: 0.1s; }
.results-grid > *:nth-child(2) { animation-delay: 0.2s; }
.results-grid > *:nth-child(3) { animation-delay: 0.3s; }
.results-grid > *:nth-child(4) { animation-delay: 0.4s; }

.steps-grid > *:nth-child(1) { animation-delay: 0.1s; }
.steps-grid > *:nth-child(2) { animation-delay: 0.2s; }
.steps-grid > *:nth-child(3) { animation-delay: 0.3s; }
.steps-grid > *:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced Hover Effects */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s, opacity 0.3s;
}

.cta-button:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Enhanced Card Styles */
.benefit-card,
.result-card,
.step-card,
.faq-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.benefit-card::before,
.result-card::before,
.step-card::before,
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
    opacity: 0.5;
}

.benefit-card:hover::before,
.result-card:hover::before,
.step-card:hover::before,
.faq-item:hover::before {
    transform: translateX(100%);
}

/* Text Colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
}

p {
    color: rgba(255, 255, 255, 0.9);
}

/* Additional Glassmorphism Effects */
.card-glass {
    background: rgba(42, 42, 50, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--gray-200);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Section Spacing */
.benefits,
.for-who,
.results,
.methodology,
.pricing,
.faq,
.about {
    overflow: hidden;
}

.benefits-grid,
.results-grid,
.steps-grid,
.faq-grid {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.for-who-content {
    width: 100%;
}

.bonus-box,
.price-box {
    width: 100%;
    max-width: 100%;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .benefits-grid,
    .results-grid,
    .steps-grid {
        gap: 24px;
    }

    .for-who-content {
        gap: 24px;
    }
}

/* Business Applicability Section */
.business-applicability {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.business-applicability::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: 0.15;
    filter: grayscale(100%) brightness(1.2);
    z-index: 1;
}

.business-applicability .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    color: var(--light-text-strong);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--light-text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.business-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.business-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--light-border);
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.business-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.business-card-icon i {
    color: white;
    font-size: 28px;
}

.business-card h3 {
    color: #0F4C0F;
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.business-card p {
    color: #1A202C;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #2D3748;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
}

.feature span {
    color: #1A202C;
    display: block;
    font-weight: 600;
}

.feature i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .business-applicability {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .business-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .business-card {
        padding: 30px;
    }

    .business-card h3 {
        font-size: 1.3rem;
    }

    .business-card p {
        font-size: 1rem;
    }

    .feature {
        font-size: 1rem;
    }
    
    .feature span {
        font-size: 1rem;
    }
}

/* AI Bonus Section */
.ai-bonus {
    background: #1A1A1A;
    position: relative;
    overflow: hidden;
    margin: 0;
    min-height: 500px;
}

.bonus-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 500px;
}

.bonus-content {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.bonus-tag {
    display: inline-block;
    background: #FF6B00;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    width: fit-content;
}

.bonus-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.bonus-subtitle {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.bonus-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.bonus-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.original-bonus-price {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    font-size: 1.2rem;
}

.final-bonus-price {
    background: #FF6B00;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.bonus-image {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.bonus-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1200px) {
    .bonus-content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .bonus-container {
        flex-direction: column;
    }
    
    .bonus-content {
        padding: 40px 20px;
    }
    
    .bonus-image {
        margin-top: 40px;
    }
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    /* General Mobile Adjustments */
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .benefits h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .installments-price {
        font-size: 1.2rem;
    }

    /* Results Section */
    .results {
        padding: 60px 0;
    }

    .testimonials-grid {
        gap: 0;
    }

    .testimonial-card {
        padding: 0;
        border-radius: 0;
        overflow: hidden;
    }

    .testimonial-image-container {
        padding: 0;
    }

    .testimonial-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 0;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-content h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .testimonial-content p {
        font-size: 0.9rem;
        margin: 0;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0;
    }

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

    .exclusive-label {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .video-container {
        margin: 20px 0;
    }

    /* Benefits Section */
    .benefits {
        padding: 60px 0;
    }

    .benefits-grid {
        gap: 20px;
    }

    .benefit-card {
        padding: 30px;
    }

    /* For Who Section */
    .for-who {
        padding: 60px 0;
    }

    .for-who-content {
        flex-direction: column;
        gap: 30px;
    }

    .for-who-is, .for-who-not {
        padding: 30px;
    }

    /* Business Applicability */
    .business-applicability {
        padding: 60px 0;
    }

    .business-cards {
        gap: 20px;
    }

    .business-card {
        padding: 30px;
    }

    /* Methodology Section */
    .methodology {
        padding: 60px 0;
    }

    .steps-grid {
        gap: 20px;
    }

    .step-card {
        padding: 30px;
    }

    /* AI Bonus Section */
    .ai-bonus {
        padding: 60px 0;
    }

    .bonus-container {
        flex-direction: column;
    }

    .bonus-content {
        padding: 30px;
    }

    .bonus-image {
        margin-top: 30px;
    }

    /* Pricing Section */
    .pricing {
        padding: 60px 0;
    }

    .price-box {
        padding: 30px;
    }

    .features-list {
        columns: 1;
    }

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

    .payment-icon {
        height: 20px;
    }

    /* FAQ Section */
    .faq {
        padding: 60px 0;
    }

    .faq-grid {
        gap: 20px;
    }

    .faq-item {
        padding: 30px;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        max-width: 250px;
    }

    /* Guarantee Section */
    .guarantee {
        padding: 60px 0;
    }

    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .guarantee-card {
        padding: 30px;
    }

    .guarantee-image {
        order: -1;
    }

    .guarantee-image img {
        max-width: 200px;
    }

    /* CTA Buttons */
    .cta-button {
        width: 100%;
        padding: 15px 25px;
        font-size: 1rem;
    }

    /* Footer */
    footer {
        padding: 40px 0;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .benefit-card,
    .business-card,
    .testimonial-card,
    .step-card,
    .faq-item {
        padding: 20px;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-icon {
        height: 18px;
    }
} 