@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');
        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.03) 50px, rgba(255,255,255,0.03) 51px);
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero h1 .highlight {
    color: #ffd54f;
    display: block;
}

.hero h1 .red-highlight {
    color: #66bb6a;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
    color: #1a237e;
    padding: 22px 60px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255, 213, 79, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 213, 79, 0.6);
}

.cta-button .security-badge {
    display: block;
    font-size: 12px;
    margin-top: 8px;
    opacity: 0.9;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-number {
    font-size: 32px;
    font-weight: 900;
    color: #ffd54f;
}

.trust-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Disclaimer Section - NOVO */
.disclaimer-section {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    text-align: center;
}

.disclaimer-section h3 {
    color: #ffd54f;
    margin-bottom: 15px;
    font-size: 22px;
}

.disclaimer-section p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Pain Points Section */
.pain-section {
    padding: 100px 20px;
    background: #0f1322;
    position: relative;
}

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

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

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

.pain-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: #66bb6a;
    box-shadow: 0 10px 40px rgba(102, 187, 106, 0.2);
}

.pain-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pain-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.pain-text {
    opacity: 0.8;
    line-height: 1.6;
}

/* Statistics */
.stats-section {
    background: linear-gradient(135deg, #3949ab 0%, #283593 100%);
    padding: 80px 20px;
    text-align: center;
}

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

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #ffd54f;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
}

/* Solution Section */
.solution-section {
    padding: 100px 20px;
    background: #0a0e27;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 60px;
}

.solution-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 30px;
    color: #ffd54f;
}

.solution-text {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Modules Section */
.modules-section {
    padding: 100px 20px;
    background: #0f1322;
}

.module-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.module-card:hover {
    border-color: #ffd54f;
    transform: translateX(10px);
}

.module-number {
    display: inline-block;
    background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
    color: #1a237e;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.module-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.module-description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.module-topics {
    list-style: none;
    padding: 0;
}

.module-topics li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.module-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #66bb6a;
    font-weight: 700;
}

/* Guarantee Section */
.guarantee-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    text-align: center;
}

.guarantee-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.guarantee-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
}

.guarantee-text {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Price Section */
.price-section {
    padding: 100px 20px;
    background: #0a0e27;
}

.price-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.price-badge {
    background: #ef5350;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 700;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 32px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 72px;
    font-weight: 900;
    color: #ffd54f;
    margin-bottom: 20px;
}

.price-installment {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.bonus-list {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
}

.bonus-item {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 18px;
}

.bonus-item::before {
    content: '🎁';
    position: absolute;
    left: 0;
    font-size: 24px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: #0f1322;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #ffd54f;
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.faq-answer {
    opacity: 0.8;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: #0a0e27;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
}

.testimonial-stars {
    color: #ffd54f;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 14px;
    opacity: 0.7;
}

/* Footer */
.footer {
    padding: 60px 20px;
    background: #0a0e27;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: #ffd54f;
    text-decoration: none;
    margin: 0 15px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-company-info {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.footer-company-info h3 {
    color: #ffd54f;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-company-info p {
    margin: 10px 0;
    opacity: 0.8;
    font-size: 14px;
}

.footer-text {
    opacity: 0.6;
    font-size: 14px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.floating-cta.visible {
    opacity: 1;
}
  /* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #e0e0e0;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-banner-content {
    flex: 1;
    margin-right: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-banner-content a {
    color: #ffd54f;
    text-decoration: underline;
}

.cookie-consent-banner-button {
    background-color: #ffd54f;
    color: #1a237e;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-consent-banner-button:hover {
    background-color: #ffb300;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent-banner-content {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .cookie-consent-banner-button {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
    }
    
    .pain-section, .modules-section, .solution-section, .guarantee-section, .price-section, .faq-section {
        padding: 60px 20px;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 18px;
    }
    
    .price-container {
        padding: 40px 20px;
    }
    
    .current-price {
        font-size: 56px;
    }
    
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}

/* Author Section */
.author-section {
    padding: 100px 20px;
    background: #0f1322;
}

.author-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 50px;
}

.author-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    font-weight: 900;
    color: #1a237e;
    margin: 0 auto;
}

.author-info h3 {
    font-size: 32px;
    color: #ffd54f;
    margin-bottom: 15px;
}

.author-info p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .author-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }
    
    .author-image {
        width: 150px;
        height: 150px;
        font-size: 60px;
    }
}