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

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::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="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ea580c;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: #fbbf24;
}

.hero-title .accent {
    color: #ea580c;
}

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

.benefits-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.2rem;
}

.cta-container {
    margin-bottom: 30px;
}

.cta-button {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(234, 88, 12, 0.4);
}

.price-info {
    margin-top: 15px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
}

.installments {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-proof {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
}

.social-proof i {
    color: #10b981;
    margin-right: 8px;
}

.hero-image {
    position: relative;
    text-align: center;
}

.mauro-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    background: white;
    color: #333;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.floating-card.miles {
    bottom: 20%;
    right: -20%;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
}

.floating-card.products {
    bottom: 20%;
    right: -20%;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1e293b;
}

.problem-icon {
    font-size: 2rem;
    margin-right: 15px;
}

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

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.problem-item .problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #dc2626;
}

.problem-item p {
    color: #64748b;
    line-height: 1.6;
}

.statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 40px 30px;
    border-radius: 16px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    line-height: 1.4;
}

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

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

.solution-text h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 20px;
}

.solution-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.benefit i {
    color: #10b981;
    font-size: 1.5rem;
    margin-top: 5px;
}

.benefit h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.benefit p {
    color: #64748b;
    line-height: 1.5;
}

.authority-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Course Structure */
.course-structure {
    padding: 80px 0;
    background: #f8fafc;
}

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

.module {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.module.bonus {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    color: white;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.module-icon {
    font-size: 2rem;
}

.module-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.module-content {
    list-style: none;
}

.module-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.module-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.module.bonus .module-content li::before {
    color: #fbbf24;
}

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

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

.authority-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 20px;
}

.authority-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.credential i {
    color: #ea580c;
    font-size: 1.2rem;
}

.authority-quote {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ea580c;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
}

.mauro-authority {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-weight: 700;
    color: #1e293b;
}

.testimonial-role {
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-content p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial-result {
    font-weight: 600;
    color: #ea580c;
}

.testimonial-rating {
    margin-top: 15px;
    color: #fbbf24;
}

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

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

.investment-card {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
}

.investment-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.investment-header p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.price-container {
    margin-bottom: 30px;
}

.price-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: #fbbf24;
}

.price-installments {
    font-size: 1.1rem;
    opacity: 0.9;
}

.investment-benefits {
    text-align: left;
    margin-bottom: 30px;
}

.investment-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.investment-benefits i {
    color: #10b981;
    font-size: 1.1rem;
}

.investment-cta {
    width: 100%;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ea580c, #dc2626);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.roi-calculation {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.roi-calculation h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: center;
}

.roi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.roi-item.total {
    border-bottom: none;
    border-top: 2px solid #ea580c;
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 700;
}

.roi-label {
    color: #64748b;
}

.roi-value {
    font-weight: 700;
    color: #ea580c;
    font-size: 1.1rem;
    min-width: 120px;
  text-align: right;
}

.roi-note {
    text-align: center;
    margin-top: 15px;
    color: #10b981;
    font-weight: 600;
}

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

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

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

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

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.faq-question i {
    color: #ea580c;
    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: #64748b;
    line-height: 1.6;
}

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

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

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

.urgency-elements {
    margin-bottom: 40px;
}

.countdown-container {
    margin-bottom: 20px;
}

.countdown-label {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fbbf24;
}

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

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
}

.countdown-item label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scarcity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.scarcity i {
    color: #ea580c;
}

.final-cta {
    font-size: 1.3rem;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fbbf24;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
}

.close:hover {
    color: #dc2626;
}

.modal-content h2 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 800;
}

.modal-content p {
    color: #64748b;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #1e40af;
}

.price-summary {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
}

.price-line.installment {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: normal;
}

.modal-cta {
    width: 100%;
    margin-bottom: 20px;
}

.security-badges {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
}

.badge i {
    color: #10b981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .solution-content,
    .authority-content,
    .investment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 15px;
    }
    
    .countdown-item span {
        font-size: 1.5rem;
    }
    
    .floating-card.savings {
        left: -10%;
    }
    
    .floating-card.products {
        right: -10%;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mauro-photo {
        width: 300px;
        height: 300px;
    }
    
    .floating-card {
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .problems-grid,
    .modules-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

