/* =========================================
   1. CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ========================================= */
:root {
    /* Paleta de Cores Dark Moderno */
    --bg-dark: #0f0c29;
    --bg-gradient: linear-gradient(135deg, #0b0d21 0%, #1a0b2e 100%);
    /* Cores de Destaque */
    --primary-green: #00ff88; /* Verde Neon Principal */
    --primary-green-hover: #00cc6a;
    --accent-purple: #7928ca;
    /* Vidro (Glassmorphism) */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    /* TIPOGRAFIA - ALTO CONTRASTE */
    --text-white: #ffffff; /* Branco Puro (Títulos) */
    --text-body: #f0f0f5; /* Branco Gelo (Texto corrido) */
    --text-secondary: #e0e0e0; /* Prata Claro (Subtítulos) */
}

/* Scrollbar Customizada (Toque Premium) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-green);
    }

/* Seleção de Texto */
::selection {
    background: var(--primary-green);
    color: #000;
}

body {
    background: var(--bg-gradient);
    color: var(--text-body);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    overflow-x: hidden; /* Evita rolagem horizontal nas animações */
    min-height: 100vh;
    line-height: 1.6;
}

section {
    position: relative;
    z-index: 1;
}

/* =========================================
   2. OVERRIDES DE CORES (TEXTOS CLAROS)
   ========================================= */
p {
    color: var(--text-body);
    font-weight: 300;
    opacity: 0.95;
}

.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

/* Títulos */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--primary-green);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

/* =========================================
   3. COMPONENTES (BOTÕES E CARDS)
   ========================================= */
/* Badge */
.pill-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-green);
    display: inline-block;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

/* Botões */
.btn-neon {
    background-color: var(--primary-green);
    color: #0b0d21;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    display: inline-block;
}

    .btn-neon:hover {
        background-color: var(--primary-green-hover);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
        color: #000;
    }

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

    .btn-glass:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: var(--text-white);
        color: var(--text-white);
        transform: translateY(-3px);
    }

/* Navbar */
.navbar-custom {
    padding: 20px 0;
    background: transparent;
    transition: background 0.3s;
}

    .navbar-custom.scrolled {
        background: rgba(11, 13, 33, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--glass-border);
    }

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
}

    .nav-link:hover {
        color: var(--primary-green) !important;
    }

.btn-login-nav {
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 8px 25px;
    color: var(--text-white);
    transition: 0.3s;
}

    .btn-login-nav:hover {
        border-color: var(--primary-green);
        color: var(--primary-green);
        background: rgba(0, 255, 136, 0.05);
    }

/* =========================================
   4. ANIMAÇÕES (KEYFRAMES)
   ========================================= */
/* Fade Up Simples */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Entrar da Esquerda */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Entrar da Direita */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Flutuar Suave */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Classes utilitárias de animação */
.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-left {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-right {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* =========================================
   5. PÁGINA HOME & CARDS
   ========================================= */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
}

.glass-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.feature-box {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    height: 100%;
}

    .feature-box:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-10px);
        border-color: var(--primary-green);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-green);
    font-size: 1.5rem;
}

/* =========================================
   6. PÁGINA SOBRE A PROFISSIONAL (MELHORADA)
   ========================================= */

/* Foto Hero */
.profile-hero-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    /* Sombra Dupla: uma preta suave e uma linha verde */
    box-shadow: -15px 15px 0 rgba(0,0,0,0.5), -15px 15px 0 2px var(--primary-green);
    transition: all 0.4s ease;
    animation: float 7s ease-in-out infinite; /* Foto flutua */
}

    .profile-hero-img:hover {
        transform: scale(1.02) translateY(-5px);
        box-shadow: -20px 20px 0 rgba(0,0,0,0.6), -20px 20px 0 2px var(--primary-green);
    }

/* Faixa de Stats */
.stats-strip {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 40px 0;
    margin: 60px 0;
}

.stat-item {
    transition: transform 0.3s;
}

    .stat-item:hover {
        transform: translateY(-5px);
    }

    .stat-item h3 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary-green);
        margin-bottom: 5px;
        text-shadow: 0 0 15px rgba(0,255,136,0.3); /* Neon glow */
    }

/* Timeline Vertical Avançada */
.timeline-section {
    position: relative;
    padding: 20px 0;
}

    /* Linha central com gradiente */
    .timeline-section::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.3) 15%, rgba(255,255,255,0.3) 85%, transparent 100%);
        transform: translateX(-50%);
    }

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    width: 50%;
    padding-right: 50px;
}

    /* Lado Direito (Par) */
    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-right: 0;
        padding-left: 50px;
        text-align: left;
    }
    /* Lado Esquerdo (Ímpar) */
    .timeline-item:nth-child(odd) {
        text-align: right;
    }

/* Bolinha da Timeline */
.timeline-dot {
    position: absolute;
    top: 5px;
    right: -11px;
    width: 22px;
    height: 22px;
    background: var(--bg-dark);
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-green); /* Brilho Neon */
    z-index: 2;
    transition: transform 0.3s;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -11px;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: var(--primary-green);
}

/* Conteúdo da Timeline */
.timeline-content {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.timeline-item:hover .timeline-content {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}

/* Responsivo para Celular */
@media (max-width: 768px) {
    .timeline-section::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
    }

        .timeline-item:nth-child(even) {
            margin-left: 0;
        }

    .timeline-dot {
        left: 9px !important;
        right: auto !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .profile-hero-img {
        margin-top: 40px;
        width: 80%;
    }
}

/* =========================================
   7. PREÇOS E FOOTER
   ========================================= */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

    .pricing-card:hover {
        border-color: rgba(255,255,255,0.3);
        transform: translateY(-5px);
    }

    .pricing-card.popular {
        background: rgba(121, 40, 202, 0.15);
        border: 1px solid var(--primary-green);
        transform: scale(1.05);
        z-index: 2;
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.15);
    }

.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-secondary) !important;
    list-style: none;
}

.pricing-features i {
    color: var(--primary-green);
    margin-right: 10px;
}

.footer-custom {
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(11, 13, 33, 0.95);
    padding: 60px 0 30px 0;
    color: var(--text-secondary);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 10px;
}

    .footer-link:hover {
        color: var(--primary-green);
        padding-left: 5px;
    }


/* =========================================
   PÁGINA SUPORTE: ACCORDION DARK
   ========================================= */

.accordion-custom .accordion-item {
    background: transparent;
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden; /* Garante que a borda arredondada funcione */
}

.accordion-custom .accordion-button {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    font-weight: 600;
    border: none;
    box-shadow: none !important; /* Remove o brilho azul padrão do Bootstrap */
    padding: 20px;
}

    .accordion-custom .accordion-button:not(.collapsed) {
        background: rgba(0, 255, 136, 0.1); /* Fundo verde transparente quando aberto */
        color: var(--primary-green);
        border-bottom: 1px solid var(--glass-border);
    }

    /* Ícone da setinha do accordion (Vira verde) */
    .accordion-custom .accordion-button::after {
        filter: invert(1) grayscale(100%) brightness(200%); /* Deixa branco */
        transition: 0.3s;
    }

    .accordion-custom .accordion-button:not(.collapsed)::after {
        filter: invert(56%) sepia(96%) saturate(357%) hue-rotate(87deg) brightness(120%) contrast(109%); /* Deixa verde neon */
    }

.accordion-custom .accordion-body {
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-secondary);
    padding: 20px;
    border-top: none;
}