/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-dark: #0a0a0a;
    --primary-medium: #1a1a1a;
    --primary-light: #2d2d2d;
    --gold-dark: #c9a227;
    --gold-main: #d4af37;
    --gold-light: #f4d03f;
    --text-white: #ffffff;
    --text-gray: #e5e5e5;
    --text-muted: #a0a0a0;

    /* Gradients */
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #d4af37 50%, #f4d03f 100%);
    --gradient-gold-hover: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #ffe066 100%);

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 60px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== UTILITIES ==================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.text-gold {
    color: var(--gold-main);
}

.section-tag {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== BUTTONS ==================== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.btn-cta:hover {
    background: var(--gradient-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-cta-large {
    font-size: 1.1rem;
    padding: 20px 40px;
}

.btn-cta.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

/* ==================== STICKY HEADER ==================== */
.sticky-header {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    background: var(--primary-medium);
    border-bottom: 1px solid var(--gold-main);
    padding: 10px 20px;
    z-index: 1000;
    transition: top var(--transition-normal);
}

.sticky-header.visible {
    top: 0;
}

.sticky-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-header-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}

.btn-sticky {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .sticky-header-text {
        font-size: 0.7rem;
        max-width: 180px;
    }

    .pricing-badge-link {
        font-size: 0.75rem;
        padding: 8px;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-main);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-fire {
    font-size: 1.2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-video {
    max-width: 700px;
    margin: 0 auto 32px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold-main);
    overflow: hidden;
}

.video-placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-muted);
}

.video-placeholder-content i {
    font-size: 4rem;
    color: var(--gold-main);
    margin-bottom: 16px;
}

.video-placeholder-content p {
    font-weight: 600;
    margin-bottom: 8px;
}

.video-placeholder-content span {
    font-size: 0.85rem;
}

.video-placeholder.small {
    padding-top: 56.25%;
}

.video-placeholder.small .video-placeholder-content i {
    font-size: 3rem;
}

.hero-cta {
    margin-bottom: 24px;
}

.hero-price-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.price-installment {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-main);
}

.price-or {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-badge i {
    color: var(--gold-main);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 1.5rem;
    color: var(--gold-main);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==================== PROBLEMS SECTION ==================== */
.problems {
    padding: var(--section-padding);
    background: var(--primary-medium);
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--primary-dark);
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-normal);
}

.problem-card:hover {
    border-color: var(--gold-main);
    transform: translateY(-4px);
}

.problem-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin: 0 auto 16px;
}

.problem-icon i {
    font-size: 1.5rem;
    color: var(--gold-main);
}

.problem-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.problems-cta {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.problems-cta-text {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.problems-cta-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-main);
}

/* ==================== SOLUTION SECTION ==================== */
.solution {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.solution-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.solution-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.solution-tagline {
    font-size: 1.2rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 16px;
}

.solution-description {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.solution-highlights {
    list-style: none;
    margin-bottom: 32px;
}

.solution-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.solution-highlights li i {
    color: var(--gold-main);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border: 2px dashed var(--gold-main);
    border-radius: var(--radius-lg);
    padding: 60px 20px;
    text-align: center;
    color: var(--text-muted);
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--gold-main);
    margin-bottom: 16px;
}

.image-placeholder p {
    font-weight: 600;
    margin-bottom: 8px;
}

.image-placeholder span {
    font-size: 0.85rem;
}

.image-placeholder.large {
    padding: 80px 20px;
}

.image-placeholder.instructor-photo {
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 3/4;
}

.instructor-photo-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: var(--radius-lg);
    border: 3px solid var(--gold-main);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.course-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* ==================== BENEFITS SECTION ==================== */
.benefits {
    padding: var(--section-padding);
    background: var(--primary-medium);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-card {
    background: var(--primary-dark);
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    border-color: var(--gold-main);
    background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    margin: 0 auto 16px;
}

.benefit-icon i {
    font-size: 1.3rem;
    color: var(--primary-dark);
}

.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ==================== CONTENT SECTION ==================== */
.content {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.content-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--primary-medium);
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition-normal);
}

.content-card:hover {
    border-color: var(--gold-main);
}

.content-card-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
}

.content-card-icon i {
    font-size: 1.3rem;
    color: var(--gold-main);
}

.content-card-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.content-card-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==================== GALLERY SECTION ==================== */
.gallery {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.gallery-container {
    position: relative;
    padding: 0 50px;
}

.gallery-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--gold-main);
    border: none;
    border-radius: 50%;
    color: var(--primary-dark);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.gallery-nav:hover {
    background: var(--gold-light);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-prev {
    left: 0;
}

.gallery-nav-next {
    right: 0;
}

@media (max-width: 767px) {
    .gallery-container {
        padding: 0 40px;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

.gallery-item {
    flex: 0 0 280px;
    height: 200px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .gallery-item {
        flex: 0 0 320px;
        height: 220px;
    }
}

.gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold-main);
    object-fit: cover;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--text-white);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
    transition: color var(--transition-fast);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold-main);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--gold-main);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2001;
    transition: all var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold-main);
    color: var(--primary-dark);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    margin-top: 16px;
    color: var(--text-gray);
    font-size: 1rem;
}

@media (max-width: 767px) {
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }
}

/* ==================== PREVIEW VIDEOS SECTION ==================== */
.preview-videos {
    padding: var(--section-padding);
    background: var(--primary-medium);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.preview-card {
    text-align: center;
}

.preview-card h3 {
    margin-top: 16px;
    font-size: 1rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gold-main);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--primary-dark);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--primary-medium);
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    border: 2px solid var(--gold-main);
}

.avatar-placeholder i {
    color: var(--gold-main);
}

.testimonial-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-stars {
    margin-bottom: 12px;
}

.testimonial-stars i {
    color: var(--gold-main);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border: 1px solid var(--gold-main);
    border-radius: 50%;
    color: var(--gold-main);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--gold-main);
    color: var(--primary-dark);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--gold-main);
}

/* ==================== INSTRUCTOR SECTION ==================== */
.instructor {
    padding: var(--section-padding);
    background: var(--primary-medium);
}

.instructor-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.instructor-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold-main);
    margin-bottom: 20px;
}

.instructor-bio p {
    color: var(--text-gray);
    margin-bottom: 16px;
}

.instructor-credentials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-dark);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold-main);
}

.credential i {
    color: var(--gold-main);
}

.credential span {
    font-size: 0.9rem;
}

.instructor-courses {
    margin-top: 24px;
    padding: 20px;
    background: var(--primary-dark);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold-main);
}

.instructor-courses h4 {
    font-size: 1rem;
    color: var(--gold-main);
    margin-bottom: 12px;
}

.instructor-courses ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.instructor-courses li {
    background: var(--primary-light);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-gray);
}

.instructor-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.instructor-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    border: 2px solid var(--gold-main);
    border-radius: 50%;
    color: var(--gold-main);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.instructor-social a:hover {
    background: var(--gold-main);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.instructor-social a.threads-icon span {
    font-size: 1.4rem;
    font-weight: 800;
    font-family: var(--font-primary);
    line-height: 1;
}

/* ==================== GUARANTEE SECTION ==================== */
.guarantee {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    border: 2px solid var(--gold-main);
    border-radius: var(--radius-xl);
    padding: 40px 24px;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    margin-bottom: 24px;
}

.guarantee-icon i {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.guarantee-text h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.guarantee-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    max-width: 500px;
}

.guarantee-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    padding: var(--section-padding);
    background: var(--gradient-dark);
}

.pricing-card {
    position: relative;
    background: var(--primary-medium);
    border: 2px solid var(--gold-main);
    border-radius: var(--radius-xl);
    padding: 40px 24px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0;
}

.pricing-badge-link {
    display: block;
    padding: 10px;
    color: var(--primary-dark);
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.pricing-badge-link:hover {
    background: var(--gradient-gold-hover);
}

.pricing-header {
    margin-top: 40px;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--primary-light);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--gold-main);
}

.pricing-value {
    margin-bottom: 24px;
}

.pricing-anchor {
    margin-bottom: 8px;
}

.pricing-anchor span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-anchor s {
    color: #ff6b6b;
}

.pricing-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.pricing-installment {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold-main);
    line-height: 1;
}

.pricing-cash {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-md);
    color: #ff6b6b;
    font-size: 0.9rem;
}

.pricing-payment-methods {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--primary-light);
}

.pricing-payment-methods > span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.payment-icon i {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.pricing-trust {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-trust img {
    width: 80px;
    margin-bottom: 8px;
}

/* ==================== BONUS SECTION ==================== */
.bonus {
    padding: var(--section-padding);
    background: var(--primary-medium);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bonus-card {
    position: relative;
    background: var(--primary-dark);
    border: 1px solid var(--gold-main);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
}

.bonus-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin: 0 auto 16px;
}

.bonus-icon i {
    font-size: 1.5rem;
    color: var(--gold-main);
}

.bonus-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.bonus-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.bonus-value {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.bonus-value strong {
    color: var(--gold-main);
}

/* ==================== FAQ SECTION ==================== */
.faq {
    padding: var(--section-padding);
    background: var(--primary-dark);
}

.faq-accordion {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-medium);
    border: 1px solid var(--primary-light);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    border-color: var(--gold-main);
}

.faq-question i {
    color: var(--gold-main);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question {
    border-color: var(--gold-main);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    background: var(--primary-medium);
    border: 1px solid var(--gold-main);
    border-top: none;
    border-bottom-left-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    padding: 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ==================== FINAL CTA SECTION ==================== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(212, 175, 55, 0.15) 50%, var(--primary-dark) 100%);
    border-top: 1px solid var(--gold-main);
    border-bottom: 1px solid var(--gold-main);
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 16px;
}

.final-cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.final-cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.final-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.final-benefit i {
    color: var(--gold-main);
}

.final-cta-price-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 24px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold-main);
    border-radius: var(--radius-lg);
}

.final-cta-price-badge .price-installment {
    font-size: 1rem;
    color: var(--text-muted);
}

.final-cta-price-badge .price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-main);
}

.final-cta-price-badge .price-or {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.final-cta-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.final-cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.final-cta-urgency i {
    color: var(--gold-main);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 40px 0;
    background: var(--primary-dark);
    border-top: 1px solid var(--primary-light);
}

.footer-content {
    text-align: center;
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-main);
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 8px;
}

.footer-copyright p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-dev {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--primary-light);
}

.footer-dev a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition-fast);
}

.footer-dev a:hover {
    color: var(--gold-main);
}

.footer-dev a strong {
    color: var(--gold-main);
}

/* ==================== FLOATING ELEMENTS ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.mobile-float-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    border-top: 1px solid var(--gold-main);
    padding: 12px 20px;
    z-index: 998;
}

.mobile-float-cta .btn-cta {
    width: 100%;
    font-size: 0.95rem;
    padding: 14px;
}

/* ==================== ANIMATIONS ==================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (min-width: 768px) {
    :root {
        --section-padding: 80px 0;
        --container-padding: 0 40px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-price-badge {
        flex-direction: row;
        gap: 16px;
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-content {
        flex-direction: row;
        align-items: center;
    }

    .solution-text,
    .solution-image {
        flex: 1;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .content-cards {
        flex: 1;
        grid-template-columns: 1fr;
    }

    .content-image {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .content-image .course-image {
        max-width: 100%;
        width: 800px;
        height: auto;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }

    .instructor-content {
        flex-direction: row;
        align-items: center;
    }

    .instructor-image,
    .instructor-text {
        flex: 1;
    }

    .instructor-credentials {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }

    .final-cta-benefits {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }
}

/* ==================== RESPONSIVE - DESKTOP ==================== */
@media (min-width: 1024px) {
    :root {
        --section-padding: 100px 0;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .problems-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .content-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - 14px);
    }

    .whatsapp-float {
        bottom: 30px;
    }
}

/* ==================== MOBILE SPECIFIC ==================== */
@media (max-width: 767px) {
    .mobile-float-cta {
        display: block;
    }

    .whatsapp-float {
        bottom: 80px;
    }

    .footer {
        padding-bottom: 90px;
    }

    .final-cta {
        padding-bottom: 100px;
    }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Focus states for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid var(--gold-main);
    outline-offset: 2px;
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .sticky-header,
    .whatsapp-float,
    .mobile-float-cta,
    .hero-scroll-indicator {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
