/* ===== COURSE PAGE STYLES ===== */

.course-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* ===== COURSE HERO ===== */
.course-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(106, 17, 203, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 117, 252, 0.2) 0%, transparent 50%);
    z-index: 1;
}

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

.course-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.course-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.course-subtitle {
    font-size: 2.5rem;
    color: white;
    font-weight: 600;
}

.course-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.course-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.course-pricing {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
}

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

.old-price {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.current-price {
    display: block;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.installment {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-comprar-curso {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    padding: 18px;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-comprar-curso:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.4);
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-badge i {
    color: #00b09b;
    font-size: 1.2rem;
}

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

.course-hero-image .image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.course-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.course-hero-image .image-container:hover img {
    transform: scale(1.05);
}

.video-preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-preview:hover {
    background: rgba(106, 17, 203, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-preview i {
    font-size: 1.5rem;
}

/* ===== COMMON PROBLEMS ===== */
.common-problems {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.2);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.problem-icon i {
    font-size: 2rem;
    color: white;
}

.problem-card h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== COURSE CONTENT ===== */
.course-content {
    padding: 100px 0;
}

.modules-accordion {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-button:not(.collapsed) {
    background: rgba(106, 17, 203, 0.2);
    color: white;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.accordion-button .badge {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: auto;
}

.accordion-body {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    color: white;
}

.lessons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lessons-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
}

.lessons-list li:last-child {
    border-bottom: none;
}

.lessons-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ===== INSTRUCTOR SECTION ===== */
.instructor-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.instructor-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 30px;
    align-items: center;
}

.instructor-image {
    flex-shrink: 0;
}

.instructor-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
}

.instructor-info h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.instructor-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.instructor-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.instructor-stats {
    display: flex;
    gap: 30px;
}

.instructor-stat h4 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.instructor-stat p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.course-testimonials {
    padding: 100px 0;
}

.testimonial-slide {
    padding: 20px;
}

.testimonial-card-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text-large {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author-large {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author-large img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info-large h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.author-info-large span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.05);
}

.faq-accordion .accordion-button {
    font-size: 1rem;
}

.faq-accordion .accordion-body {
    color: white;
    line-height: 1.6;
}

/* ===== CTA FINAL ===== */
.final-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2));
    z-index: -1; /* Alterado para -1 para ficar atrás do conteúdo */
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

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

.cta-timer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.timer-display {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-unit {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    min-width: 80px;
}

.timer-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    display: block;
    text-align: center;
}

.timer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    text-align: center;
    margin-top: 5px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1199.98px) {
    .course-title {
        font-size: 3rem;
    }

    .course-subtitle {
        font-size: 2rem;
    }

    .instructor-card {
        flex-direction: column;
        text-align: center;
    }

    .instructor-stats {
        justify-content: center;
    }
}

@media (max-width: 991.98px) {
    .course-hero {
        padding-top: 150px;
        text-align: center;
    }

    .course-hero-content {
        margin-bottom: 50px;
    }

    .course-highlights {
        justify-content: center;
    }

    .course-pricing {
        margin: 0 auto;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .instructor-card {
        flex-direction: column;
        text-align: center;
    }

    .instructor-stats {
        justify-content: center;
    }

    .testimonial-author-large {
        flex-direction: column;
        text-align: center;
    }

    .timer-display {
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .course-title {
        font-size: 2.5rem;
    }

    .course-subtitle {
        font-size: 1.8rem;
    }

    .course-description {
        font-size: 1rem;
    }

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

    .highlight-item {
        width: 100%;
        justify-content: center;
    }

    .problem-card {
        margin-bottom: 20px;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 15px;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

    .final-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .course-title {
        font-size: 2rem;
    }

    .final-cta-card {
        padding: 30px 20px;
    }

    .final-cta-title {
        font-size: 1.8rem;
    }

    .final-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-comprar-final,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
    }

    .course-subtitle {
        font-size: 1.5rem;
    }

    .current-price {
        font-size: 2rem;
    }

    .btn-comprar-curso {
        font-size: 1rem;
        padding: 15px;
    }

    .timer-unit {
        min-width: 60px;
        padding: 10px;
    }

    .timer-value {
        font-size: 1.5rem;
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
}

.about-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-stats .stat-item {
    text-align: center;
}

.about-stats .stat-item h4 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.about-stats .stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.rating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
}

.rating-badge i {
    color: #ffc107;
}

/* ===== EARNINGS SECTION ===== */
.earnings-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.earnings-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table {
    color: white;
    margin-bottom: 0;
}

.table thead th {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table tbody td {
    padding: 15px;
    vertical-align: middle;
}

.price-cell {
    color: #00b09b;
    font-weight: 600;
}

.cost-cell {
    color: rgba(255, 255, 255, 0.7);
}

.profit-cell {
    color: #ff416c;
    font-weight: 700;
}

.earnings-summary {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    padding: 100px 0;
}

.guarantee-card {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 40px;
}

.guarantee-icon {
    flex-shrink: 0;
}

.guarantee-icon i {
    font-size: 4rem;
    color: #00b09b;
}

.guarantee-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.guarantee-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guarantee-badge i {
    color: #00b09b;
}

/* ===== COURSE SIDEBAR ===== */
.course-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.sidebar-card h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h4 i {
    color: var(--primary-color);
}

.bonus-list,
.target-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonus-list li,
.target-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.bonus-list li i,
.target-list li i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.cta-sidebar {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.2), rgba(37, 117, 252, 0.2));
    border-color: var(--primary-color);
}

.price-sidebar {
    margin: 20px 0;
}

.old-price {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-size: 1rem;
    margin-bottom: 5px;
}

.current-price {
    display: block;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.payment-methods-sidebar {
    margin-top: 15px;
    text-align: center;
}

.payment-methods-sidebar small {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== TESTIMONIAL BADGE ===== */
.testimonial-badge {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 40px;
    animation: pulse 2s infinite;
}

.testimonial-badge i {
    font-size: 1.2rem;
}

/* ===== FINAL CTA ===== */
.final-cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.final-cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.final-pricing {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.price-final {
    text-align: center;
    margin-bottom: 30px;
}

.old-price-final {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.current-price-final {
    display: block;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00b09b, #96c93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
}

.installment-final {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

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

.btn-comprar-final {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    padding: 18px 40px;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-comprar-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.4);
}

.final-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.final-guarantee i {
    color: #00b09b;
}

/* ===== ÍCONES AZUIS ===== */
.modules-accordion .accordion-button i,
.course-sidebar .sidebar-card i,
.bonus-list i,
.target-list i,
.lessons-list i {
    color: #2575fc !important; /* SECONDARY_COLOR */
}

/* Ícones dos benefícios */
.benefit-card i {
    color: #2575fc !important;
}

/* Ícones dos problemas */
.problem-card i {
    color: #2575fc !important;
}
    font-size: 1.2rem;
}

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