/* --- ESTILIZAÇÃO DO CARD E TEXTOS --- */
.hero-card {
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('logistica-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(108, 76, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

.distributed-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 125, 255, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s ease;
}

.floating-item:hover {
    transform: translateX(10px);
    background: rgba(108, 76, 255, 0.2);
}

/* O SEGREDO DA SEPARAÇÃO DOS TEXTOS */
.item-text {
    display: flex;
    flex-direction: column; /* Força um embaixo do outro */
    align-items: flex-start;
    text-align: left;
}

.item-text strong {
    color: #9c7dff;
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px; /* Espaço entre o título roxo e a descrição */
}

.item-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    display: block;
}

/* --- PONTO VERDE PISCANTE (CORRIGIDO) --- */
.pulse-icon-green {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.slots-counter {
    display: flex;
    align-items: center;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    width: fit-content;
}

/* ENQUADRAMENTO FOTOS MENTORES */
.mentor-img-wrapper {
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.mentor-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Foca no rosto */
    transition: transform 0.4s ease;
}

/* BOTÃO LINKEDIN ESTILIZADO */
.btn-ln {
    display: inline-block;
    margin-top: 10px;
    background: #0077b5;
    color: #fff !important;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    transition: 0.3s;
}

.btn-ln:hover {
    background: #00a0dc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.4);
}

/* ... (Mantenha o restante do CSS Aurora e Mobile) ... */

/* ============================================================
   1. CONFIGURAÇÕES BASE & VARIÁVEIS
   ============================================================ */
:root {
    --primary: #6c4cff;
    --secondary: #ff4cff;
    --dark: #0b0b14;
    --glass: rgba(255, 255, 255, 0.05);
    --linkedin: #0077b5;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* FUNDO AURORA ANIMADO */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(108, 76, 255, 0.2), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 76, 173, 0.15), transparent 40%);
    z-index: -1;
    animation: aurora 15s infinite alternate ease-in-out;
}

@keyframes aurora {
    0% { transform: scale(1); filter: blur(20px); }
    100% { transform: scale(1.2); filter: blur(40px); }
}

.container { width: 90%; max-width: 1100px; margin: auto; }
.highlight { color: var(--primary); }
.section-title { font-size: 2.5rem; margin-bottom: 50px; text-align: center; font-weight: 800; }

/* ============================================================
   2. NAVEGAÇÃO
   ============================================================ */
.nav {
    position: fixed;
    width: 100%;
    background: rgba(11, 11, 20, 0.85);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-content { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; }
.logo { font-weight: 800; font-size: 1.4rem; letter-spacing: 1px; }
.nav-links a { margin-left: 20px; text-decoration: none; color: #fff; font-size: 0.9rem; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

.btn-nav { background: var(--primary); padding: 8px 18px; border-radius: 5px; }
.btn-yt { background: #ff0000; padding: 8px 18px; border-radius: 5px; font-weight: 800; color: #fff !important; }

/* ============================================================
   3. HERO & HERO CARD
   ============================================================ */
.hero { padding: 160px 0 100px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin: 20px 0; font-weight: 800; }
.tag { background: var(--glass); padding: 6px 15px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; color: var(--primary); }

.cta-main { background: var(--primary); padding: 18px 35px; border-radius: 8px; text-decoration: none; color: #fff; font-weight: 800; display: inline-block; margin-right: 15px; transition: 0.3s; }
.cta-secondary { border: 1px solid #fff; padding: 18px 35px; border-radius: 8px; text-decoration: none; color: #fff; font-weight: 800; display: inline-block; transition: 0.3s; }
.cta-main:hover, .cta-secondary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(108, 76, 255, 0.3); }

.hero-card {
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('logistica-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(108, 76, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    min-height: 450px;
    display: flex;
    align-items: center;
}

.distributed-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; width: 100%; }

.floating-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 125, 255, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s ease;
}
.floating-item:hover { transform: translateX(10px); background: rgba(108, 76, 255, 0.2); }

.item-text { display: flex; flex-direction: column; text-align: left; }
.item-text strong { color: #9c7dff; font-size: 1.1rem; font-weight: 800; display: block; margin-bottom: 4px; }
.item-desc { font-size: 0.9rem; color: rgba(255, 255, 255, 0.9); line-height: 1.2; display: block; }

/* PONTO VERDE */
.pulse-icon-green {
    width: 10px; height: 10px; background: #00ff88; border-radius: 50%;
    margin-right: 12px; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.slots-counter {
    display: flex; align-items: center; margin-top: 30px;
    background: rgba(255, 255, 255, 0.05); padding: 10px 20px;
    border-radius: 50px; width: fit-content; border: 1px solid rgba(255,255,255,0.1);
}


/* --- GRIDS DE CONTEÚDO --- */

/* Grid para os 4 cards do Instituto (Lado a lado no notebook) */
.grid-4-base { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
}

/* Grid para as 3 Frentes de Atuação Estratégica */
.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}

/* Estilo dos Cards (Benefícios e Módulos) */
.card { 
    background: var(--glass); 
    padding: 30px; 
    border-radius: 15px; 
    text-align: center; 
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(108, 76, 255, 0.15);
}

/* Ajuste das Imagens dentro dos módulos */
.card-img-container {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}
.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- RESPONSIVIDADE PARA ESTES GRIDS --- */
@media (max-width: 1024px) {
    .grid-4-base { grid-template-columns: repeat(2, 1fr); } /* 2x2 em tablets */
}

@media (max-width: 600px) {
    .grid-4-base, .grid-3 { grid-template-columns: 1fr; } /* 1 coluna no celular */
}


/* ============================================================
   AJUSTE DE FOTOS (ESTILO PORTA-RETRATO) & LINKEDIN
   ============================================================ */

/* ============================================================
   ESTILO QUADRADO MODERNO & ALINHAMENTO CENTRAL
   ============================================================ */

/* --- GRID DOS MENTORES --- */
.mentors-grid {
    display: grid;
    /* No notebook: 4 colunas iguais que preenchem a largura */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    margin-top: 40px;
}

.mentor-card {
    background: var(--glass);
    padding: 25px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
}

.mentor-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    background: rgba(108, 76, 255, 0.05);
}

/* Foto Quadrada Arredondada */
.mentor-photo-container {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 2px solid rgba(108, 76, 255, 0.2);
}

.mentor-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.mentor-info h4 { margin: 0; font-size: 1.1rem; font-weight: 800; }
.mentor-tag { font-size: 0.75rem; color: var(--primary); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }

/* Breve Bio */
.mentor-bio {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
    margin-bottom: 15px;
    min-height: 60px; /* Mantém os cartões com a mesma altura */
}

/* LinkedIn Elegante */
.linkedin-link {
    color: #0077b5;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}
.linkedin-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* --- RESPONSIVIDADE (O SEGREDO PARA NÃO FICAR VAZIO) --- */

/* Tablets: 2 colunas */
@media (max-width: 1024px) {
    .mentors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Celulares: 1 coluna (preenche tudo) */
@media (max-width: 600px) {
    .mentors-grid {
        grid-template-columns: 1fr;
    }
    .mentor-card {
        padding: 40px 20px;
    }
    .mentor-photo-container {
        width: 150px;
        height: 150px;
    }
}

/* PONTE AJUSTADA */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.card-image-wrapper-mini { width: 100%; height: 120px; overflow: hidden; border-radius: 10px; margin-bottom: 15px; }
.card-image-wrapper-mini img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.comparison-card { background: var(--glass); padding: 30px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.comparison-card.solution { border-color: var(--primary); box-shadow: 0 0 30px rgba(108, 76, 255, 0.1); }
.clean-list-long { list-style: none; padding: 0; }
.clean-list-long li { margin-bottom: 8px; font-size: 0.9rem; font-weight: 600; }

/* FRENTES E ATUAÇÕES */
.atuacoes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.atuacao-item { background: var(--glass); padding: 15px; border-radius: 8px; border-left: 4px solid var(--primary); font-weight: 600; }
.atuacao-item:hover { background: rgba(108, 76, 255, 0.15); transform: translateX(5px); }

/* CARROSSEL FRENTES */
.modules-carousel-wrapper { width: 100%; overflow: hidden; padding: 20px 0; }
.modules-track { display: flex; gap: 20px; animation: scroll-slow 40s linear infinite; width: max-content; }
.card-module { width: 280px; background: var(--glass); padding: 20px; border-radius: 15px; border: 1px solid rgba(108, 76, 255, 0.1); }
.card-img-container-mini { width: 100%; height: 100px; border-radius: 8px; overflow: hidden; margin-bottom: 10px; }
.card-img-container-mini img { width: 100%; height: 100%; object-fit: cover; }
@keyframes scroll-slow { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   5. CADASTRO & FOOTER
   ============================================================ */
.contact { padding: 100px 0; }
.contact-box { max-width: 600px; margin: auto; text-align: center; }
.main-form { background: var(--glass); backdrop-filter: blur(15px); padding: 40px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); }
.form-group { margin-bottom: 15px; }
.main-form input, .main-form textarea { width: 100%; padding: 15px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.9); color: #333; box-sizing: border-box; font-family: inherit; }
.main-form button { width: 100%; padding: 20px; background: var(--primary); color: #fff; border: none; border-radius: 8px; font-weight: 800; cursor: pointer; transition: 0.3s; }
.main-form button:hover { background: #5a3de0; transform: scale(1.02); }

footer { padding: 40px; text-align: center; opacity: 0.6; font-size: 0.8rem; }

/* ============================================================
   6. RESPONSIVIDADE (MOBILE & TABLET)
   ============================================================ */
@media (max-width: 900px) {
    .hero-grid, .grid-2, .grid-3, .grid-4, .grid-4-base, .atuacoes-grid { grid-template-columns: 1fr; }
    
    .nav-content { padding: 10px 0; flex-direction: column; gap: 10px; }
    .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
    .nav-links a { margin: 0; font-size: 0.75rem; padding: 6px 10px; }
    .nav-links a[href="#sobre"], .nav-links a[href="#atuacoes"] { display: none; } /* Limpa o menu mobile */

    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 2.2rem; text-align: center; }
    .hero p { text-align: center; }
    .hero-buttons { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    .cta-main, .cta-secondary { width: 100%; margin: 0; text-align: center; box-sizing: border-box; }
    
    .hero-card { min-height: auto; padding: 20px; }
    .section-title { font-size: 1.8rem; }
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 76, 255, 0.1); /* Roxo bem suave ao fundo */
    border-radius: 12px;
    color: var(--primary); /* Usa o roxo principal nos traços do ícone */
    transition: 0.3s;
}

.icon-wrapper svg {
    width: 30px;
    height: 30px;
}

.card:hover .icon-wrapper {
    background: var(--primary);
    color: #fff; /* Inverte a cor no hover para dar o "charme" */
    transform: rotate(-5deg) scale(1.1); /* Leve inclinação para dar dinamismo */
}

/* --- CATÁLOGO DE ATUAÇÕES --- */
.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas no notebook */
    gap: 25px;
    margin-top: 40px;
}

.catalogo-col {
    background: var(--glass);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(108, 76, 255, 0.1);
    transition: 0.3s;
}

.catalogo-col:hover {
    border-color: var(--primary);
    background: rgba(108, 76, 255, 0.05);
    transform: translateY(-5px);
}

.catalogo-header {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(108, 76, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalogo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalogo-list li {
    font-size: 0.9rem;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.catalogo-list li::before {
    content: "→";
    color: var(--primary);
    margin-right: 10px;
    font-weight: bold;
}

.catalogo-list li:last-child {
    border-bottom: none;
}

/* --- RESPONSIVIDADE DO CATÁLOGO --- */

/* Tablets (iPad/Notebooks pequenos) */
@media (max-width: 1024px) {
    .catalogo-grid {
        grid-template-columns: repeat(2, 1fr); /* vira 2x2 */
    }
}

/* Celulares */
@media (max-width: 600px) {
    .catalogo-grid {
        grid-template-columns: 1fr; /* vira 1 coluna */
    }
    .catalogo-col {
        padding: 20px;
    }
}

/* CONTAINER DA LOGO (IMAGEM + TEXTO) */
.logo-container {
    display: flex;
    align-items: center; /* Centraliza verticalmente a imagem com o texto */
    gap: 15px;           /* Espaço entre a imagem e o texto */
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.02);
}

/* AJUSTE DA IMAGEM (MAIOR) */
.nav-logo-img {
    height: 60px;       /* Aumentamos de 45px para 60px */
    width: auto;
    border-radius: 8px; /* Leve arredondamento se a imagem for quadrada */
}

/* AJUSTE DO TEXTO AO LADO */
.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1;
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 900px) {
    .nav-logo-img {
        height: 45px; /* Um pouco menor no celular para não quebrar o menu */
    }
    .logo-text {
        font-size: 1.1rem;
    }
}


/* --- LOGOS NO RODAPÉ (REDUZIDAS) --- */
.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;          /* Espaço generoso entre as duas marcas */
    margin-bottom: 25px;
    flex-wrap: wrap;    /* Garante que elas quebrem linha se a tela for muito pequena */
}

.footer-logo-img {
    height: 35px;       /* Tamanho Pequeno/Médio (antes estava maior) */
    width: auto;
    opacity: 0.6;       /* Fica mais discreta, integrando ao design escuro */
    filter: grayscale(30%); /* Deixa as cores menos vibrantes para não distrair */
    transition: 0.3s ease;
    border-radius: 6px;
}

.footer-logo-img:hover {
    opacity: 1;         /* Ganha destaque total ao passar o mouse */
    filter: grayscale(0%);
    transform: translateY(-3px);
}

/* Rodapé Texto */
footer p {
    font-size: 0.8rem;
    opacity: 0.5;
    letter-spacing: 0.5px;
}

/* AJUSTE PARA CELULAR */
@media (max-width: 600px) {
    .footer-logo-img {
        height: 30px;   /* Ainda menor no celular para caber uma ao lado da outra */
    }
    .footer-logos {
        gap: 20px;
    }
}

/* --- ACCORDION DE SERVIÇOS --- */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--glass);
    border: 1px solid rgba(108, 76, 255, 0.2);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    transition: 0.3s;
}

.accordion-header:hover {
    background: rgba(108, 76, 255, 0.1);
}

.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

/* Conteúdo que abre e fecha */
.accordion-content {
    max-height: 0; /* Começa fechado */
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.content-inner {
    padding: 0 25px 25px 45px; /* Recuo à esquerda de 45px para organização */
}

.content-inner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.price-tag {
    color: #00ff88; /* Verde sucesso para o preço */
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn-service {
    display: inline-block;
    padding: 8px 18px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Classe que o JavaScript vai adicionar */
.accordion-item.active .accordion-content {
    max-height: 500px; /* Define uma altura máxima para a animação */
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.accordion-item.active .icon {
    transform: rotate(45deg); /* Transforma o + em x */
    color: var(--secondary);
}

/* LINK DE DESTAQUE NA NAVEGAÇÃO SERVIÇOS */
.nav-link-highlight {
    color: var(--primary) !important; /* Cor roxa para dar ênfase */
    font-weight: 800 !important;
    position: relative;
    padding: 5px 10px;
    transition: 0.3s;
}

.nav-link-highlight::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 10px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link-highlight:hover::after {
    width: 70%;
}

.nav-link-highlight:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(108, 76, 255, 0.4);
}

/* Ajuste para não apertar muito no Mobile */
@media (max-width: 900px) {
    .nav-links {
        gap: 10px;
    }
    .nav-link-highlight {
        font-size: 0.8rem;
    }
}

/* --- CORES POR ESPECIALISTA (BORDAS LATERAIS) --- */

/* 1. Rodrigo - Verde (Logística/Estratégia) */
.accordion-item:nth-child(1) { border-left: 5px solid #00ff88; }

/* 2. Diego - Rosa/Pink (Sistemas/BI) */
.accordion-item:nth-child(2) { border-left: 5px solid #ff4cff; }

/* 3. James - Azul Claro (Acadêmico/Lean) */
.accordion-item:nth-child(3) { border-left: 5px solid #00d4ff; }

/* 4. Eduardo - Roxo (Automação/IA) */
.accordion-item:nth-child(4) { border-left: 5px solid #6c4cff; }

/* 5. Time Completo - Destaque Ouro/Gradiente */
.accordion-item:nth-child(5) { 
    border-left: 5px solid #ffcc00; 
    background: linear-gradient(rgba(255, 204, 0, 0.05), transparent) !important;
}

/* --- AJUSTE NO BOTÃO DE SERVIÇO --- */
.btn-service {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #fff;
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(108, 76, 255, 0.4);
}


/* --- ESTILO DOS SUB-TÓPICOS DENTRO DA ABA --- */
.service-sub-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-sub-item h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-sub-item p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

/* DESTAQUE PARA A ÚLTIMA ABA (TIME COMPLETO) */
.highlight-item {
    border: 2px solid var(--primary) !important;
    background: linear-gradient(rgba(108, 76, 255, 0.1), transparent) !important;
}

/* Recuo à esquerda para dar o ar de "catálogo" */
.content-inner {
    padding: 25px 30px 30px 50px; /* Recuo de 50px para organizar sub-itens */
}

/* Ajuste de altura máxima para suportar mais conteúdo */
.accordion-item.active .accordion-content {
    max-height: 1200px; /* Aumentado para caber os 3 sub-itens */
}


/* CONTAINER PARA OS LINKS DO MENTOR */
.mentor-links {
    display: flex;
    gap: 20px; /* Espaço entre LinkedIn e Catálogo */
    justify-content: center;
    margin-top: 10px;
}

/* ESTILO DO LINK DO CATÁLOGO meu site */
.catalog-link {
    color: #00ff88; /* Verde Neon para destacar o portfólio */
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}

.catalog-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -2px;
    left: 0;
    background-color: #00ff88;
    transition: width 0.3s ease;
}

.catalog-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

.catalog-link:hover::after {
    width: 100%;
    background-color: #fff;
}

/* --- ESTILIZAÇÃO DO E-MAIL COM DESTAQUE --- */
.contact-email-wrapper {
    text-align: center;
    margin-top: -35px;  /* Puxa para mais perto do título */
    margin-bottom: 40px; 
    width: 100%;
}

.contact-email {
    font-family: 'Inter', sans-serif;
    color: #ffffff; /* Cor Branca pedida */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 5px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03); /* Fundo quase invisível */
    border: 1px solid rgba(108, 76, 255, 0.2); /* Borda roxa bem sutil */
    transition: all 0.4s ease;
    display: inline-block;
}

.contact-email:hover {
    color: #fff;
    background: rgba(108, 76, 255, 0.1); /* Fundo roxo suave no hover */
    border-color: var(--primary); /* Borda brilha no roxo principal */
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(108, 76, 255, 0.4); /* Efeito Glow */
    letter-spacing: 1.5px; /* Efeito de expansão leve */
}

/* Ajuste Responsivo para Celulares */
@media (max-width: 768px) {
    .contact-email-wrapper {
        margin-top: -30px;
    }
    .contact-email {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}
