/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #1a1a1c;
    --bg-secondary: #232323;
    --bg-card: #2C2C2E;
    --bg-card-hover: #202022;
    --text-primary: #EAEAEA;
    --text-secondary: #FFFFFF;
    --text-muted: #9E9E9E;
    --accent: #4A90E2;
    --accent-hover: #50E3C2;
    --accent-secondary: #50E3C2;
    --accent-tertiary: #F5A623;
    --success: #2ECC71;
    --warning: #F5A623;
    --error: #E94E4E;
    --border: #3A3A3A;
    --border-light: #4A4A4A;
    --gradient-primary: linear-gradient(135deg, #4A90E2 0%, #50E3C2 100%);
    --gradient-secondary: linear-gradient(135deg, #F5A623 0%, #4A90E2 100%);
    --gradient-tertiary: linear-gradient(135deg, #2ECC71 0%, #50E3C2 100%);
    --gradient-impact: linear-gradient(135deg, #4A90E2 0%, #50E3C2 50%, #F5A623 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-accent: 0 4px 15px rgba(74, 144, 226, 0.3);
    --shadow-impact: 0 8px 25px rgba(74, 144, 226, 0.4);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #232323 0%, #1a1a1c 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 20, 147, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(74, 144, 226, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(0, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 20, 147, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particles-float 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(1px 1px at 50px 50px, rgba(0, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 100px 100px, rgba(255, 20, 147, 0.2), transparent),
        radial-gradient(1px 1px at 150px 150px, rgba(74, 144, 226, 0.2), transparent),
        radial-gradient(2px 2px at 200px 200px, rgba(0, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 250px 250px, rgba(255, 20, 147, 0.1), transparent);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: particles-drift 30s linear infinite reverse;
    pointer-events: none;
    z-index: 1;
}

@keyframes particles-float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-200px, -100px); }
}

@keyframes particles-drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-300px, -300px) rotate(360deg); }
}

/* Particles Container */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 4px;
    height: 4px;
    background: rgba(0, 255, 255, 0.6);
    top: 10%;
    left: 10%;
    animation: float-1 15s infinite linear;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.particle-2 {
    width: 2px;
    height: 2px;
    background: rgba(255, 20, 147, 0.7);
    top: 20%;
    left: 80%;
    animation: float-2 20s infinite linear;
    box-shadow: 0 0 8px rgba(255, 20, 147, 0.9);
}

.particle-3 {
    width: 3px;
    height: 3px;
    background: rgba(74, 144, 226, 0.5);
    top: 60%;
    left: 20%;
    animation: float-3 18s infinite linear;
    box-shadow: 0 0 6px rgba(74, 144, 226, 0.7);
}

.particle-4 {
    width: 5px;
    height: 5px;
    background: rgba(0, 255, 255, 0.4);
    top: 80%;
    left: 70%;
    animation: float-4 25s infinite linear;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
}

.particle-5 {
    width: 2px;
    height: 2px;
    background: rgba(255, 20, 147, 0.8);
    top: 30%;
    left: 50%;
    animation: float-5 12s infinite linear;
    box-shadow: 0 0 5px rgba(255, 20, 147, 1);
}

.particle-6 {
    width: 3px;
    height: 3px;
    background: rgba(74, 144, 226, 0.6);
    top: 70%;
    left: 90%;
    animation: float-6 22s infinite linear;
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.8);
}

.particle-7 {
    width: 4px;
    height: 4px;
    background: rgba(0, 255, 255, 0.5);
    top: 40%;
    left: 30%;
    animation: float-7 16s infinite linear;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.particle-8 {
    width: 2px;
    height: 2px;
    background: rgba(255, 20, 147, 0.6);
    top: 90%;
    left: 40%;
    animation: float-8 14s infinite linear;
    box-shadow: 0 0 6px rgba(255, 20, 147, 0.8);
}

.particle-9 {
    width: 3px;
    height: 3px;
    background: rgba(74, 144, 226, 0.7);
    top: 15%;
    left: 60%;
    animation: float-9 19s infinite linear;
    box-shadow: 0 0 9px rgba(74, 144, 226, 0.9);
}

.particle-10 {
    width: 5px;
    height: 5px;
    background: rgba(0, 255, 255, 0.3);
    top: 50%;
    left: 5%;
    animation: float-10 28s infinite linear;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

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

/* Header */
.header {
    background: rgba(26, 26, 28, 0.95);
    backdrop-filter: blur(25px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-impact);
    position: relative;
    z-index: 10;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-impact);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -5px;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.3));
}

.logo span {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-impact);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.5);
}

.main-nav a:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(13, 13, 35, 0.95) 50%, rgba(0, 0, 0, 0.9) 100%),
        radial-gradient(circle at 25% 25%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.03) 50%, transparent 70%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(0, 255, 255, 0.03) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(255, 20, 147, 0.02) 100px
        );
    animation: cyber-grid 15s linear infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(74, 144, 226, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 20, 147, 0.08) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    animation: cyber-particles 25s linear infinite;
    pointer-events: none;
}

@keyframes cyber-grid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

@keyframes cyber-particles {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-100px, -100px) rotate(360deg); }
}

@keyframes subtle-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 10;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cyber-pattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes cyber-lines {
    0% { transform: translateX(0); }
    100% { transform: translateX(46px); }
}

@keyframes cyber-mesh {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 25px) scale(1.05); }
    100% { transform: translate(0, 0) scale(1); }
}

@keyframes cyber-spiral {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes cyber-waves {
    0% { transform: translate(0, 0); }
    50% { transform: translate(40px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes cyber-matrix {
    0% { transform: translate(0, 0); }
    100% { transform: translate(34px, 34px); }
}

/* Particle Animations */
@keyframes float-1 {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    25% { transform: translate(100px, -50px) rotate(90deg); opacity: 1; }
    50% { transform: translate(200px, 50px) rotate(180deg); opacity: 0.4; }
    75% { transform: translate(300px, -30px) rotate(270deg); opacity: 0.8; }
    100% { transform: translate(400px, 0) rotate(360deg); opacity: 0.6; }
}

@keyframes float-2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    33% { transform: translate(-150px, 100px) scale(1.2); opacity: 0.3; }
    66% { transform: translate(-300px, -80px) scale(0.8); opacity: 0.9; }
    100% { transform: translate(-450px, 50px) scale(1); opacity: 0.7; }
}

@keyframes float-3 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.5; }
    20% { transform: translate(80px, -120px) rotate(72deg) scale(1.3); opacity: 0.8; }
    40% { transform: translate(160px, 60px) rotate(144deg) scale(0.7); opacity: 0.3; }
    60% { transform: translate(240px, -90px) rotate(216deg) scale(1.1); opacity: 0.6; }
    80% { transform: translate(320px, 30px) rotate(288deg) scale(0.9); opacity: 0.9; }
    100% { transform: translate(400px, -60px) rotate(360deg) scale(1); opacity: 0.5; }
}

@keyframes float-4 {
    0% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(-200px, -200px); opacity: 0.8; }
    100% { transform: translate(-400px, -400px); opacity: 0.4; }
}

@keyframes float-5 {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
    25% { transform: translate(120px, 80px) rotate(90deg); opacity: 0.4; }
    50% { transform: translate(240px, -40px) rotate(180deg); opacity: 1; }
    75% { transform: translate(360px, 120px) rotate(270deg); opacity: 0.6; }
    100% { transform: translate(480px, 0) rotate(360deg); opacity: 0.8; }
}

@keyframes float-6 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    30% { transform: translate(-100px, -150px) scale(1.4); opacity: 0.2; }
    60% { transform: translate(-200px, 100px) scale(0.6); opacity: 0.9; }
    100% { transform: translate(-300px, -50px) scale(1); opacity: 0.6; }
}

@keyframes float-7 {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
    40% { transform: translate(150px, -100px) rotate(144deg); opacity: 0.8; }
    80% { transform: translate(300px, 80px) rotate(288deg); opacity: 0.3; }
    100% { transform: translate(450px, -40px) rotate(360deg); opacity: 0.5; }
}

@keyframes float-8 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(90px, -200px) scale(1.2); opacity: 0.9; }
    50% { transform: translate(180px, 50px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(270px, -150px) scale(1.1); opacity: 0.7; }
    100% { transform: translate(360px, 0) scale(1); opacity: 0.6; }
}

@keyframes float-9 {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.7; }
    33% { transform: translate(130px, 120px) rotate(120deg) scale(1.3); opacity: 0.3; }
    66% { transform: translate(260px, -80px) rotate(240deg) scale(0.7); opacity: 1; }
    100% { transform: translate(390px, 40px) rotate(360deg) scale(1); opacity: 0.7; }
}

@keyframes float-10 {
    0% { transform: translate(0, 0); opacity: 0.3; }
    20% { transform: translate(100px, -100px); opacity: 0.6; }
    40% { transform: translate(200px, 50px); opacity: 0.2; }
    60% { transform: translate(300px, -150px); opacity: 0.8; }
    80% { transform: translate(400px, 75px); opacity: 0.4; }
    100% { transform: translate(500px, -25px); opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-title .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    margin-top: 2rem;
}

.urgency-text {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--accent-tertiary);
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--border-radius-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-impact);
    color: var(--text-secondary);
    box-shadow: var(--shadow-impact);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-cta {
    background: var(--gradient-secondary);
    color: white;
    font-size: 1.4rem;
    padding: 1.5rem 4rem;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    animation: pulse 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

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

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works */
.how-it-works {
    background: 
        linear-gradient(135deg, rgba(13, 13, 35, 0.95) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(13, 13, 35, 0.95) 100%),
        radial-gradient(circle at 80% 20%, rgba(255, 20, 147, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.06) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(74, 144, 226, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255, 20, 147, 0.02) 50%, transparent 51%);
    background-size: 60px 60px;
    animation: cyber-pattern 20s linear infinite;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        var(--shadow-lg),
        0 0 20px rgba(74, 144, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(74, 144, 226, 0.5);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Journey */
.journey {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(13, 13, 35, 0.9) 100%),
        radial-gradient(circle at 30% 70%, rgba(74, 144, 226, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(255, 20, 147, 0.08) 0%, transparent 60%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(0, 255, 255, 0.02) 42px,
            rgba(0, 255, 255, 0.02) 44px,
            transparent 46px
        );
    animation: cyber-lines 12s linear infinite;
    pointer-events: none;
}

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

.step {
    background: var(--bg-card);
    background-image: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(239, 68, 68, 0.05) 100%);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-tertiary);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
}

.step h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Mentors */
.mentors {
    background: 
        linear-gradient(135deg, rgba(13, 13, 35, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%),
        radial-gradient(circle at 50% 50%, rgba(74, 144, 226, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 0% 100%, rgba(255, 20, 147, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(0, 255, 255, 0.04) 0%, transparent 50%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mentors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(0deg, transparent 30%, rgba(74, 144, 226, 0.01) 50%, transparent 70%),
        linear-gradient(90deg, transparent 30%, rgba(255, 20, 147, 0.01) 50%, transparent 70%);
    background-size: 100px 100px;
    animation: cyber-mesh 18s ease-in-out infinite;
    pointer-events: none;
}

.mentors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mentor-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.mentor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transition: left 0.5s ease;
}

.mentor-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        var(--shadow-lg),
        0 0 30px rgba(255, 20, 147, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 20, 147, 0.7);
}

.mentor-card:hover::before {
    left: 100%;
}

.mentor-image {
    margin-bottom: 1.5rem;
}

.mentor-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    transition: all 0.3s ease;
    object-fit: cover;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.circular-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    transition: all 0.3s ease;
    object-fit: cover;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.mentor-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.mentor-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.mentor-features {
    list-style: none;
    text-align: left;
}

.mentor-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.mentor-features li::before {
    content: "✓";
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(13, 13, 35, 0.95) 50%, rgba(0, 0, 0, 0.9) 100%),
        radial-gradient(circle at 25% 75%, rgba(255, 20, 147, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 75% 25%, rgba(0, 255, 255, 0.08) 0%, transparent 60%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            rgba(74, 144, 226, 0.02) 45deg,
            transparent 90deg,
            rgba(255, 20, 147, 0.02) 135deg,
            transparent 180deg
        );
    background-size: 200px 200px;
    animation: cyber-spiral 30s linear infinite;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Layout vertical para vídeos e depoimentos */
.video-testimonials {
    margin-bottom: 4rem;
}

.written-testimonials {
    margin-top: 2rem;
}

.video-testimonials h3,
.written-testimonials h3 {
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.video-grid {
    display: grid;
    gap: 2rem;
}

/* Novo layout em linha para vídeos */
.video-grid-inline {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.video-testimonial {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    flex: 1;
    max-width: 400px;
    min-width: 300px;
}

.video-testimonial:hover {
    transform: translateY(-5px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Novo container para vídeos quadrados 1:1 */
.video-container-square {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Fallback para aspect-ratio 1:1 */
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    background: #000;
}

.video-container-square video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
}

.video-testimonial h4 {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.video-testimonial p {
    color: var(--text-muted);
    font-style: italic;
}

.testimonial-cards {
    display: grid;
    gap: 2rem;
}

/* Novo layout em linha para depoimentos escritos */
.testimonial-cards-inline {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    max-width: 450px;
    min-width: 350px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-impact);
}

.stars {
    color: var(--accent-tertiary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.author {
    display: flex;
    flex-direction: column;
}

.author strong {
    color: var(--accent);
    font-size: 1.1rem;
}

.author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-testimonials,
    .written-testimonials {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .video-grid-inline,
    .testimonial-cards-inline {
        flex-direction: column;
        align-items: center;
    }
    
    .video-testimonial,
    .testimonial-card {
        max-width: 100%;
        min-width: auto;
    }
    
    /* Ajustes específicos para vídeos no mobile */
    .video-testimonial {
        max-width: 300px;
        padding: 1rem;
    }
    
    .video-container-square {
        max-width: 280px;
        margin: 0 auto 1rem;
        padding-bottom: 280px; /* Altura fixa menor para mobile */
        aspect-ratio: 1 / 1;
    }
    
    .video-testimonial h4 {
        font-size: 1rem;
    }
    
    .video-testimonial p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .written-testimonials {
        margin-top: 1rem;
    }
}

/* Ajustes para telas menores que 480px (celulares pequenos) */
@media (max-width: 480px) {
    .video-testimonial {
        max-width: 250px;
        padding: 0.8rem;
    }
    
    .video-container-square {
        max-width: 220px;
        padding-bottom: 220px; /* Ainda menor para celulares pequenos */
    }
    
    .video-testimonials h3,
    .written-testimonials h3 {
        font-size: 1.2rem;
    }
}

/* International */
.international {
    background: 
        linear-gradient(135deg, rgba(13, 13, 35, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%),
        radial-gradient(circle at 40% 60%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(255, 20, 147, 0.06) 0%, transparent 50%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.international::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(30deg, transparent 48%, rgba(0, 255, 255, 0.02) 50%, transparent 52%),
        linear-gradient(150deg, transparent 48%, rgba(255, 20, 147, 0.02) 50%, transparent 52%);
    background-size: 80px 80px;
    animation: cyber-waves 16s ease-in-out infinite;
    pointer-events: none;
}

.international .section-title,
.international .section-description {
    color: white;
}

/* Pricing */
.pricing {
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(13, 13, 35, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%),
        radial-gradient(circle at 50% 0%, rgba(74, 144, 226, 0.12) 0%, transparent 70%),
        radial-gradient(circle at 0% 50%, rgba(255, 20, 147, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, rgba(0, 255, 255, 0.06) 0%, transparent 50%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 30px,
            rgba(74, 144, 226, 0.02) 32px,
            transparent 34px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 30px,
            rgba(255, 20, 147, 0.02) 32px,
            transparent 34px
        );
    animation: cyber-matrix 14s linear infinite;
    pointer-events: none;
}

.pricing-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.pricing-features li i {
    display: none;
}

.pricing-value {
    margin: 2rem 0;
}

.old-price {
    display: block;
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.new-price {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.installment {
    display: block;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-note {
    margin: 2rem 0;
    color: var(--text-secondary);
    font-style: italic;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.mercha-section {
    margin: 2rem 0;
}

.mercha-card {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    border: 1px solid var(--border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
}

.mercha-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mercha-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .mentors-grid {
        grid-template-columns: 1fr;
    }
    
    .mentors-grid {
        gap: 2rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .btn-cta {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .step,
    .mentor-card {
        padding: 1.5rem;
    }
}