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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.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;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1B365D 0%, #2c5282 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    height: 50px;
    width: auto;
}

.btn-header {
    background: #D4A574;
    color: #1B365D;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-header:hover {
    background: #c19660;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1B365D 0%, #2c5282 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.highlight {
    color: #D4A574;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-benefits {
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit i {
    color: #D4A574;
    margin-right: 15px;
    font-size: 1.2rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, #D4A574 0%, #c19660 100%);
    color: #1B365D;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

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

.cta-subtitle {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-banner {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1B365D;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

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

.video-placeholder {
    background: linear-gradient(135deg, #1B365D 0%, #2c5282 100%);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #D4A574;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: #c19660;
}

.play-button i {
    font-size: 2rem;
    color: #1B365D;
    margin-left: 5px;
}

.coming-soon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #D4A574;
    color: #1B365D;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.problem-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #DC3545;
}

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

.problem-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.problem-card h3 {
    color: #DC3545;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.problems-conclusion {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.highlight-text {
    background: linear-gradient(135deg, #1B365D 0%, #2c5282 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    font-size: 1.2rem;
    line-height: 1.6;
}

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

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.7;
}

.solution-features {
    display: grid;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature i {
    color: #D4A574;
    font-size: 2rem;
    margin-top: 5px;
}

.feature h4 {
    color: #1B365D;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

.mockup {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Modules Section */
.modules-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.module-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 5px solid #D4A574;
}

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

.module-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.module-card h3 {
    color: #1B365D;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.module-duration {
    color: #D4A574;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.module-content {
    list-style: none;
    text-align: left;
}

.module-content li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.module-content i {
    color: #28a745;
    margin-right: 10px;
    margin-top: 3px;
}

/* Instructor Section */
.instructor-section {
    padding: 80px 0;
    background: white;
}

.instructor-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.instructor-photo {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.instructor-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.7;
}

.instructor-credentials {
    margin-bottom: 30px;
}

.credential {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.credential i {
    color: #D4A574;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

.instructor-quote {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #D4A574;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 20px;
}

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

.testimonial-author {
    margin-bottom: 15px;
}

.testimonial-author strong {
    color: #1B365D;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #ffc107;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B365D 0%, #2c5282 100%);
    color: white;
}

.offer-content {
    max-width: 900px;
    margin: 0 auto;
}

.course-package {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.course-package h3 {
    color: #D4A574;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.package-value {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #D4A574;
}

.package-items {
    list-style: none;
}

.package-items li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
}

.package-items i {
    color: #28a745;
    margin-right: 15px;
}

.bonus-section {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.bonus-section h3 {
    color: #D4A574;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.bonus-value {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #D4A574;
}

.bonus-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.bonus-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.bonus-items {
    list-style: none;
    flex: 1;
}

.bonus-items li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.bonus-items i {
    color: #28a745;
    margin-right: 10px;
}

.bonus-item {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.bonus-item h4 {
    color: #D4A574;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.bonus-item ul {
    list-style: none;
}

.bonus-item li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.bonus-item i {
    color: #28a745;
    margin-right: 10px;
}

.total-value {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 10px;
}

.total-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.total-amount {
    color: #D4A574;
    font-size: 2rem;
}

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

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

.pricing-title {
    font-size: 2.5rem;
    color: #1B365D;
    margin-bottom: 40px;
}

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

.old-price {
    text-align: center;
}

.old-price .price-label {
    font-size: 1rem;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

.old-price .price-value {
    font-size: 2rem;
    color: #DC3545;
    text-decoration: line-through;
    font-weight: 700;
}

.new-price {
    text-align: center;
    position: relative;
}

.new-price::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #28a745;
}

.new-price .price-label {
    font-size: 1.2rem;
    color: #28a745;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.new-price .price-value {
    font-size: 3rem;
    color: #28a745;
    font-weight: 800;
    display: block;
}

.installments {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

.urgency-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.urgency-timer h3 {
    color: #DC3545;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown-item {
    background: #1B365D;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
}

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

.countdown-item label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spots-remaining {
    text-align: center;
}

.spots-remaining p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.progress-bar {
    background: #e9ecef;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 300px;
    margin: 0 auto;
}

.progress-fill {
    background: linear-gradient(90deg, #DC3545, #28a745);
    height: 100%;
    transition: width 0.3s ease;
}

.guarantee-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.guarantee-seal {
    width: 100px;
    height: 100px;
}

.guarantee-text h3 {
    color: #28a745;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.guarantee-text p {
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

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

.payment-option {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s ease;
}

.payment-option:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.payment-option.featured {
    border: 3px solid #D4A574;
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #DC3545;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.payment-option h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.payment-price {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.payment-price strong {
    font-size: 1.3rem;
    color: #D4A574;
}

.btn-payment {
    background: #D4A574;
    color: #1B365D;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-payment:hover {
    background: #c19660;
    transform: translateY(-2px);
}

.btn-pix {
    background: #00d4aa;
    color: white;
}

.btn-pix:hover {
    background: #00b894;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.security-item i {
    font-size: 1.2rem;
    color: #D4A574;
}

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

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

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

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

.faq-question h3 {
    color: #1B365D;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #D4A574;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

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

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-final-cta {
    background: #D4A574;
    color: #1B365D;
    border: none;
    padding: 25px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

.btn-final-cta:hover {
    background: #c19660;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.final-urgency {
    margin-top: 30px;
}

.final-urgency p {
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1B365D;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #D4A574;
    color: #1B365D;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c19660;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .instructor-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        padding: 15px;
        min-width: 60px;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .security-badges {
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .btn-final-cta {
        padding: 20px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

