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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333333;
    overflow-x: hidden;
}

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

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #FF0000;
}

.section-title.white {
    color: #FFFFFF;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    color: white;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    font-weight: 600;
    font-size: 1rem;
}

.cta-button-small {
    background: white;
    color: #FF6B00;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-small:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1A2B4C 0%, #2C4A7A 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.urgency-badge {
    background: #FF6B00;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-title .highlight {
    color: #FF6B00;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-style: italic;
}

.hero-cta {
    margin-bottom: 4rem;
}

.cta-button-primary {
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #FF6B00;
}

.proof-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #F5F5F5;
}

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

.scenario {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.scenario-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-pain {
    text-align: center;
    margin-bottom: 3rem;
}

.pain-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #666;
    font-weight: 600;
}

.frustration-quote {
    text-align: center;
}

.frustration-quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #FF6B00;
    font-weight: 600;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.frustration-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #FF6B00;
    position: absolute;
    top: -10px;
    left: 20px;
}

/* Revelation Section */
.revelation {
    background: linear-gradient(135deg, #1A2B4C 0%, #2C4A7A 100%);
    color: white;
    padding: 80px 0;
}

.revelation-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.revelation-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FF6B00;
}

.analogy {
    margin-bottom: 3rem;
}

.analogy h4 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: #FF6B00;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.solution-intro {
    text-align: center;
    background: rgba(255, 107, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
}

.solution-intro h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FF6B00;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: white;
}

.method-explanation {
    text-align: center;
    margin-bottom: 3rem;
}

.method-explanation p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.method-vs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.method-old, .method-new {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.method-old {
    background: #FFE5E5;
    border: 2px solid #FF6B6B;
}

.method-new {
    background: #E5F5E5;
    border: 2px solid #4CAF50;
}

.method-old h4, .method-new h4 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.method-old ul, .method-new ul {
    list-style: none;
    text-align: left;
}

.method-old li, .method-new li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.authority {
    text-align: center;
}

.authority-badge {
    background: linear-gradient(135deg, #1A2B4C, #2C4A7A);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 43, 76, 0.3);
}

.authority-badge h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FF6B00;
}

/* Product Section */
.product {
    padding: 80px 0;
    background: #F5F5F5;
}

.product-description {
    text-align: center;
    margin-bottom: 3rem;
}

.product-description p {
    font-size: 1.3rem;
    color: #1A2B4C;
}

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

.detail-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.detail-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.detail-text h4 {
    margin-bottom: 0.5rem;
    color: #1A2B4C;
}

.skills-learned {
    text-align: center;
}

.skills-learned h3 {
    margin-bottom: 2rem;
    color: #1A2B4C;
}

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

.skill {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    color: #1A2B4C;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.no-need {
    font-style: italic;
    color: #666;
    font-size: 1.1rem;
}

/* Future Pacing Section */
.future-pacing {
    background: linear-gradient(135deg, #1A2B4C 0%, #2C4A7A 100%);
    color: white;
    padding: 80px 0;
}

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

.scenario-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.future-cta {
    text-align: center;
}

.future-cta h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #FF6B00;
}

.cta-button-secondary {
    background: transparent;
    color: #FF6B00;
    border: 3px solid #FF6B00;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button-secondary:hover {
    background: #FF6B00;
    color: white;
    transform: translateY(-3px);
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.price-option {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.expensive {
    background: #FFE5E5;
    border: 2px solid #FF6B6B;
}

.cheap {
    background: #E5F5E5;
    border: 2px solid #4CAF50;
    position: relative;
}

.cheap::before {
    content: '🔥 MELHOR ESCOLHA';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B00;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-strike {
    font-size: 2rem;
    text-decoration: line-through;
    color: #FF6B6B;
    font-weight: 700;
}

.price-main {
    font-size: 3rem;
    color: #4CAF50;
    font-weight: 800;
    margin: 1rem 0;
}

.price-vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A2B4C;
}

.urgency-scarcity {
    text-align: center;
    margin-bottom: 3rem;
}

.scarcity-box {
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.scarcity-box h3 {
    margin-bottom: 1rem;
}

.countdown {
    margin-top: 1rem;
}

.countdown-item {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 0 0.5rem;
}

.countdown-item span:first-child {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.main-cta {
    text-align: center;
}

.cta-button-mega {
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    color: white;
    border: none;
    padding: 25px 50px;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button-mega:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.5);
}

.cta-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.5rem;
    text-transform: none;
    letter-spacing: normal;
}

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

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    font-size: 4rem;
    color: #4CAF50;
}

.badge-text h3 {
    color: #1A2B4C;
    margin-bottom: 0.5rem;
}

.badge-text p {
    color: #666;
    font-weight: 600;
}

.guarantee-text {
    max-width: 500px;
}

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

/* Bonuses Section */
.bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2B4C 0%, #2C4A7A 100%);
    color: white;
}

.bonuses-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.bonus-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.bonus-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.bonus-content h4 {
    margin-bottom: 0.5rem;
}

.bonus-value {
    color: #FF6B00;
    font-weight: 700;
    font-size: 1.2rem;
}

.special-bonus {
    text-align: center;
    margin-bottom: 3rem;
}

.special-bonus-content {
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
}

.special-bonus-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.special-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 1rem;
}

.total-value {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
}

.total-strike {
    text-decoration: line-through;
    color: #FF6B6B;
}

.final-price {
    color: #4CAF50;
    font-size: 3rem;
}

/* Expert Section */
.expert {
    padding: 80px 0;
    background: white;
}

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

.expert-name {
    text-align: center;
    margin-bottom: 2rem;
}

.expert-name h3 {
    font-size: 2.5rem;
    color: #1A2B4C;
    margin-bottom: 0.5rem;
}

.expert-title {
    font-size: 1.2rem;
    color: #FF6B00;
    font-weight: 600;
}

.expert-credentials {
    margin-bottom: 2rem;
}

.credential {
    background: #F5F5F5;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.expert-mission {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2B4C 0%, #2C4A7A 100%);
    color: white;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #FF6B00;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.final-summary {
    margin-bottom: 3rem;
}

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

.summary-item {
    background: #F5F5F5;
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    color: #1A2B4C;
}

.final-value {
    margin-bottom: 2rem;
}

.value-strike {
    text-decoration: line-through;
    color: #FF6B6B;
}

.final-price-big {
    color: #4CAF50;
    font-size: 3rem;
    font-weight: 800;
}

.urgency-final {
    margin-bottom: 3rem;
}

.urgency-text {
    font-size: 1.3rem;
    color: #FF6B00;
    font-weight: 700;
    margin-bottom: 1rem;
}

.result-promise {
    font-size: 1.2rem;
    color: #1A2B4C;
    font-weight: 600;
}

.cta-button-final {
    background: linear-gradient(135deg, #FF6B00, #FF8533);
    color: white;
    border: none;
    padding: 30px 60px;
    font-size: 1.6rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.cta-button-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 107, 0, 0.5);
}

.security-text {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1A2B4C;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .method-vs {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        flex-direction: column;
    }
    
    .price-vs {
        order: 2;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-proof {
        gap: 1.5rem;
    }
    
    .cta-button-primary,
    .cta-button-mega,
    .cta-button-final {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .sticky-cta .container {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cta-button-primary,
    .cta-button-mega,
    .cta-button-final {
        width: 100%;
        padding: 15px 20px;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.visible {
    display: block;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

