* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0f1e2e;   /* Cor Escura */
    --bg-secondary: #1a2942; /* Cor Acinzentada */
    --text-primary: #E6F1FF;
    --accent-cyan: #00F6FF;
    --accent-yellow: #FFD700;
    --accent-pink: #FF1493;
    --card-bg: #1e3247;      /* Cor Acinzentada (para carrossel) */
    --success: #39FF14;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Header Fixo */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 30, 46, 0.9); 
    z-index: 1000;
    padding: 1.2rem 3rem;
    border-bottom: 1px solid rgba(0, 246, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    mix-blend-mode: lighten;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo .neuro {
    color: var(--accent-cyan);
}

.logo .race {
    color: var(--accent-yellow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-vote-header {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    display: none; 
}

.btn-vote-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.6);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

/* ATUALIZADO: Regra para o link de menu ativo */
.nav-links a.active {
    color: var(--accent-cyan);
    font-weight: 700;
}


/* Menu Hamburger Mobile - ATUALIZADO: SEM BRILHO NEON */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    line-height: 0;
}

.menu-toggle img {
    filter: none;
    transition: opacity 0.3s;
    width: 30px;
    height: 30px;
}

.menu-toggle:hover img {
    filter: none;
    opacity: 0.8;
}

.menu-toggle span {
   display: none; 
}

/* Botão de Fechar Mobile */
.menu-close-btn {
    display: none;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1;
    z-index: 1002;
}

/* --- BANNER DE VOTAÇÃO --- */
.promo-banner {
    width: 100%;
    margin-top: 100px; 
    padding: 1.5rem 2rem;
    background: linear-gradient(90deg, var(--card-bg), #0f1e2e);
    border-top: 1px solid var(--accent-pink);
    border-bottom: 1px solid var(--accent-pink);
    text-align: center;
}

.promo-banner p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.banner-button {
    background: #CCCCCC;
    color: var(--bg-primary); 
    border: 1px solid var(--card-bg);
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.banner-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(204, 204, 204, 0.5);
    background: transparent;
    color: #CCCCCC;
}
/* --- FIM DO BANNER --- */


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 3rem 3rem;
    position: relative;
    background-color: var(--bg-primary);
    padding-top: 0;
    min-height: calc(100vh - 100px);
}

body:has(.promo-banner) .hero {
    padding-top: 3rem;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.btn-vote-hero {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.5);
    transition: all 0.3s;
}

.btn-vote-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 20, 147, 0.7);
}

.hero h1 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 1.05;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero h1 .onde-sua-mente {
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 0.2rem;
}

.hero h1 .e-o {
    color: var(--text-primary);
}

.hero h1 .controle {
    color: var(--accent-yellow);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(230, 241, 255, 0.8);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-mascot {
    width: 100%;
    max-width: 450px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    mix-blend-mode: lighten;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- ATUALIZAÇÃO: Carrossel de Frases --- */
.quotes-carousel {
    background: var(--bg-secondary);
    padding: 3rem 2rem 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    position: relative;
    overflow: hidden;
}

.quote-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.animated-quote-tag {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    background-color: rgba(0, 246, 255, 0.05);
    border: 2px solid rgba(200, 200, 200, 0.3); 
    color: var(--accent-cyan);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    font-style: italic;
    transition: all 0.3s ease-in-out;
    position: absolute;
}

/* Animações de entrada e saída horizontal */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100%) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideOutLeft {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(-100%) scale(0.9); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-100%) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideOutRight {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(100%) scale(0.9); }
}

.animated-quote-tag.entering-right {
    animation: slideInRight 0.8s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animated-quote-tag.entering-left {
    animation: slideInLeft 0.8s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.animated-quote-tag.leaving-left {
    animation: slideOutLeft 0.8s forwards cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.animated-quote-tag.leaving-right {
    animation: slideOutRight 0.8s forwards cubic-bezier(0.55, 0.085, 0.68, 0.53);
}


/* Bolinhas de navegação */
.quote-indicators {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(200, 200, 200, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background-color: var(--accent-cyan);
    transform: scale(1.2);
}
/* --- FIM ATUALIZAÇÃO: Carrossel de Frases --- */


/* Section Conceito */
.section-conceito {
    background: var(--bg-primary); 
    padding: 6rem 3rem;
    text-align: center;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-title .o-conceito {
    color: var(--accent-cyan);
}

.section-title .neurorace {
    color: var(--accent-yellow);
}

.conceito-description {
    font-size: 1.2rem;
    color: rgba(230, 241, 255, 0.8);
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.conceito-highlight {
    font-weight: 700;
}

.conceito-highlight.neuro {
    color: var(--accent-pink);
}

.conceito-highlight.neurosky {
    color: var(--accent-pink);
}

.conceito-highlight.tech {
    color: var(--accent-yellow);
}

.conceito-highlight.game {
    color: var(--accent-cyan);
}

/* Hashtags Section */
.hashtags-section {
    background: var(--bg-secondary);
    padding: 4rem 3rem;
    text-align: center;
}

.hashtags-container {
    max-width: 1000px;
    margin: 0 auto;
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.hashtag {
    background: rgba(0, 246, 255, 0.1);
    color: var(--accent-cyan);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid var(--accent-cyan);
    transition: all 0.3s;
}

.hashtag:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}

.hashtag.pink {
    color: var(--accent-pink);
    border-color: var(--accent-pink);
    background: rgba(255, 20, 147, 0.1);
}

.hashtag.pink:hover {
    background: var(--accent-pink);
    color: #fff;
}

.hashtag.yellow {
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    background: rgba(255, 215, 0, 0.1);
}

.hashtag.yellow:hover {
    background: var(--accent-yellow);
    color: var(--bg-primary);
}

/* "Já jogou?" Section */
#como-funciona {
    background: var(--bg-primary); 
    padding: 5rem 3rem 6rem; 
    text-align: center;
}

/* NEXT FIAP Section */
.next-fiap-section {
    padding: 6rem 3rem;
    background: var(--bg-secondary);
}

.next-fiap-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.next-fiap-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.next-fiap-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(230, 241, 255, 0.85);
}

.next-highlight {
    font-weight: 700;
}

.next-highlight.neuro {
    color: var(--accent-cyan);
}

.next-highlight.neuro-pink {
    color: var(--accent-pink);
}

.next-highlight.tech {
    color: var(--accent-yellow);
}

.next-highlight.game {
    color: var(--accent-cyan);
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 246, 255, 0.4);
}

.next-fiap-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-running {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
    mix-blend-mode: lighten;
}

/* Social Links */
.social-section {
    padding: 3rem;
    text-align: center; 
}

.social-links {
    width: 100%;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-btn {
    background: transparent;
    padding: 1rem 2rem;
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--card-bg);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.social-btn:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
    color: #fff;
}

.social-btn.linkedin:hover { border-color: #0A66C2; background: #0A66C2; }
.social-btn.instagram:hover { border-color: #E1306C; background: #E1306C; }
.social-btn.twitter:hover { border-color: #1DA1F2; background: #1DA1F2; }

.social-btn .icon {
    font-size: 1.2rem;
}

/* Cadastro Section */
.cadastro-section {
    background: var(--bg-secondary);
}

.cadastro-section .form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--accent-cyan);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-primary);
    border: 2px solid rgba(0, 246, 255, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 246, 255, 0.3);
}

.success-message, .error-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
    font-weight: 600;
}

.success-message {
    background: var(--success);
    color: var(--bg-primary);
}

.error-message {
    background: #ff4444;
    color: #fff;
}

/* Team Section */
.team-section {
    padding: 6rem 3rem;
    background: var(--bg-secondary);
}

.team-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 250px));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.team-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.team-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: var(--bg-primary);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 246, 255, 0.1);
}

/* --- ESTILOS PADRÃO DE PÁGINA --- */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-page-main {
    padding-top: 120px;
    padding-bottom: 4rem;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.content-block {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 246, 255, 0.1);
}

.content-block h2 {
    font-family: 'Poppins', sans-serif;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 2rem;
}

.inner-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.inner-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-pink);
}

.inner-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}
/* --- FIM NOVOS ESTILOS --- */


/* Mobile Responsive */
@media (max-width: 968px) {
    header {
        padding: 1rem 2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(15, 30, 46, 0.95); 
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-right.active {
        right: 0;
    }
    
    .menu-close-btn {
        display: block; 
    }

    .btn-vote-header {
        display: inline-flex;
        width: 90%;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .nav-links {
        flex-direction: column;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero {
        padding-top: 3rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .btn-vote-hero {
        margin: 0 auto 2rem;
    }

    .next-fiap-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-conceito, .next-fiap-section, .dashboard-section, .team-section, .content-page-main {
        padding: 3rem 1.5rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    .social-btn { width: 100%; justify-content: center; }
}


/* --- Estilos da Seção de Equipe (Atualizados) --- */

.team-card p {
    margin-bottom: 0;
}

.team-card a {
    text-decoration: none;
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--accent-cyan);
    margin-bottom: 1rem;
    object-fit: cover;
}

.team-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.team-divider {
    width: 40px;
    margin: 0 auto 0.8rem;
    border: 0;
    border-top: 1px solid rgba(0, 246, 255, 0.2);
}

.team-course {
    font-size: 0.8rem;
    color: rgba(230, 241, 255, 0.7);
    margin-bottom: 1rem;
}

.team-card .social-links {
    margin-top: 0.8rem;
    display: block; 
    gap: 0;
    flex-wrap: nowrap;
    justify-content: center;
}

.team-card .social-links a {
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: all 0.3s;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    display: inline;
}

.team-card .social-links a:hover {
    color: var(--accent-cyan);
    transform: scale(1.1);
    border-color: transparent;
    background: transparent;
}

.team-grid-mentor {
    display: contents;
}