/* =========================================
   1. CONFIGURAÇÕES GERAIS E RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', sans-serif;
    color: #ffffff;
    background-color: rgb(30, 30, 30);
    overflow-x: hidden;
    line-height: 1.6;

    /* Configuração Flexbox */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ocupa no mínimo a altura total do monitor */
    margin: 0;
}

html, body {
    height: 100%;
}

.main-content,
.content-section,
.post-container {
    flex: 1;
}

/* =========================================
   2. NAVBAR (CABEÇALHO)
   ========================================= */
/* 2. NAVBAR (CABEÇALHO) */
/* NAVBAR: Agora centraliza todo o bloco de navegação */

.mobile-header,
.mobile-menu,
.hamburger {
    display: none;
}

.navbar {
    display: flex;
    justify-content: space-between; 
    align-items: stretch;
    padding: 0 20px; 
    background-color: #1a1b43;
    height: 75px; 
    position: relative;
    z-index: 100;

    flex-shrink: 0; /* Impede que o flexbox deforme o cabeçalho */
    width: 100%;    /* Garante que ele cubra a largura toda */
}

/* Container que agrupa Menu Esquerdo + Logo + Menu Direito */
.nav-center-group {
    display: flex;
    align-items: stretch;
    position: absolute; /* Truque para centralizar perfeitamente */
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}

.menu { 
    display: flex; 
    align-items: stretch;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: bold;
    padding: 0 20px; 
    display: flex;
    align-items: center; 
    position: relative;
    transition: 0.3s;
    z-index: 1;
    white-space: nowrap;
}

/* Mantendo sua animação bonitinha */
.menu a::after {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    width: 100%; height: 0;
    background: #000;
    transition: height 0.3s ease;
    z-index: -1;
}

.menu a:hover::after { height: 100%; }

/* LOGO: Espaçamento nas laterais para não encostar no texto */
.logo {
    display: flex;
    align-items: center;
    padding: 0 25px; 
}

.logo img {
    height: 55px;
    transition: all 0.4s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px #a33aff);
    transform: scale(1.1);
}

/* Ações (Busca) fixas na direita */
.actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto; /* Empurra a busca para o canto */
}

.search {
    display: flex;
    align-items: center;
    background: #333;
    border-radius: 8px;
    padding: 5px 12px;
}

.search input {
    border: none;
    background: transparent;
    color: white;
    padding: 5px;
    outline: none;
    width: 140px;
}

.search button {
    border: none;
    background: none;
    color: white;
    cursor: pointer;
}

/* =========================================
   3. BANNER PRINCIPAL 
   ========================================= */
.main-banner {
    position: relative;
    width: 100%;
    height: 550px;
    background: #000;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* ESCONDE TODOS OS SLIDES */
.slide {
    display: none; 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* MOSTRA APENAS O ATIVO */
.slide.active {
    display: flex;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Setas Arroxeadas */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(163, 58, 255, 0.4);
    border: none;
    color: white;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.carousel-prev:hover, .carousel-next:hover {
    background: #a33aff;
}

.carousel-prev { left: 10px; border-radius: 5px; }
.carousel-next { right: 10px; border-radius: 5px; }



.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3; 
    filter: blur(4px); 
    z-index: 1;
}



.banner-overlay {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 80px;               
    width: 100%;
    padding: 0 10%;
}




.character-art {
    flex: 0 0 450px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 20; /* Fica acima de tudo */
}

.character-art img {
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 1 !important; 
    filter: drop-shadow(0 0 30px rgba(163, 58, 255, 0.4)) 
            brightness(1.1) contrast(1.1); /* Deixa as cores mais vivas */
    transition: transform 0.5s ease;
}




.banner-content {
    flex: 0 1 600px;         
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.8)); 
}


.tag-destaque {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;     
    color: #a33aff;          
    font-weight: bold;
    margin-bottom: 10px;
}


.banner-description {
    background: none;        
    padding: 0;              
    margin: 20px 0 30px 0;
    font-size: 1.2rem;       
    line-height: 1.6;
    color: #e0e0e0;          
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); 
    border-left: none;       
    max-height: none;        
}

.banner-description p {
    display: -webkit-box;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis; 
}



.tag-destaque {
    font-size: 16px;
    color: #acacac;
    margin-bottom: 10px;    
    display: block;
}


.anime-logo {
    max-width: 400px;        
    height: auto;
    margin-bottom: 10px;
}


/* BOTÕES */
.hero-buttons {
    display: flex;
    gap: 15px;
}


.btn-acessar {
    background-color: #a33aff;
    width: fit-content;      /* Botão só do tamanho do texto */
    padding: 15px 40px;
    border-radius: 50px;     
    font-size: 18px;
    text-transform: uppercase;
    transition: 0.4s;
}

.btn-acessar:hover {
    background-color: #7a28cc;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(163, 58, 255, 0.5);
}
.banner-description::-webkit-scrollbar {
    width: 5px;
}
.banner-description::-webkit-scrollbar-thumb {
    background: #a33aff;
    border-radius: 10px;
}


.character-art img {
    height: 110%;            /* Faz ela "sair" um pouco do banner se quiser */
    filter: drop-shadow(10px 10px 30px rgb(0, 0, 0));
}

.character-art img {
    height: 100%;   /* Ela vai usar toda a altura do container .character-art */
    width: auto;    /* Mantém a proporção sem achatar */
    object-fit: contain;
    display: block; /* Remove espaços vazios embaixo da imagem */
}





/* =========================================
   4. SEÇÃO DE PROJETOS RECENTES
   ========================================= */
.barra-projetos {
    background: rgba(0, 0, 0, 0.1); /* 0.6 é 60% de opacidade. Ajuste conforme preferir */
    padding: 15px;
    text-align: center;
    border-top: -10px solid rgba(255, 255, 255, 0.1);
}

.barra-projetos h2 {
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.projects-container {
    padding: 80px 20px;
    text-align: center;
    background-color: rgb(45, 45, 45);
}

/* =========================================
   5. ANIMAÇÕES
   ========================================= */
.animate-fade-in {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInEffect 0.8s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpEffect 1s ease-out 0.3s forwards;
}

@keyframes fadeInEffect {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUpEffect {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classe que o JS vai ativar ao dar scroll */
.navbar.scrolled {
    background-color: #0d0d2b; /* Um tom mais escuro */
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    height: 60px; /* A barra encolhe um pouco ao descer */
}

/* Ajuste para o link acompanhar a altura menor no scroll */
.navbar.scrolled .menu a, .navbar.scrolled .logo img {
    height: 60px;
}


/* Layout Principal */
.content-section {
    padding: 40px 10%;
    background-color: #121212;
}

.container-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr; /* Esquerda mais larga */
    gap: 25px;
}

/* Estilo dos Cards (Esquerda) */
.projects-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.card-anime {
    background: #1c1c1c;
    border-radius: 5px;
    overflow: hidden;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.card-anime:hover {
    border-bottom: 3px solid #a33aff;
    transform: translateY(-5px);
}

.card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-info p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 0.8rem;
    border-top: 1px solid #2a2a2a;
    padding-top: 10px;
}

/* Sidebar Status (Direita) */
.widget {
    background: #181818;
    border-radius: 5px;
    padding: 20px;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a69bd; /* Azul da barra de status na sua imagem */
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.rss-button { margin-left: auto; color: #555; }

.status-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03); /* Fundo sutil */
    border: 1px solid rgba(163, 58, 255, 0.2); /* Borda roxa transparente */
    border-radius: 12px;
    padding: 12px;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

.status-item:hover {
    background: rgba(163, 58, 255, 0.08);
    border-color: #a33aff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(163, 58, 255, 0.2);
}

/* Thumbnail do Anime */
.status-item img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #a33aff;
}

.status-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.status-content a {
    text-decoration: none;
}

.status-content h4 {
    color: #fff;
    margin: 0;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.status-content h4:hover {
    color: #ff99cc;
}

/* Texto dos episódios e status */
.status-ep {
    font-size: 0.8rem;
    color: #ff99cc;
    font-weight: bold;
    text-transform: uppercase;
}

.status-step {
    font-size: 0.75rem;
    color: #ccc;
    font-style: italic;
    margin-bottom: 8px;
}

/* Barra de Progresso Estilizada */
.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #a33aff, #ff99cc);
    box-shadow: 0 0 10px rgba(163, 58, 255, 0.5);
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

.main-footer {
    background-color: #0d0d0d;
    color: #fff;
    padding: 60px 10% 20px;
    border-top: 3px solid #a33aff; 
    
    margin-top: auto; /* Empurra o footer pro final, não importa o zoom */
    
    flex-shrink: 0; /* Impede que o rodapé seja esmagado */
}

.footer-proj {
    margin-top: auto; 
    
    flex-shrink: 0; 
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-box h3 {
    color: #a33aff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Coluna Sobre */
.footer-logo {
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(163, 58, 255, 0.3));
}

.footer-box p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Coluna Links */
.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-box ul li a:hover {
    color: #a33aff;
    padding-left: 5px;
}

.footer-logo-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.5s ease;
}

.footer-logo-link:hover {
    transform: scale(2.05); 
}

.CC-Link, .CC-Link:visited {
  color: #a33aff;
}

/* Coluna Social */


.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: #a33aff;
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.8rem !important;
    border-top: 1px solid #222;
    padding-top: 20px;
    margin-top: 20px;
}

.projects-page {
    width: 100%;
    max-width: 1200px; /* opcional */
    margin: 0 auto; /* centraliza */
    padding: 0 10px;
    
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #222;
    padding-bottom: 20px;
}

.projects-header h2 {
    color: #a33aff;
    font-size: 1.8rem;
    text-transform: uppercase;
}

/* Filtros */
.filter-btn {
    background: #1e1e1e;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 18px;
    margin-left: 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: #a33aff;
    border-color: #a33aff;
}

/* Grade de Projetos */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas */
    gap: 30px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: stretch;
}

.project-item {
    text-align: center;
    transition: 0.3s;
}

.project-poster {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.project-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* Badges e Overlay */
.project-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 5px;
    z-index: 10;
}

.project-badge.andamento { background: #ff9f43; color: #000; }
.project-badge.finalizado { background: #28c76f; color: #fff; }

.project-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(163, 58, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.project-item:hover .project-overlay { opacity: 1; }
.project-item:hover .project-poster img { transform: scale(1.1); }

.btn-ver-mais {
    background: #fff;
    color: #a33aff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.project-item h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
}

.project-item span {
    font-size: 0.8rem;
    color: #777;
}

.menu a.active {
    color: #a33aff; /* Cor roxa da Crystal */
    border-bottom: 2px solid #a33aff;
}

/* Container Principal */
.anime-details-container {
    position: relative;
    padding-top: 100px; /* Espaço para a navbar */
    min-height: 100vh;
}

/* Fundo desfocado atrás das informações */
.anime-page-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 400px;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.4);
    z-index: -1;
}

/* Layout de Info Principal */
.anime-main-info {
    display: flex;
    gap: 40px;
    padding: 40px 10%;
    align-items: flex-start;
}

.anime-poster {
    flex: 0 0 280px;
    position: relative;
}

.anime-poster img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border: 2px solid rgba(163, 58, 255, 0.3);
}

.anime-text-info h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.anime-meta {
    display: flex;
    gap: 20px;
    color: #a33aff;
    font-weight: bold;
    margin-bottom: 25px;
}

.anime-sinopse h3 {
    color: #fff;
    margin-bottom: 10px;
    border-left: 4px solid #a33aff;
    padding-left: 15px;
}

.anime-sinopse p {
    color: #ccc;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

/* Lista de Episódios */
.episode-list-section {
    padding: 40px 10%;
    background: #121212;
}

.episode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.episode-card {
    background: #1e1e1e;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    border: 1px solid #333;
}

.episode-card:hover {
    background: #252525;
    border-color: #a33aff;
    transform: translateX(10px);
}

.ep-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #a33aff;
    margin-right: 20px;
    min-width: 40px;
}

.ep-info span { font-weight: bold; display: block; }
.ep-info p { font-size: 0.8rem; color: #888; }

.episode-card i { margin-left: auto; color: #a33aff; font-size: 1.2rem; }

.anime-specs {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px solid rgba(163, 58, 255, 0.2); /* Roxo Crystal */
}

.anime-specs h3 {
    color: #a33aff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.spec-item {
    font-size: 0.9rem;
    color: #ccc;
}

.spec-item strong {
    color: #fff;
    margin-right: 5px;
}

.spec-item span {
    color: #a33aff; /* Destaque para os dados técnicos */
}

/* Container da imagem */
.ep-thumbnail {
    position: relative;
    width: 180px; /* Largura da miniatura */
    height: 100px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(163, 58, 255, 0.3); /* Roxo Crystal */
}

.ep-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
    transition: 0.3s;
}

.episode-card:hover .ep-thumbnail img {
    transform: scale(1.1); /* Efeito de zoom ao passar o mouse */
}

/* Selo de Blu-ray sobre a imagem */
.ep-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #a33aff; /* Roxo Crystal */
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Ajuste no card para alinhar tudo verticalmente */
.episode-card {
    display: flex;
    align-items: center;
    background: #1e1e1e;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 12px;
    transition: 0.3s;
}

/* Container Principal */
.faq-container {
    padding: 120px 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h1 {
    color: #a33aff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Estilo de cada item da lista */
.faq-item {
    background: #1e1e1e;
    border: 1px solid rgba(163, 58, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden; /* Importante para o efeito de esconder */
    transition: 0.3s ease;
}

/* Botão da Pergunta */
.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
}

.faq-question:hover {
    background: rgba(163, 58, 255, 0.05);
}

/* Resposta - O segredo do efeito está aqui */
.faq-answer {
    max-height: 0; /* Começa escondido */
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 20px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Quando o item estiver ATIVO */
.faq-item.active {
    border-color: #a33aff;
    box-shadow: 0 5px 15px rgba(163, 58, 255, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Define um tamanho máximo para o texto descer */
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
    color: #a33aff;
}


.recrutamento-intro {
    text-align: center;
    margin-bottom: 40px;
}

.recrutamento-intro h1 {
    color: #a33aff; /* Roxo Crystal */
    margin-bottom: 10px;
}



.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: bold;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: #121212;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    outline: none;
}

.form-group input:focus, .form-group select:focus {
    border-color: #a33aff; /* */
}

.btn-enviar {
    width: 100%;
    padding: 15px;
    background: #a33aff; /* */
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-enviar:hover {
    background: #8e2de2;
    transform: translateY(-2px);
}

.btn-enviar:disabled {
    cursor: not-allowed;
    filter: grayscale(1);
}


.funcao-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(163, 58, 255, 0.2); /* Roxo Crystal */
    transition: 0.3s;
}

.funcao-card:hover {
    transform: translateY(-5px);
    border-color: #a33aff;
    background: rgba(163, 58, 255, 0.05);
}

.funcao-card i {
    font-size: 2rem;
    color: #a33aff;
    margin-bottom: 15px;
}

.funcao-card h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.1rem;
}

.funcao-card p {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.4;
}

/* Container Principal - Centralizado */
.recrutamento-container {
    padding: 120px 20px 60px;
    max-width: 1100px; /* Evita que espalhe demais em telas 4K */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Grid de Funções */
.funcoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
}

/* Formulário Escondido e Animado */
.form-style {
    display: none; /* Começa invisível */
    width: 100%;
    max-width: 600px;
    background: #1e1e1e;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #a33aff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Classe de animação Smooth Slide-Up */
.slide-up {
    animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#tituloForm {
    color: #a33aff;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
}

/* Container da Equipe */

.btn-portfolio { 
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #fff;
    
    background: linear-gradient(45deg, #a33aff, #6a00ff);
    box-shadow: 0 0 10px rgba(163, 58, 255, 0.4);

    transition: all 0.3s ease;
}

.btn-portfolio:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 15px rgba(163, 58, 255, 0.7);
}

.equipe-container {
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.equipe-intro h1 {
    color: #a33aff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.equipe-intro p {
    color: #ccc;
    margin-bottom: 50px;
}

/* Grid de Membros */


/* Card do Membro */


/* Foto do Membro */
.membro-foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #a33aff;
    margin-bottom: 15px;
}

.membro-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Informações */
.membro-info h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.membro-cargo {
    display: inline-block;
    background: rgba(163, 58, 255, 0.2);
    color: #a33aff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.membro-data {
    color: #888;
    font-size: 0.85rem;
}

.membro-data i {
    margin-right: 5px;
    color: #a33aff;
}

.equipe-mural {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Colunas */
    gap: 60px 40px; /* Mais espaço vertical para o balão não cobrir o de cima */
    padding: 180px 20px 100px;
    max-width: 850px; /* Tamanho ideal para o quadrado 2x2 */
    margin: 0 auto;
    justify-items: center;
}

/* Efeito para que cada card possa ter uma cor de aura diferente via HTML */
.aura-brilhante {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    filter: blur(40px);
    opacity: 0.3;
    z-index: 1;
}






/* Efeito de Aura atrás da foto */
.aura-brilhante {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: #a33aff;
    filter: blur(40px);
    opacity: 0.3;
    transition: 0.5s;
}



/* Avatar que "pula" */
.avatar-pixel {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    position: relative;
    z-index: 2;
    transition: 0.5s;
    display: block;
    margin: 0 auto 15px;
}



/* Barras de Atributos */
.stats-container {
    margin: 15px 0;
    text-align: left;
}

.stat-bar {
    font-size: 0.7rem;
    color: #eee;
    margin-bottom: 8px;
}

.bar {
    height: 6px;
    background: #333;
    border-radius: 10px;
    margin-top: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, #a33aff, #ff99cc);
    box-shadow: 0 0 10px #a33aff;
}


:root {
    /* MODO ESCURO (Padrão) */
    --bg-color: #0f0f0f;
    --card-bg: #1e1e1e;
    --text-color: #ffffff;
    --text-secondary: #ccc;
    --accent-color: #a33aff;
    --nav-bg: rgba(15, 15, 15, 0.95);
}

[data-theme="light"] {
    /* MODO CLARO */
    --bg-color: #f0f2f5;
    --card-bg: #ffffff;
    --text-color: #1a1a1a;
    --text-secondary: #555;
    --accent-color: #7d2ae8;
    --nav-bg: rgba(255, 255, 255, 0.95);
}

/* Container principal da equipe */



/* --- BARRAS DE SKILLS (PODER) --- */
.membro-skills {
    margin-top: 15px;
    text-align: left;
}

.skill-item {
    margin-bottom: 10px;
}

.skill-name {
    font-size: 0.75rem;
    color: #aaa;
    display: block;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.skill-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #7d2ae8, #a33aff);
    box-shadow: 0 0 10px rgba(163, 58, 255, 0.5);
    border-radius: 3px;
}

/* Responsividade: No celular fica 1 por fileira para não apertar */
@media (max-width: 768px) {
    .equipe-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* =========================================
   SISTEMA DE EQUIPE 2X2 - ULTRA ANIMADO (FIXED)
   ========================================= */

/* 1. O GRID: Define as 2 colunas e a profundidade 3D */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px;
    max-width: 900px;
    margin: 50px auto;
    perspective: 1000px; 
    padding: 20px;
}

.membro-card-espacial {
    position: relative;
    width: 280px;
    background: #121212;
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    user-select: none;
    /* ISSO PRENDE O BRILHO E NÃO DEIXA VAZAR */
    overflow: hidden; 
    z-index: 1;
}

/* O COLORIDO QUE GIRA */
.membro-card-espacial::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(#a33aff, #ff99cc, #00ffff, #a33aff);
    animation: rotateNeon 4s linear infinite;
    top: -50%;
    left: -50%;
    z-index: -2;
}

/* FUNDO ESCURO PRA FAZER A BORDA */
.membro-card-espacial::after {
    content: '';
    position: absolute;
    inset: 4px; /* Grossura da borda */
    background: #1a1a1a;
    border-radius: 17px;
    z-index: -1;
}

@keyframes rotateNeon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 3. ELEMENTOS INTERNOS */
.membro-avatar, .membro-info, .status-indicator {
    position: relative;
    z-index: 10; /* Garante que fiquem acima do ::after */
}

/* FOTO: Efeito de flutuar */
.membro-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #a33aff;
    overflow: hidden;
    margin-bottom: 20px;
    transform: translateZ(50px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
}

.membro-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXTO GLITCH NO CARGO */
.glitch-text {
    display: block;
    color: #a33aff;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin: 10px 0;
    letter-spacing: 2px;
}

.membro-card-espacial:hover .glitch-text {
    animation: glitchAnim 0.3s infinite;
}

@keyframes glitchAnim {
    0% { text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff; transform: translate(0); }
    50% { text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff; transform: translate(-1px, 1px); }
    100% { text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff; transform: translate(1px, -1px); }
}

.balao-fala {
    position: absolute; /* ISSO impede que ele empurre os outros elementos */
    top: -60px;        /* Ajuste de altura para ele não cobrir o card */
    left: 50%;
    transform: translateX(-50%); /* Centraliza o balão perfeitamente */
    
    background: white;
    color: black;
    padding: 8px 15px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.8rem;
    white-space: nowrap;
    
    z-index: 9999;     /* Garante que fique na frente */
    pointer-events: none; /* Garante que você consiga clicar no card mesmo com o balão na frente */
    
    /* Animação para ele não aparecer do nada */
    animation: popBalao 0.3s ease-out;
}

@keyframes popBalao {
    0% { opacity: 0; transform: translateX(-50%) scale(0.5); }
    100% { opacity: 1; transform: translateX(-50%) scale(1); }
}
/* 4. RESPONSIVIDADE */
@media (max-width: 768px) {
    .equipe-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}



.filtros-container {
    background: rgba(20, 20, 20, 0.8); /* Fundo escuro semi-transparente */
    backdrop-filter: blur(10px);
    padding: 20px;
    margin: 20px auto;
    border-radius: 15px;
    border: 1px solid #a33aff; /* Borda Roxa */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 25px;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Estilização do Select (Gêneros) */
#filtroGenero {
    background: #1a1a1a;
    color: white;
    border: 2px solid #a33aff;
    padding: 10px 15px;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

#filtroGenero:hover {
    box-shadow: 0 0 15px rgba(163, 58, 255, 0.4);
    transform: translateY(-2px);
}

/* Estilização do Checkbox +18 */
.filtros-container label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

#ocultar18 {
    appearance: none; /* Remove o visual padrão do navegador */
    width: 20px;
    height: 20px;
    border: 2px solid #a33aff;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

#ocultar18:checked {
    background: #a33aff;
}

#ocultar18:checked::after {
    content: '✔';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Animação para os itens sumirem suavemente */
.project-item {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Responsividade para celulares */
@media (max-width: 600px) {
    .filtros-container {
        flex-direction: column;
        gap: 15px;
        margin: 10px;
    }
    
    #filtroGenero {
        width: 100%;
    }


    
}

#age-check{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);

  z-index:999999;

  animation: fadeIn 0.4s ease;
}

.age-modal{
  background:#0b0b0b;
  color:white;
  padding:35px;
  border-radius:12px;
  text-align:center;

  max-width:420px;
  width:90%;

  box-shadow:0 20px 60px rgba(0,0,0,0.8);

  transform: translateY(20px);
  animation: slideUp 0.4s ease forwards;
}

.age-yes{
  width:100%;
  padding:14px;
  margin-bottom:10px;

  background:#0c0530;
  color:white;

  border:none;
  border-radius:6px;
  cursor:pointer;

  font-weight:bold;
  transition:0.2s;
}

.age-yes:hover{
  background:#1b0f66;
}

.age-no{
  width:100%;
  padding:14px;

  background:#444;
  color:white;

  border:none;
  border-radius:6px;
  cursor:pointer;

  transition:0.2s;
}

.age-no:hover{
  background:#666;
}

/* animações */
@keyframes fadeIn{
  from { opacity:0; }
  to { opacity:1; }
}

@keyframes slideUp{
  from {
    opacity:0;
    transform: translateY(30px);
  }
  to {
    opacity:1;
    transform: translateY(0);
  }
}

/* Unifiquei as duas IDs na mesma regra para poupar código */
#age-check, #blocked-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);

  z-index: 999999;
}

.age-modal {
  background: #0b0b0b;
  color: white;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 0 40px rgba(0,0,0,0.7);
}

.age-modal h2 {
  margin-bottom: 10px;
}

.age-modal p {
  margin-bottom: 25px;
  color: #ccc;
}

.age-yes {
  width: 100%;
  padding: 14px;
  margin-bottom: 10px;
  background: #0c0530;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.2s;
}

.age-yes:hover {
  background: #1b0f66;
}

.age-no {
  width: 100%;
  padding: 14px;
  background: #444;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.age-no:hover {
  background: #666;
}

/* =========================================
   BLOG POST
   ========================================= */

.blog-post-container{
    padding-top:100px;
    min-height:100vh;
}

/* HERO */
.blog-hero{
    position:relative;
    height:400px;
    overflow:hidden;
}

.blog-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:blur(6px) brightness(0.4);
}

.blog-hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:0 10%;
}

.blog-hero-overlay h1{
    font-size:2.5rem;
    margin-bottom:15px;
}

.blog-meta{
    display:flex;
    gap:20px;
    color:#a33aff;
    font-weight:bold;
}

/* CONTEÚDO */
.blog-content{
    max-width:900px;
    margin:40px auto;
    padding:40px;
    background:#1c1c1c;
    border-radius:12px;
    border:1px solid rgba(163,58,255,0.2);
}

.blog-content h2{
    color:#a33aff;
    margin:30px 0 15px;
    border-left:4px solid #a33aff;
    padding-left:12px;
}

.blog-content p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:20px;
}

.blog-content img{
    width:100%;
    border-radius:8px;
    margin:20px 0;
    border:1px solid rgba(163,58,255,0.3);
}

/* LISTA SPECS */
.blog-specs{
    list-style:none;
    margin-top:15px;
}

.blog-specs li{
    padding:10px;
    border-bottom:1px solid #333;
    color:#ccc;
}

.blog-specs strong{
    color:#fff;
}

.blog-specs li:last-child{
    border-bottom:none;
}

/* DOWNLOADS */
.blog-downloads{
    max-width:900px;
    margin:30px auto;
    padding:30px;
    background:#181818;
    border-radius:12px;
    border:1px solid rgba(163,58,255,0.2);
}

.blog-downloads h2{
    color:#a33aff;
    margin-bottom:20px;
}

/* CARD DOWNLOAD */
.download-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    background:#1e1e1e;
    border-radius:10px;
    margin-bottom:15px;
    border:1px solid #333;
    transition:.3s;
}

.download-card:hover{
    border-color:#a33aff;
    transform:translateX(8px);
}

.download-card p{
    color:#888;
    font-size:.9rem;
}

/* BOTÃO DOWNLOAD */
.download-btn{
    background:#a33aff;
    padding:10px 20px;
    border-radius:6px;
    text-decoration:none;
    color:white;
    font-weight:bold;
    transition:.3s;
}

.download-btn:hover{
    background:#7a28cc;
    box-shadow:0 0 15px rgba(163,58,255,0.4);
}

/* RESPONSIVO */
@media(max-width:768px){

.blog-hero-overlay h1{
    font-size:1.8rem;
}

.blog-meta{
    flex-wrap:wrap;
    gap:10px;
}

.blog-content{
    margin:20px;
    padding:25px;
}

.blog-downloads{
    margin:20px;
}

.download-card{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.download-btn{
    width:100%;
    text-align:center;
}

}

/* =========================================
   Area dos Projetos
========================================= */


.search-feedback {
    margin: 15px 0;
    font-size: 0.9rem;
    color: #ccc;
}

.search-feedback strong {
    color: #a33aff;
}

.no-results {
    margin-top: 10px;
    padding: 15px;
    border: 1px solid rgba(163,58,255,0.3);
    border-radius: 10px;
    background: rgba(163,58,255,0.08);
    text-align: center;
}

.no-results p {
    margin: 5px 0;
    font-size: 0.85rem;
}

.blog-highlight{
    position:relative;
    margin:40px auto;
    max-width:900px;
    border-radius:12px;
    overflow:hidden;
    background:#1c1c1c;
}

.highlight-bg{
    position:absolute;
    inset:0;
}

.highlight-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:blur(8px) brightness(0.4);
}

.highlight-content{
    position:relative;
    padding:30px;
}

.highlight-content h2{
    font-size:1.8rem;
    margin-bottom:10px;
}

.highlight-tag{
    background:#4a69bd;
    padding:5px 12px;
    border-radius:6px;
    font-size:.8rem;
    font-weight:bold;
    display:inline-block;
    margin-bottom:20px;
}

.highlight-tag-conclused{
    background:#00f85f5b;
    padding:5px 12px;
    border-radius:6px;
    font-size:.8rem;
    font-weight:bold;
    display:inline-block;
    margin-bottom:20px;
}

.highlight-body{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.highlight-poster{
    width:140px;
    border-radius:8px;
}

.highlight-info p{
    color:#ddd;
    margin-bottom:8px;
}

.highlight-btn{
    display:inline-block;
    margin-top:10px;
    background:#a33aff;
    padding:10px 18px;
    border-radius:6px;
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.highlight-btn:hover{
    background:#7a28cc;
}

/* RESPONSIVO */
@media(max-width:768px){

.highlight-body{
    flex-direction:column;
}

.highlight-poster{
    width:120px;
}

}

/*deixar mais bonitin a auto declaração */
#age-check,
#blocked-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-modal {
    background: #111;
    border: 2px solid #a33aff;
    box-shadow: 0 0 20px rgba(163,58,255,0.4);
}

.home-main {
    flex: 1; /* Empurra o macaquinho do footer pra baixo */
}

#age-check,
#blocked-message {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}


.footer-partners-title{
    color:#a855f7;
    font-size:17px;
    margin-bottom:8px;
    letter-spacing:1px;
}

.footer-partners {
    margin-top: 10px;
}

.footer-partners a {
    display: inline-block;
    padding: 3px;
    background: linear-gradient(180deg,#0b0d22,#070816);
    border-radius: 0px;
    border: 0px solid rgba(170,0,255,0.25);
    transition: 0.25s ease;
    position: relative;
}

.footer-partners a:hover {
    transform: translateY(-2px);
    border-color: #a855f7;
    box-shadow:
        0 0 8px rgba(168,85,247,0.5),
        0 0 16px rgba(168,85,247,0.25);
}

.footer-partners img {
    display: block;
    image-rendering: pixelated;
}

/* =========================================
   ESTILOS EXCLUSIVOS DA PÁGINA SOBRE
   ========================================= */

/* Grid de Valores/Destaques */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.valor-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(163, 58, 255, 0.2); /* Roxo padrão Crystal */
    transition: 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-5px);
    border-color: #a33aff;
    background: rgba(163, 58, 255, 0.05);
    box-shadow: 0 5px 15px rgba(163, 58, 255, 0.2);
}

.valor-card i {
    font-size: 2.5rem;
    color: #a33aff;
    margin-bottom: 15px;
}

.valor-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.valor-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 0; /* Anula a margem de p do blog-content se houver */
}

/* Responsividade simples para celulares pequenos */
@media (max-width: 600px) {
    .valores-grid {
        grid-template-columns: 1fr; /* Em aparelhos pequenos os blocos ficam em colunas únicas */
    }
}

/* --- Estilo Barra de Pesquisa Desktop --- */
.actions {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-right: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(163, 58, 255, 0.3);
    border-radius: 20px;
    padding: 5px 15px;
    transition: 0.3s;
}

.search-box:focus-within {
    border-color: #a33aff;
    box-shadow: 0 0 10px rgba(163, 58, 255, 0.4);
    background: rgba(163, 58, 255, 0.05);
}

.search-input {
    background: transparent;
    border: none;
    color: white;
    outline: none;
    font-size: 14px;
    width: 150px; /* Largura inicial */
    transition: width 0.4s;
}

.search-input:focus {
    width: 200px; /* Expande ao clicar */
}

.search-btn {
    background: none;
    border: none;
    color: #a33aff;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
}

/* --- Responsividade Mobile --- */
.mobile-search-bar {
    display: none; /* Escondido por padrão */
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #1a1b43;
    padding: 15px;
    border-bottom: 2px solid #a33aff;
    z-index: 99;
}

.mobile-search-bar.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
}

.mobile-search-bar input {
    flex: 1;
    background: #121212;
    border: 1px solid #a33aff;
    padding: 10px;
    border-radius: 5px;
    color: white;
    outline: none;
}

.search-toggle-mobile {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .actions { display: none; } /* Esconde a busca do desktop no mobile */
    .mobile-header { display: flex; justify-content: space-between; width: 100%; align-items: center; }
}

@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


    