/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #C9A962;
    --primary-dark: #B8944A;
    --secondary: #1A1A2E;
    --dark: #0F0F1A;
    --light: #ffffff;
    --gray: #9CA3AF;
    --gray-light: #1F2937;
    --gray-dark: #E5E7EB;
    --accent: #D4AF37;
    --gradient: linear-gradient(135deg, #C9A962 0%, #D4AF37 100%);
    --bg-dark: #0F0F1A;
    --bg-section: #1A1A2E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--light);
    background: var(--bg-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 0 0 80px;
    background: linear-gradient(180deg, rgba(15, 15, 26, 0.3) 0%, rgba(26, 26, 46, 0.4) 100%), url('fundo.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    right: -5%;
    bottom: 0;
    width: 45%;
    max-width: 600px;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-image img {
    width: 100%;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 350px;
    height: auto;
    margin-top: -100px;
    margin-bottom: -150px;
    margin-left: 70px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-video {
    flex: 1;
    width: 100%;
}

@media (min-width: 992px) {
    .hero {
        text-align: left;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    
    .hero-text {
        flex: 1;
    }
    
    .hero-video {
        flex: 1;
    }
    
    .hero-title {
        margin: 0 0 25px;
        max-width: 100%;
    }
    
    .hero-subtitle {
        margin: 0 0 40px;
        max-width: 100%;
    }
    
    .hero-video .video-container {
        max-width: 100%;
        margin: 0;
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(216, 167, 77, 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 25px;
    color: var(--light);
}

.highlight {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#vsl-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.unmute-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: pulseBtn 2s infinite;
}

.unmute-btn:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateX(-50%) scale(1.05);
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.2s ease;
}

.play-button-overlay:hover {
    opacity: 0.85;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(216, 167, 77, 0.5);
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.btn-cta-main:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(216, 167, 77, 0.4);
}

.btn-cta-main.large {
    padding: 22px 50px;
    font-size: 1.1rem;
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-cta-main:hover .arrow {
    transform: translateX(5px);
}

/* Subheadline Section */
.subheadline {
    padding: 80px 0;
    background: var(--bg-section);
}

.subheadline-box {
    text-align: center;
}

.subheadline h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--light);
}

.results-image {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.festival-badge {
    background: var(--primary);
    color: var(--dark);
    padding: 30px 50px;
    border-radius: 15px;
    display: inline-block;
}

.festival-badge span {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.festival-badge p {
    font-size: 1rem;
    font-weight: 500;
}

/* Promise Section */
.promise {
    padding: 80px 0;
    background: var(--bg-section);
}

.promise-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.promise h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 25px;
    color: var(--light);
}

.promise-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.promise-highlight {
    font-size: 1.1rem;
    color: var(--light);
    background: rgba(216, 167, 77, 0.15);
    padding: 20px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary);
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(15, 15, 26, 0.85) 0%, rgba(26, 26, 46, 0.85) 100%), url('grade.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--primary));
}

.problem-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-badge {
    display: inline-block;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.4;
    color: var(--light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 26, 0.9) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 169, 98, 0.1);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--gray);
    transition: all 0.4s ease;
}

.problem-card:hover .problem-icon-wrapper {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
    color: var(--primary);
    transform: scale(1.05);
}

.problem-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.problem-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--light);
    line-height: 1.4;
}

.problem-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

.problem-line {
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.3), transparent);
}

.result-box {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.result-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dark);
}

.result-content {
    flex: 1;
    text-align: left;
}

.result-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--light);
}

.result-content p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
}

.result-cta {
    background: var(--primary);
    color: var(--dark);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

/* Stories Section */
.stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #0F0F1A 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-section);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1.05rem;
    color: var(--gray);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--dark);
    font-size: 1.4rem;
}

.author-avatar-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1rem;
    color: var(--light);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Plan Section */
.plan {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.85) 0%, rgba(15, 15, 26, 0.85) 100%), url('grade.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray-light);
    border: 2px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--dark);
}

.modules-carousel {
    flex: 1;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.module-card {
    min-width: calc(33.333% - 14px);
    background: linear-gradient(145deg, var(--gray-light) 0%, rgba(31, 41, 55, 0.8) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.module-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0 auto 20px;
}

.module-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 12px;
}

.module-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.module-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
}

.module-content ul {
    list-style: none;
}

.module-content li {
    font-size: 0.95rem;
    color: var(--gray);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.module-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* For Who Section */
.for-who {
    padding: 80px 0;
    background: var(--bg-section);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.for-who-card {
    background: var(--bg-dark);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.for-who-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.for-who-card > * {
    position: relative;
    z-index: 1;
}

.for-who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.for-who-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light);
}

.for-who-card p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 12px 30px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background: var(--dark);
    color: var(--light);
}

.target-audience .section-title {
    color: var(--light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: -30px;
    margin-bottom: 50px;
}

.audience-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--gray-light);
    border-radius: 15px;
    padding: 25px 30px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.audience-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.audience-check {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
    flex-shrink: 0;
}

.audience-item p {
    font-size: 1.1rem;
    color: var(--light);
    margin: 0;
    line-height: 1.5;
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background: var(--bg-dark);
}

.bonus-carousel-wrapper {
    position: relative;
}

.bonus-carousel-btn {
    display: none;
}

.bonus-dots {
    display: none;
}

.bonus-nav {
    display: none;
}

.bonus-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: -10px;
    margin-bottom: 50px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bonus-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(216, 167, 77, 0.15);
}

.bonus-header {
    text-align: center;
    margin-bottom: 10px;
}

.bonus-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 98, 0.15);
    border-radius: 50%;
    color: var(--primary);
    margin: 0 auto 20px;
}

.bonus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 18px;
    color: var(--primary);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.bonus-card:hover .bonus-icon {
    background: rgba(201, 169, 98, 0.2);
    transform: scale(1.05);
}

.bonus-tag {
    display: inline-block;
    background: rgba(201, 169, 98, 0.15);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--light);
}

.bonus-highlight {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.bonus-list {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
}

.bonus-list li {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.bonus-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.bonus-quote {
    font-size: 0.9rem;
    color: var(--primary);
    font-style: italic;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    width: 100%;
}

.bonus-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Instructor Section */
.instructor {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(15, 15, 26, 0.85) 100%), url('grade.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.instructor-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.instructor-photo {
    width: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instructor-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.photo-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.5;
}

.instructor-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.instructor-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--light);
}

.instructor-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.instructor-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat span {
    font-size: 0.95rem;
    color: var(--gray);
}

/* Media Section */
.media {
    padding: 60px 0;
    background: var(--bg-section);
}

.media-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.media-logo {
    font-size: 1.5rem;
    color: var(--gray);
    padding: 20px 30px;
    background: var(--gray-light);
    border-radius: 10px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-section);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(216, 167, 77, 0.1);
}

.faq-question span:first-child {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--light);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 300;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: var(--bg-section);
}

.guarantee-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #1A1A2E 0%, #0F0F1A 100%);
    border: 3px solid var(--primary);
    border-radius: 25px;
    padding: 50px;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.guarantee-box h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--light);
}

.guarantee-box p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

.guarantee-simple {
    font-weight: 700;
    color: var(--primary) !important;
    margin-top: 15px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(216, 167, 77, 0.2);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 20px;
}

.cta-limited {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 35px;
}

/* Final Section */
.final {
    padding: 80px 0;
    background: var(--primary);
    text-align: center;
}

.final-content {
    max-width: 700px;
    margin: 0 auto;
}

.final h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.final p {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.final-highlight {
    font-size: 1.2rem;
    margin-top: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    color: var(--dark);
    font-weight: 400;
}

.logo-text strong {
    font-weight: 800;
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--dark);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer .logo-text {
    color: var(--light);
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
}

.footer-owner {
    color: var(--light);
    font-size: 1rem;
}

.footer-owner strong {
    color: var(--primary);
}

.footer p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .module-card {
        min-width: calc(50% - 10px);
    }
    
    .result-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 25px;
    }
    
    .result-content {
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .for-who-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instructor-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .instructor-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .instructor-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-bg-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 30px;
    }
    
    .hero-bg-image img {
        opacity: 1;
    }
    
    .hero-logo {
        margin-left: 0;
        margin-top: -80px;
        margin-bottom: -100px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .module-card {
        min-width: 80%;
        padding: 20px;
    }
    
    .module-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .modules-carousel {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .carousel-track {
        scroll-snap-align: start;
    }
    
    .module-card {
        scroll-snap-align: center;
    }
    
    .bonus-carousel-wrapper {
        overflow: hidden;
    }

    .bonus-grid {
        display: flex !important;
        grid-template-columns: none;
        gap: 0;
        transition: transform 0.4s ease;
    }
    
    .bonus-card {
        min-width: 100% !important;
        width: 100% !important;
        flex-shrink: 0;
        padding: 25px 15px;
        box-sizing: border-box;
        opacity: 1 !important;
        transform: none !important;
    }

    .bonus-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-top: 25px;
    }

    .bonus-carousel-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid var(--primary);
        background: rgba(15, 15, 26, 0.8);
        color: var(--primary);
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .bonus-carousel-btn:active {
        background: var(--primary);
        color: var(--dark);
    }

    .bonus-dots {
        display: flex;
        gap: 10px;
    }

    .bonus-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(201, 169, 98, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .bonus-dot.active {
        background: var(--primary);
        transform: scale(1.3);
    }
    
    .audience-item {
        padding: 20px;
    }
    
    .audience-item p {
        font-size: 1rem;
    }
    
    .btn-cta-main.large {
        padding: 18px 30px;
        font-size: 0.95rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn-cta-main {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
}

/* ===== Modal Popup ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--light);
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.modal-header h2 {
    color: var(--light);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.modal-options {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.modal-option {
    flex: 1;
    background: var(--secondary);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.modal-option:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.option-icon {
    font-size: 2.2rem;
}

.option-label {
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Formulário */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input {
    background: var(--secondary);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--light);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input::placeholder {
    color: var(--gray);
}

.form-group input:focus {
    border-color: var(--primary);
}

.modal-submit {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 8px;
}

.success-icon {
    animation: bounceIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 480px) {
    .modal-box {
        padding: 32px 24px;
    }
    .modal-options {
        flex-direction: column;
    }
}
