/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Variáveis de cores */
:root {
    --primary-green: #00d4aa;
    --secondary-green: #00b894;
    --dark-green: #008f6b;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-gray: #f8f9fa;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --accent-blue: #00b4d8;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.logo h2 {
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Mobile menu toggle - sempre visível */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    z-index: 1000;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 180, 148, 0.1) 0%, transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.title-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--dark-bg);
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
    background: var(--secondary-green);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-green);
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

/* Hero Visuals */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ai-brain {
    font-size: 15rem;
    color: var(--primary-green);
    opacity: 0.1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    background: rgba(0, 212, 170, 0.2);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid var(--primary-green);
    animation: float 5s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

.element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.element-2 { top: 60%; right: 20%; animation-delay: 0.5s; }
.element-3 { bottom: 30%; left: 20%; animation-delay: 1s; }
.element-4 { top: 40%; right: 10%; animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Curso Section */
.curso {
    padding: 80px 0;
    background: var(--darker-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.curso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.curso-card {
    background: #111;
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.curso-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 40%);
    transition: transform 0.5s ease;
    transform: scale(0);
}

.curso-card:hover::before {
    transform: scale(1);
}

.curso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.curso-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: inline-block;
    background: -webkit-linear-gradient(45deg, var(--primary-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.curso-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.curso-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Benefícios Section */
.beneficios {
    padding: 80px 0;
    background: var(--dark-bg);
}

.beneficios-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.beneficios-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.beneficio-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.beneficio-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 5px;
}

.beneficio-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.beneficio-item p {
    color: var(--text-gray);
}

.beneficios-card {
    background: #111;
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 95%);
}

.beneficios-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.05) 0%, transparent 30%);
    transform: rotate(45deg);
}

.card-header h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.card-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-gray);
    display: block;
    margin-bottom: 0.5rem;
}

.price-new {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
}

.price-installments {
    font-size: 1rem;
    color: var(--text-white);
    display: block;
    margin-top: 0.5rem;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-features i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Nossa Missão Section */
.missao {
    padding: 80px 0;
    background: var(--darker-bg);
    position: relative;
}

.missao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 170, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 180, 148, 0.05) 0%, transparent 50%);
}

.missao .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.missao .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.missao .section-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.missao .section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.missao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.missao-card {
    background: var(--dark-bg);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.missao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.missao-card:hover::before {
    transform: scaleX(1);
}

.missao-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15);
}

.missao-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.missao-card:hover .missao-icon {
    transform: scale(1.1) rotate(5deg);
}

.missao-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.missao-card h5 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-style: italic;
}

.missao-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Instrutor Section */
.instrutor {
    padding: 80px 0;
    background: var(--darker-bg);
}

.instrutor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.instrutor-image {
    display: flex;
    justify-content: center;
}

.instrutor-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    position: relative;
    border: 5px solid var(--primary-green);
    overflow: hidden;
}

.instrutor-photo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0%, var(--primary-green) 50%, transparent 100%);
    animation: rotate 5s linear infinite;
    transform: translate(-50%, -50%);
}

.instrutor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.instrutor-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.instrutor-info h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.instrutor-title {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.instrutor-bio {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.instrutor-stats {
    display: flex;
    gap: 2rem;
}

.instrutor-stat {
    text-align: center;
}
.instrutor-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
}
.instrutor-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

@keyframes rotate {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--dark-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}


/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 212, 170, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    text-decoration: none;
    color: var(--text-gray);
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: var(--primary-green);
}
.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--text-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0, 212, 170, 0.1);
    padding-top: 2rem;
    color: var(--text-gray);
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .nav-container { padding: 1rem; }
    .hero-container, .beneficios-content, .instrutor-content { grid-template-columns: 1fr; }
    .hero-visual { margin-top: 3rem; }
    .beneficios-card { margin-top: 2rem; }
    .instrutor-image { margin-bottom: 2rem; }
    .missao-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* Header e navegação */
    .header {
        position: relative;
    }
    
    .nav-container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }
    
    /* Mostrar toggle em mobile - GARANTIDO */
    .nav-toggle {
        display: flex !important; /* Força a exibição */
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        z-index: 1001; /* Z-index mais alto */
    }
    
    .nav-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: white;
        margin: 2px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Esconder menu de desktop e preparar menu mobile */
    .nav-menu {
        display: none !important; /* Esconde por padrão */
        position: absolute;
        top: 100%; /* Abaixo do header */
        left: 0;
        right: 0;
        width: 100%;
        background: #1a1a1a;
        flex-direction: column;
        padding: 0;
        margin: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        z-index: 1000;
        border-top: 1px solid rgba(0,212,170,0.1);
    }
    
    /* REGRA CRÍTICA: Mostrar menu quando a classe 'active' está presente */
    .nav-menu.active {
        display: flex !important; /* Mostra o menu */
    }
    
    /* Estilos dos itens do menu */
    .nav-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        color: white;
        text-decoration: none;
        font-weight: 500;
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .nav-menu li a:hover {
        background: rgba(0,212,170,0.2);
        color: #00d4aa;
    }
    
    /* Animações do toggle */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Ajustes gerais de layout para mobile */
    .hero-container, .beneficios-content, .instrutor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-cta, .hero-stats, .instrutor-stats, .social-links {
        justify-content: center;
    }
    .curso-grid, .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .title-main { font-size: 2.5rem; }
    .title-sub { font-size: 2rem; }
    
    /* Ajustes para seção Nossa Missão */
    .missao .section-header h2 { font-size: 2rem; }
    .missao .section-header h3 { font-size: 1.5rem; }
    .missao .section-header p { font-size: 1rem; }
    .missao-card { padding: 1.5rem; }
    .missao-icon { width: 60px; height: 60px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2.2rem;
    }
    .title-sub {
        font-size: 1.8rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Ajustes para seção Nossa Missão em telas muito pequenas */
    .missao .section-header h2 { font-size: 1.8rem; }
    .missao .section-header h3 { font-size: 1.3rem; }
    .missao-card { padding: 1rem; }
    .missao-card h4 { font-size: 1.3rem; }
    .missao-card h5 { font-size: 0.9rem; }
    .missao-card p { font-size: 0.9rem; }
}
