:root {
            --primary: #1a2a3a;
            --secondary: #d4af37;
            --accent: #c62828;
            --light: #f8f9fa;
            --dark: #121212;
            --text: #333333;
            --text-light: #6c757d;
            --success: #2e7d32;
            --overlay: rgba(26, 42, 58, 0.85);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: #f5f5f5;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary);
            line-height: 1.3;
        }

        .text-white {
            color: white;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Hero */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('banner.jpg') no-repeat center center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-content {
            max-width: 1200px;
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            color: var(--secondary);
            font-weight: 900;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInDown 1s ease;
        }
        
        .hero-subtitle {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 40px;
            animation: fadeInDown 1s ease 0.2s forwards;
            opacity: 0;
        }
        
        .hero-divider {
            width: 100px;
            height: 4px;
            background-color: var(--secondary);
            margin: 30px auto;
            animation: fadeIn 1s ease 0.4s forwards;
            opacity: 0;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--primary);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background-color: #e6c260;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .cta-button.secondary {
            background-color: transparent;
            color: white;
            border: 2px solid var(--secondary);
            margin-left: 20px;
        }
        
        .cta-button.secondary:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }
        
        /* Sections */
        section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            margin: 25px auto;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        /* Problem Section */
        .problem-section {
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .problem-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .problem-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .problem-text {
            font-size: 1.3rem;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        /* Benefits Section */
        .benefits-section {
            background-color: var(--primary);
            color: white;
        }
        
        .benefits-section .section-title {
            color: white;
        }
        
        .benefits-section .section-title:after {
            background-color: var(--secondary);
        }
        
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .benefit-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .benefit-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .benefit-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .benefit-card h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .benefit-card p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Testimonial Section */
        .testimonial-section {
            background-color: var(--light);
        }
        
        .testimonial-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            background-color: white;
            padding: 60px;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            text-align: center;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.6s ease;
        }
        
        .testimonial.animate {
            opacity: 1;
            transform: scale(1);
        }
        
        .testimonial:before {
            content: '"';
            font-size: 120px;
            position: absolute;
            top: 20px;
            left: 40px;
            opacity: 0.1;
            font-family: 'Playfair Display', serif;
            color: var(--secondary);
        }
        
        .testimonial-text {
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: 30px;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--secondary);
        }
        
        .testimonial-role {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* Modules Section */
        .modules-section {
            background-color: white;
        }
        
        .modules {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .module-card {
            background-color: white;
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            border-top: 5px solid var(--secondary);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .module-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .module-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .module-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            font-weight: 900;
            color: rgba(0, 0, 0, 0.03);
            font-family: 'Playfair Display', serif;
        }
        
        .module-card h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .module-card h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        /* Mentor Section */
        .mentor-section {
            background: linear-gradient(rgba(26, 42, 58, 0.9), rgba(26, 42, 58, 0.9)), url('https://images.unsplash.com/photo-1521791055366-0d553872125f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
        }
        
        .mentor-content {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .mentor-photo {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            object-position: right top !important; /* Alinha o topo e a direita da imagem */
            border: 5px solid var(--secondary);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            flex-shrink: 0;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        } 
        
        .mentor-photo.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .mentor-description {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease 0.3s;
        }
        
        .mentor-description.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .mentor-description h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .mentor-description p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .mentor-signature {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--secondary);
            margin-top: 30px;
            display: block;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--secondary);
            color: var(--primary);
            text-align: center;
            padding: 120px 0;
        }
        
        .cta-section .section-title {
            color: var(--primary);
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .cta-section .section-title.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .cta-section .section-title:after {
            background-color: var(--primary);
        }
        
        .cta-text {
            font-size: 1.3rem;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease 0.2s;
        }
        
        .cta-text.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .cta-button {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease 0.4s;
        }
        
        .cta-button.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
            text-align: center;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--secondary);
        }
        
        .footer-text {
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .social-link {
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .mentor-content {
                flex-direction: column;
                text-align: center;
            }
            
            .mentor-photo {
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .testimonial {
                padding: 40px 30px;
            }
            
            .testimonial-text {
                font-size: 1.2rem;
            }
            
            .cta-buttons {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            
            .cta-button.secondary {
                margin-left: 0;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                min-height: auto;
                padding: 80px 0;
            }
            
            section {
                padding: 60px 0;
            }
            
            .module-card {
                padding: 30px 20px;
            }
        }

    
    /* Seção de Agenda */
    .schedule-section {
        background-color: white;
        padding: 10px 0;
    }

    .schedule-header{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
    }
    
    .schedule-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }
    
    .schedule-card {
        background-color: var(--light);
        border-radius: 10px;
        padding: 30px;
        border: 2px solid var(--secondary);
        transition: all 0.3s ease;
    }
    
    .schedule-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .schedule-date {
        font-weight: 700;
        color: var(--secondary);
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .schedule-time {
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .schedule-spots {
        color: var(--accent);
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    /* Seção de Materiais e Valor */
    .pricing-section {
        background-color: var(--primary);
        color: white;
        padding: 80px 0;
    }
    
    .pricing-highlight {
        background-color: var(--secondary);
        color: var(--primary);
        padding: 5px 15px;
        border-radius: 50px;
        font-weight: 700;
        display: inline-block;
        margin-bottom: 20px;
    } 
    
    .included-materials,
    .materials { 
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .material-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .material-icon {
        color: var(--secondary);
        margin-right: 15px;
        font-size: 1.2rem;
    }
    
    .price-tag {
        font-size: 2.5rem;
        font-weight: 700;
        margin: 20px 0;
        color: white;
    }
    
    .price-installments {
        color: rgba(255,255,255,0.8);
        margin-bottom: 30px;
    }
    
    /* Destaque para evento ao vivo */
    .live-badge {
        background-color: var(--accent);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        margin-bottom: 20px;
        animation: pulse 2s infinite;
    }

    .presencial-badge {
        background-color: var(--success);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        margin-bottom: 20px;
        animation: pulse 2s infinite;
        margin-left: 10px;
    }

    .live-badge:hover,
    .presencial-badge:hover {
        cursor: pointer;
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .live-badge i,
    .presencial-badge i {
        margin-right: 10px;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    /* Formulário com termos */
    .terms-container {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        margin-top: 30px;
        max-height: 200px;
        overflow-y: auto;
        border: 1px solid #eee;
    }
    
    .terms-checkbox {
        margin-top: 20px;
        display: flex;
        align-items: flex-start;
    }
    
    .terms-checkbox input {
        margin-right: 15px;
        margin-top: 3px;
    }
    
    /* Responsividade */
    @media (max-width: 768px) {
        .schedule-options {
            grid-template-columns: 1fr;
        }
        
        .price-tag {
            font-size: 2rem;
        }
    }  
    
    .registration-form {
        max-width: 600px;
        margin: 0 auto;
        background-color: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-group {
        margin-bottom: 25px;
        position: relative;
    }
    
    .form-group input,
    .form-group select {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        transition: all 0.3s ease;
        background-color: #f9f9f9;
    }
    
    .form-group input:focus,
    .form-group select:focus {
        border-color: var(--secondary);
        outline: none;
        background-color: white;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--primary);
    }
    
    .terms-container {
        background-color: #f8f9fa;
        border-radius: 8px;
        padding: 20px;
        margin: 30px 0;
        max-height: 200px;
        overflow-y: auto;
        border: 1px solid #e0e0e0;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .terms-container h4 {
        color: var(--primary);
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .terms-container p {
        margin-bottom: 10px;
    }
    
    .terms-checkbox {
        display: flex;
        align-items: flex-start;
        margin: 25px 0 30px;
    }
    
    .terms-checkbox input {
        margin-right: 15px;
        margin-top: 3px;
        min-width: 18px;
        min-height: 18px;
        accent-color: var(--secondary);
    }
    
    .terms-checkbox label {
        font-size: 0.95rem;
        color: var(--text);
        cursor: pointer;
    }
    
    .form-submit-btn {
        width: 100%;
        padding: 18px;
        background-color: var(--secondary);
        color: var(--primary);
        border: none;
        border-radius: 50px;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .form-submit-btn:hover {
        background-color: #e6c260;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Estilo para o dropdown */
    .form-group select {
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2a3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 15px;
    }
    
    /* Divider estilizado */
    .form-divider {
        border: none;
        height: 1px;
        background-color: #e0e0e0;
        margin: 25px 0;
        position: relative;
    }
    
    .form-divider::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background-color: var(--secondary);
        width: 50px;
        height: 3px;
    } 

    .pricing-section {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    opacity: 0.1;
    border-radius: 50%;
}

.pricing-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--accent);
    opacity: 0.05;
    border-radius: 50%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.pricing-highlight {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-container {
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.pricing-card {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    text-align: center;
}

.pricing-main {
    border: 3px solid var(--secondary);
    transform: scale(1.05);
}

.price-option {
    margin-bottom: 30px;
}

.price-option h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.price-amount small {
    font-size: 1.5rem;
    font-weight: 400;
}

.price-installments {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.price-installments small {
    font-size: 1rem;
    display: block;
    color: var(--text-light);
    font-weight: 400;
}

.price-benefits {
    margin-top: 30px;
}

.included-materials {
    flex: 1;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.material-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
}

.material-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.material-icon {
    color: var(--secondary);
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.material-text {
    color: white;
}

.best-value-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .pricing-container {
        flex-direction: column;
    }
    
    .pricing-main {
        transform: none;
    }
    
    .pricing-card {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .price-amount {
        font-size: 2.5rem;
    }
    
    .price-installments {
        font-size: 1.5rem;
    }
}

.bonus-box {
    background: rgba(212, 175, 55, 0.15);
    border: 1px dashed var(--secondary);
    border-radius: 10px;
    padding: 20px;
    margin-top: auto;
    position: relative;
}

.bonus-box::before {
    content: "BÔNUS EXCLUSIVO";
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--secondary);
    color: var(--primary);
    padding: 2px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bonus-title {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* whatsapp flutuante */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--secondary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .whatsapp-button:hover {
        background-color: #e6c260;
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    
    .whatsapp-button i {
        color: white;
    }
    
    @media (max-width: 576px) {
        .whatsapp-button {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
    }