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

:root {
    /* Cores Futuristas */
    --primary-dark: #0a0f1c;
    --secondary-dark: #1a1f2e;
    --accent-cyan: #00ffff;
    --accent-pink: #ff6b9d;
    --accent-purple: #8b5cf6;
    --accent-green: #00ff88;
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.8);
    --text-light: rgba(255, 255, 255, 0.6);
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #2a2f3e 100%);
    --gradient-accent: linear-gradient(135deg, #00ffff 0%, #8b5cf6 50%, #ff6b9d 100%);
    --gradient-text: linear-gradient(135deg, #00ffff 0%, #ff6b9d 100%);
    --gradient-green: linear-gradient(135deg, #00ff88 0%, #00ffff 100%);
    
    /* Sombras */
    --shadow-glow: 0 0 30px rgba(0, 255, 255, 0.3);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.3);
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
}

/* ===== HERO SECTION ESTILO PABLO MARÇAL ===== */
.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Fundo de Xadrez */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('chess-ai-hero.webp');
    background-size: 120% 120%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.95;
    z-index: 0;
    background: 
        url('chess-ai-hero.webp') center/120% 120%,
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 150, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(0, 255, 255, 0.05) 50%, transparent 60%);
    z-index: 1;
}

/* ===== HERO CONTAINER ===== */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 80vh;
    gap: 4rem;
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.hero-content {
    flex: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

/* ===== MENTORES NO TOPO DO CONTEÚDO ===== */
.mentors-showcase-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto 2rem;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
}

.mentor-top {
    width: 280px;
    height: auto;
    transition: var(--transition);
    opacity: 0.9; /* Leve transparência para melhorar a sobreposição */
}

.mentor-top:hover {
    transform: translateY(-10px) scale(1.05);
    opacity: 1;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    margin-top: 0;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.hero-title .highlight-text {
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight-accent {
    background: linear-gradient(135deg, #00ffff 0%, #ff0096 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.highlight-text {
    background: linear-gradient(135deg, #00ffff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-accent {
    background: linear-gradient(135deg, #ff0096 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
}

.accent-line {
    background: linear-gradient(135deg, #00ffff 0%, #ff0096 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: inline-block;
    position: relative;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
    background-clip: text;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(90deg, #00e1ff 0%, #9d4edd 50%, #ff6b9d 100%);
    color: white;
    padding: 1.4rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 30px rgba(0, 225, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    margin: 0 auto 2rem;
    text-align: center;
    cursor: pointer;
    width: auto;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 225, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.urgency-badge {
    background: rgba(40, 40, 60, 0.8);
    border: 1px solid #ff6b9d;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    color: #ff6b9d;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
    animation: pulse 2s infinite;
    margin: 0 auto;
    max-width: 90%;
}

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

/* Responsividade para mentores no topo */
@media (max-width: 1200px) {
    .mentors-showcase-top {
        gap: 1.5rem;
    }
    
    .mentor-top {
        width: 250px;
    }
    
    .hero-title {
        font-size: clamp(3rem, 7vw, 4.5rem);
    }
}

@media (max-width: 768px) {
    .mentors-showcase-top {
        gap: 1rem;
    }
    
    .mentor-top {
        width: 180px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .mentors-showcase-top {
        gap: 0.5rem;
    }
    
    .mentor-top {
        width: 120px;
    }
    
    .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.hero-cta::after {
    content: '→';
    font-size: 1.3rem;
    transition: var(--transition);
}

.hero-cta:hover::after {
    transform: translateX(5px);
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-pink);
    backdrop-filter: blur(10px);
}

/* ===== SEÇÕES GERAIS ===== */
.intro, .event-info, .modules, .testimonials, .final-cta {
    padding: 6rem 0;
}

.intro {
    background: var(--secondary-dark);
}

.intro h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.highlight-box {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

.highlight-box h3 {
    color: var(--accent-cyan);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: var(--text-white);
    font-size: 1.1rem;
}

/* ===== EVENT INFO ===== */
.event-info {
    background: var(--primary-dark);
}

.event-info h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 4rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-glow);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-card strong {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* ===== MODULES ===== */
.modules {
    background: var(--secondary-dark);
}

.modules h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modules-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

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

.module-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
}

.module-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-glow);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.module-icon {
    font-size: 2rem;
    color: var(--accent-cyan);
}

.module-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
}

.module-topics {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.topic h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topic ul {
    list-style: none;
    padding: 0;
}

.topic li {
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.topic li::before {
    content: '•';
    color: var(--accent-pink);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--primary-dark);
}

.testimonials h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.testimonial-text {
    font-size: 1.3rem;
    color: var(--text-white);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.testimonial-results {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-pink);
    display: block;
    line-height: 1;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.author-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--text-gray);
    font-size: 1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.5);
    color: var(--accent-cyan);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(0, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transform: scale(1.2);
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-cta p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(90deg, #00e1ff 0%, #9d4edd 50%, #ff6b9d 100%);
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(0, 225, 255, 0.6);
    text-transform: uppercase;
    margin: 0 auto;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--secondary-dark);
    text-align: center;
    padding: 6rem 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ===== CRONOGRAMA DO EVENTO ===== */
.schedule {
    background: var(--primary-dark);
    padding: 6rem 0;
}

.schedule h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.schedule-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(0, 255, 255, 0.5), rgba(255, 107, 157, 0.5));
}

.timeline-item {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-time {
    width: 120px;
    font-weight: 700;
    color: var(--accent-cyan);
    padding-right: 2rem;
    text-align: right;
    flex-shrink: 0;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-left: 2rem;
    flex-grow: 1;
    position: relative;
    transition: var(--transition);
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-glow);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* ===== PREÇO E CTA ===== */
.pricing-cta {
    background: var(--secondary-dark);
    padding: 6rem 0;
}

.pricing-box {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-tag {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-original {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ffff 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.price-installment {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.price-features {
    margin-bottom: 2.5rem;
    text-align: left;
    align-self: stretch;
}

.price-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-features ul {
    list-style: none;
    padding: 0;
}

.price-features li {
    color: var(--text-gray);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.1rem;
}

.guarantee {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.guarantee-icon {
    width: 40px;
    height: 40px;
}

.guarantee p {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== FAQ - PERGUNTAS FREQUENTES ===== */
.faq {
    background: var(--primary-dark);
    padding: 6rem 0;
}

.faq h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-glow);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-question {
    background: rgba(0, 255, 255, 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-results {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-avatar {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .mentor-highlight {
        width: 120px;
    }
}


/* Removido bloco duplicado de mentores */


.urgency-badge {
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 1rem;
    border: 2px solid var(--accent-pink);
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 157, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 157, 0);
    }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
  }
  
  .mentor-top {
    width: 150px;
  }
  
  .mentors-showcase-top {
    gap: 0.3rem;
    padding: 1.5rem 0.5rem;
  }
  
  .urgency-badge {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .mentor-top {
    width: 100px;
  }
  
  .hero-cta {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
}
