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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background: #FFFFFF;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #EB0028 0%, #D4AF37 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero .combination {
    font-size: 1.2rem;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.price-badge {
    display: inline-block;
    background: #FFD700;
    color: #2C2C2C;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.cta-button {
    display: inline-block;
    background: #FFD700;
    color: #2C2C2C;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
    background: #E6C200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Mentors Section */
.mentors {
    padding: 80px 0;
    background: #F8F9FA;
}

.mentors h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2C2C2C;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.mentor-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mentor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #D4AF37;
}

.mentor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid #FFD700;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.mentor-photo:hover {
    transform: scale(1.05);
    border-color: #D4AF37;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.mentor-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #EB0028;
}

.mentor-description {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
}

.combination-result {
    background: linear-gradient(135deg, #EB0028 0%, #D4AF37 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(235, 0, 40, 0.2);
}

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

.problem h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2C2C2C;
}

.problem-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #2C2C2C;
}

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

.benefit-item {
    background: #F8F9FA;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    border-color: #D4AF37;
}

.benefit-item .check {
    color: #EB0028;
    font-size: 1.5rem;
    margin-right: 15px;
}

/* CTA Section Before 3Ps */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #EB0028 0%, #D4AF37 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background: #FFFFFF;
    color: #EB0028;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 18px 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-section .cta-button:hover {
    background: #F9FAFB;
    color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* 3Ps Section */
.three-ps {
    padding: 80px 0;
    background: #F8F9FA;
}

.three-ps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2C2C2C;
}

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

.p-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.p-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #D4AF37;
}

.p-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.p-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #EB0028;
}

.p-list {
    list-style: none;
    text-align: left;
    color: #2C2C2C;
}

.p-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.p-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #EB0028;
    font-weight: bold;
}

/* Program Section */
.program {
    padding: 80px 0;
    background: #FFFFFF;
}

.program h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2C2C2C;
}

.program-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.day-card {
    background: #F8F9FA;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #E5E7EB;
}

.day-header {
    background: linear-gradient(135deg, #EB0028 0%, #D4AF37 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.day-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.day-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.day-content {
    padding: 30px;
    background: #FFFFFF;
}

.session {
    margin-bottom: 30px;
}

.session-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #EB0028;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.session-title .emoji {
    margin-right: 10px;
}

.session-items {
    list-style: none;
    margin-left: 20px;
}

.session-items li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    color: #2C2C2C;
}

.session-items li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #EB0028;
    font-weight: bold;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #F8F9FA;
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2C2C2C;
}

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

.testimonial-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #EB0028;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left-color: #D4AF37;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2C2C2C;
}

.testimonial-author {
    font-weight: bold;
    color: #EB0028;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #EB0028 0%, #D4AF37 100%);
    color: white;
    text-align: center;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.warning {
    background: rgba(255, 215, 0, 0.2);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    font-weight: 600;
    border: 1px solid #FFD700;
}

/* Event Info */
.event-info {
    padding: 80px 0;
    background: #F8F9FA;
}

.event-info h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2C2C2C;
}

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

.info-item {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #E5E7EB;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #EB0028;
}

.info-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #EB0028;
}

.info-item div:last-child {
    color: #2C2C2C;
}

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

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2C2C2C;
}

.faq-item {
    background: #F8F9FA;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #E5E7EB;
}

.faq-question {
    padding: 20px;
    background: #F8F9FA;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid #E5E7EB;
    transition: background-color 0.3s ease;
    color: #2C2C2C;
}

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

.faq-answer {
    padding: 20px;
    display: none;
    background: #FFFFFF;
    color: #2C2C2C;
}

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

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #EB0028 0%, #D4AF37 100%);
    color: white;
    text-align: center;
}

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

.final-message {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.final-message p {
    margin-bottom: 20px;
}

.final-question {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.footer-signature {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-subtitle {
    opacity: 0.8;
}

/* Garantia Section - Adicionando estilo específico */
.guarantee-section {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    color: #2C2C2C;
}

.guarantee-section h2 {
    color: #2C2C2C;
}

/* Materiais/Bonus Section quando background branco */
.three-ps[style*="background: white"] {
    background: #F8F9FA !important;
}

.three-ps[style*="background: white"] h2 {
    color: #2C2C2C !important;
}

/* Urgency Section */
.problem:last-of-type {
    background: #FFFFFF;
}

/* Scroll to top button adjustments */
button[style*="background: #1E40AF"] {
    background: #EB0028 !important;
    color: #FFFFFF !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .hero .combination {
        font-size: 1rem;
    }

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

    .mentor-card {
        padding: 30px 20px;
    }

    .program-timeline {
        grid-template-columns: 1fr;
    }

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

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

    .p-card {
        padding: 30px 20px;
    }

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

    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .container {
        padding: 0 15px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .hero {
        padding: 60px 0;
    }

    .mentors,
    .three-ps,
    .program,
    .testimonials,
    .event-info,
    .pricing,
    .faq,
    .final-cta {
        padding: 60px 0;
    }

    .problem {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .new-price {
        font-size: 2.5rem;
    }

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

    .mentor-photo {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }

    .p-icon {
        font-size: 2.5rem;
    }

    .final-cta .cta-button {
        font-size: 1.2rem !important;
        padding: 20px 35px !important;
    }
}
