/* ==========================================================================
   CSS/style.css - VERSÃO FINAL (GALERIA CENTRALIZADA E COM ZOOM)
   ========================================================================== */

/* 1. RESET E BASE
   --------------------------------------------------------------------------
   Remove margens padrão e define o comportamento base da página.
   Configura o scroll e a cor de fundo personalizada (#16001b).
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: auto !important;
    /* Altura auto para o scroll JS funcionar */
    min-height: 100%;
    /* Bloqueia rolagem horizontal, essencial para o fix da galeria */
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    width: 100%;
    min-height: 100vh;
    position: relative;
    /* Reforço contra rolagem horizontal */
    overflow-x: hidden;
    overflow-y: visible !important;
    /* Garante o scroll vertical */
    font-family: 'Roboto', sans-serif;
    background-color: #16001b;
    /* Cor de fundo roxa escura definida por você */
    color: #e0e0e0;
    line-height: 1.6;
}

img,
video,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. TIPOGRAFIA
   --------------------------------------------------------------------------
   Definição das fontes Rajdhani (títulos) e Fira Code (técnico).
*/
h1,
h2,
h3,
.section-title,
.subsection-title,
header h1,
.footer-title,
.habilidade-categoria-title,
.btn-featured {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.0625rem;
}

.mono,
.certification-caption,
.footer-bottom p,
header p,
.prompt-symbol,
#chat-input,
code,
.btn-secondary,
.project-details {
    font-family: 'Fira Code', monospace;
}

/* 3. FUNDO MATRIX
   --------------------------------------------------------------------------
   Canvas para o efeito de chuva de código ao fundo.
*/
#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* 4. ESTRUTURA E CABEÇALHO
   --------------------------------------------------------------------------
   Configuração do container principal e do Header fixo.
*/
.container {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    /* Padding lateral padrão do site */
    padding: 0 1rem;
}

section {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header {
    background-color: transparent;
    padding: 1rem 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    transition: all 0.4s ease;
}

/* Fundo escuro ao rolar a página */
header.header-scrolled {
    background-color: rgba(5, 10, 5, 0.95);
    border-bottom: 0.0625rem solid rgba(0, 255, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.7rem 0;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.5);
}

/* Ocultar cabeçalho (Controlado pelo JS) */
header.hide-header {
    transform: translateY(-100%);
}

header h1 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 0.6rem #00aaff, 0 0 1.2rem #00aaff;
    animation: neon-blue-pulse 1.5s infinite alternate;
}

@keyframes neon-blue-pulse {
    0% {
        text-shadow: none;
        opacity: 0.8;
    }

    100% {
        text-shadow: 0 0 0.6rem #00aaff, 0 0 1.2rem #00aaff, 0 0 2.5rem #00aaff;
        opacity: 1;
    }
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 0.7rem;
}

header nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 0.25rem;
    transition: 0.3s;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    border-bottom: 0.125rem solid #00ff00;
}

main {
    padding-top: 8.75rem;
}

/* 5. TÍTULOS
   --------------------------------------------------------------------------
   Estilização dos títulos de seção com efeito neon vermelho.
*/
.section-title,
.footer-title {
    font-size: 2.2rem;
    color: #fff;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 0 0.9rem rgba(255, 0, 0, 0.8);
}

.section-title::after,
.footer-title::after {
    content: '';
    display: block;
    width: 4rem;
    height: 0.2rem;
    background: #ff0000;
    margin: 0.6rem auto 0;
    box-shadow: 0 0 0.6rem #ff0000;
}

.subsection-title {
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
    margin: 2.5rem 0 1.5rem;
    text-shadow: 0 0 1rem rgba(0, 255, 0, 0.8);
}

/* 6. CARDS GERAIS (DESKTOP)
   --------------------------------------------------------------------------
   Estilos base dos cards: vidro, bordas, sombras e hover.
*/
.glass-card,
.card,
.interactive-card,
.formacao-item,
.experiencia-item,
.skill-category {
    background: rgba(0, 5, 0, 0.5) !important;
    backdrop-filter: blur(0.5rem);
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
    border-radius: 0.6rem;
    color: #ddd;
    padding: 2rem;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.glass-card:hover,
.interactive-card:hover {
    transform: translateY(-0.3rem);
    background: rgba(10, 20, 10, 0.8) !important;
    border-color: #00ff00;
    box-shadow: 0 0 2rem rgba(0, 255, 0, 0.25);
}

.neon-green-border {
    border: 0.0625rem solid rgba(0, 255, 0, 0.3);
}

/* 7. PROJETO DESTAQUE
   --------------------------------------------------------------------------
   Card principal do topo com animação de pulso neon.
*/
.featured-project-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 0rem;
}

.neon-pulsing-card {
    width: 100%;
    max-width: 56rem;
    border: 0.125rem solid #00ff00;
    background: rgba(0, 20, 0, 0.6) !important;
    animation: neonPulse 2s infinite alternate;
    display: flex;
    align-items: center;
}

@keyframes neonPulse {
    from {
        box-shadow: 0 0 0.6rem rgba(0, 255, 0, 0.3), inset 0 0 0.6rem rgba(0, 255, 0, 0.1);
    }

    to {
        box-shadow: 0 0 1.5rem rgba(0, 255, 0, 0.7), inset 0 0 1.2rem rgba(0, 255, 0, 0.2);
    }
}

.featured-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.featured-icon {
    font-size: 5rem;
    color: #00ff00;
    flex-shrink: 0;
    padding: 1rem;
    text-shadow: 0 0 1rem rgba(0, 255, 0, 0.8);
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.6rem);
    }
}

.featured-text h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 0.6rem rgba(0, 255, 0, 0.5);
}

.project-details {
    color: #00ff00 !important;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.btn-featured {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    background: rgba(0, 255, 0, 0.1);
    border: 0.0625rem solid #00ff00;
    color: #00ff00;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.3s;
}

.btn-featured:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 1.2rem #00ff00;
    transform: scale(1.05);
}

/* 8. LISTA DE PROJETOS E BOTÕES (DESKTOP)
   --------------------------------------------------------------------------
   Grid de projetos secundários e botões.
*/
.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.card {
    flex: 1 1 18rem;
    max-width: 24rem;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.btn-secondary {
    margin-top: auto;
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border: 0.0625rem solid #00ff00;
    color: #00ff00;
    background: transparent;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: 0.5s;
    text-align: center;
}

.btn-secondary:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 1.2rem #00ff00;
}

/* 9. SKILLS & FORMAÇÃO
   --------------------------------------------------------------------------
   Listas de habilidades e grid de formação.
*/
.skills-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.skill-category {
    flex: 1;
    min-width: 18rem;
    padding: 2rem;
}

.habilidade-categoria-title {
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 0.125rem solid #00ff00;
    padding-bottom: 1rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 0.6rem rgba(0, 255, 0, 0.5);
}

.habilidade-categoria-title i {
    margin-right: 0.8rem;
    color: #00ff00;
}

.skill-category ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.skill-category ul li i {
    margin-right: 1rem;
    width: 1.5rem;
    text-align: center;
    color: #3498db;
}

.formacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.formacao-item h3 {
    color: #fff;
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
}

.formacao-item h3 i {
    color: #3498db;
    margin-right: 0.8rem;
}

/* 10. SWIPER (SLIDES DESKTOP)
   --------------------------------------------------------------------------
   Configuração dos carrosséis para Desktop.
*/
.certificacoes-swiper-container {
    width: 100%;
    padding: 0 0 3rem;
    margin-bottom: 0;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    flex-direction: row;
}

.certificacoes-swiper-container .swiper-slide {
    width: 21rem !important;
    height: 14rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0.6rem;
    overflow: hidden;
    border: 0.0625rem solid rgba(0, 255, 0, 0.3);
    padding: 0 !important;
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.certificacoes-swiper-container .swiper-slide:hover {
    transform: translateY(-0.5rem) scale(1.02);
    border-color: #00ff00;
    box-shadow: 0 0 1.5rem rgba(0, 255, 0, 0.5);
}

.certificacoes-swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experiencia-gallery {
    width: 100%;
    padding-bottom: 3rem;
    overflow: hidden;
}

.gallery-slide {
    width: 17rem !important;
    height: 17rem !important;
    border-radius: 0.6rem;
    border: 0.125rem solid #00ff00;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 0 !important;
    flex-shrink: 0;
}

.gallery-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: #888;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #00ff00;
    opacity: 1;
}

/* 11. EXPERIÊNCIA E FOOTER
   --------------------------------------------------------------------------
   Seção de experiência e rodapé.
*/
.experiencia-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.experiencia-item h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
}

.experiencia-item h3 i {
    color: #00ff00;
    margin-right: 0.8rem;
}

.experiencia-item ul li {
    margin-left: 1.2rem;
    list-style: none;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.experiencia-item ul li::before {
    content: '>';
    position: absolute;
    left: -1.2rem;
    color: #00ff00;
    font-weight: bold;
}

#contato-footer {
    background-color: transparent !important;
    padding: 0;
    margin-top: 2rem;
    text-align: center;
}

.neon-footer-name {
    color: #fff;
    text-shadow: 0 0 0.6rem #09ff00;
    font-weight: bold;
}

.footer-contato p a {
    color: #bbb;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contato p a:hover {
    color: #00ff00;
    text-shadow: 0 0 0.6rem #00ff00;
}

.social-icons-wrapper {
    gap: 1.2rem;
    margin-top: 1rem;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
}

.social-icon {
    color: #3498db;
    transition: 0.5s;
    opacity: 0.8;
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.2);
    text-shadow: 0 0 1rem #3498db;
}

.footer-bottom {
    margin-top: 1.5rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    padding-bottom: 2rem;
    color: #666;
    font-size: 0.8rem;
}

/* 12. CHAT ASSISTENTE
   --------------------------------------------------------------------------
   Estilos do Chat com IA (Botão flutuante com tempo personalizado 1.42s).
*/
#chat-launcher {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 4rem;
    height: 4rem;
    z-index: 2147483647 !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #000;
    border: 0.125rem solid #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 1.25rem rgba(0, 255, 0, 0.4);
    animation: pulse 1.42s infinite;
}

#chat-launcher img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 1rem rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

#chat-window {
    position: fixed;
    bottom: 6.25rem;
    right: 1.25rem;
    width: 22rem;
    height: 31.25rem;
    background: rgba(5, 10, 5, 0.98);
    backdrop-filter: blur(0.625rem);
    border: 0.0625rem solid #00ff00;
    border-radius: 0.6rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 3rem rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.25rem);
    transition: all 0.3s ease-in-out;
    z-index: 2147483646 !important;
}

#chat-window.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: all !important;
}

.chat-window-header {
    background: rgba(0, 20, 0, 0.95);
    padding: 1rem;
    border-bottom: 0.0625rem solid #00ff00;
    color: #00ff00;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chat-close-btn {
    background: transparent;
    border: none;
    color: #00ff00;
    cursor: pointer;
    font-size: 1.2rem;
}

#chat-corpo {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mensagem {
    max-width: 85%;
    padding: 0.6rem 0.9rem;
    border-radius: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.mensagem.assistente {
    align-self: flex-start;
    background: rgba(0, 30, 0, 0.8);
    color: #00ff00;
    border: 0.0625rem solid rgba(0, 255, 0, 0.3);
}

.mensagem.usuario {
    align-self: flex-end;
    background: rgba(50, 50, 60, 0.8);
    color: #fff;
    border: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

#chat-input-area {
    padding: 1rem;
    border-top: 0.0625rem solid #00ff00;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
}

#chat-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    outline: none;
    margin-left: 0.5rem;
    font-size: 1rem;
}

#chat-enviar {
    background: transparent;
    border: none;
    color: #00ff00;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 0.5rem;
}

.blink {
    animation: blinker 0.5s linear infinite;
    color: #00ff00;
}

@keyframes blinker {
    50% {
        opacity: 0.3;
    }
}

/* ==========================================================================
   13. RESPONSIVIDADE E AJUSTES FINAIS (CORREÇÃO MOBILE + SLIDES)
   ========================================================================== */

/* 1. CONTAINER GERAL DOS PROJETOS */
.cards-wrapper {
    display: flex;
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    padding-bottom: 3rem;
    margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   2. PROJETOS NORMAIS (Batalha Naval, Xadrez, Trunfo)
   -------------------------------------------------------------------------- */
.card {
    /* Tamanho e comportamento flexível */
    flex: 1 1 20rem !important;
    max-width: 24rem !important;
    width: auto !important;
    height: auto !important;
    /* Altura automática para não cortar o botão */

    display: flex;
    flex-direction: column;
    margin-bottom: 0 !important;
    overflow: hidden;
    /* Garante que a imagem respeite as bordas arredondadas */
}

/* Imagem dos Projetos */
.card .card-image {
    width: 100% !important;
    height: 13rem !important;
    object-fit: cover !important;
    object-position: top center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 !important;
    /* Remove margens extras */
}

/* Conteúdo dos Projetos */
.card .card-content {
    padding: 0.5rem !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card .btn-secondary {
    width: 100%;
    margin-top: 1rem !important;
    display: block !important;
    /* Garante que o botão apareça */
}


/* --------------------------------------------------------------------------
   3. CONFIGURAÇÃO DA PATENTE (ID)
   -------------------------------------------------------------------------- */
#card-patente {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    border-color: #00ff00 !important;
    margin-bottom: 1rem !important;
    display: flex;
    padding: 0 !important;
    /* Remove padding do container principal */
}


/* --------------------------------------------------------------------------
   4. CORREÇÃO DOS SLIDES (SWIPER) - IMPORTANTE
   Isso impede que as regras de ".card" afetem os slides ".swiper-slide"
   -------------------------------------------------------------------------- */
.swiper-slide {
    display: block !important;
    /* Reseta o display flex do .card */
    width: auto !important;
    /* Deixa o JS do Swiper calcular, ou define fixo abaixo */
    margin-bottom: 0 !important;
}

/* Certificados (4/3) */
.certificacoes-swiper-container .swiper-slide {
    width: 21rem !important;
    /* Largura fixa boa para desktop */
    height: 14rem !important;
    /* Proporção 4:3 */
}

/* Galeria Atuação (1/1) */
.gallery-slide {
    width: 18rem !important;
    height: 18rem !important;
    /* Quadrado */
}


/* --------------------------------------------------------------------------
   5. MEDIA QUERIES (COMPORTAMENTO NAS TELAS)
   -------------------------------------------------------------------------- */

/* DESKTOP (PC > 816px) */
@media (min-width: 51rem) {

    /* Patente Horizontal */
    #card-patente {
        flex-direction: row !important;
        align-items: center !important;
    }

    #card-patente .card-content {
        width: 80% !important;
        padding: 1rem !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
        align-items: flex-start !important;
    }

    #card-patente .btn-secondary {
        width: auto !important;
    }

    #card-patente .card-image {
        width: 40% !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
        object-fit: contain !important;
        background-color: #fff !important;
        margin: 1.5rem !important;
        border-radius: 0.5rem !important;
    }
}

/* MOBILE (Celular < 816px) */
@media (max-width: 51rem) {
    html {
        font-size: 1rem;
    }

    .container {
        width: 100%;
        padding: 0 1.2rem;
    }

    main {
        padding-top: 7.5rem;
    }

    /* Centraliza tudo */
    .cards-wrapper,
    .skills-columns,
    .formacao-grid {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    /* --- CORREÇÃO PROJETOS MOBILE --- */
    .card {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0rem !important;
        height: auto !important;
        /* espaco entre os 3 projetos */
    }

    /* Botao patente */
    .card .card-content {
        margin-bottom: 0.5rem !important;
        /* Espaço extra embaixo */
    }

    /* --- CORREÇÃO PATENTE MOBILE --- */
    #card-patente {
        flex-direction: column !important;
    }

    #card-patente .card-content {
        width: 100% !important;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem !important;
        text-align: center;
        align-items: center !important;
    }

    #card-patente .card-image {
        width: 90% !important;
        /* Um pouco menor que o card para não colar */
        max-width: 18rem !important;
        margin: 1.5rem auto !important;
        height: auto !important;
        background-color: #fff;
        border-radius: 0.5rem;
        padding: 0.5rem;
        /* Moldura branca */
    }

    /* --- CORREÇÃO SLIDES MOBILE (LARGURA TOTAL) --- */
    .certificacoes-swiper-container .swiper-slide {
        width: 85vw !important;
        /* 85% da largura da tela */
        height: auto !important;
        aspect-ratio: 4/3 !important;
    }

    .gallery-slide {
        width: 80vw !important;
        height: auto !important;
        aspect-ratio: 1/1 !important;
    }

    /* Outros ajustes */
    .featured-content {
        flex-direction: column;
        text-align: center;
    }

    .featured-icon {
        font-size: 4rem;
        margin-bottom: 0.5rem;
    }

    /* Ajuste margens laterais dos sliders */
    .certificacoes-swiper-container,
    .experiencia-gallery {
        width: 100vw !important;
        margin-left: -1.2rem !important;
        /* Compensa padding do container */
        padding-left: 1rem;
        /* Espaço inicial */
    }

    #chat-window {
        width: 90%;
        right: 5%;
        bottom: 6rem;
        height: 60vh;
    }

    #chat-launcher {
        width: 3.75rem;
        height: 3.75rem;
        bottom: 1rem;
        right: 1rem;
    }
}