/* -------------------- GERAL -------------------- */
html {
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

body {
    background-image: url("img/sl_0210121_40570_43.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.3s;
    margin: 0;
    overflow-x: hidden;
}

body.light-mode {
    background-image: url("img/ChatGPT Image 26 de jan. de 2026, 20_07_44.png");
    color: black;
}

section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px; 
    box-sizing: border-box;
}

/* -------------------- MENU -------------------- */
.menu {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
    gap: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: 0.3s;
}

#langToggle {
    margin-left: 20px; /* Adiciona espaço extra à esquerda do botão de idioma */
    margin-top: 15px;  /* Mantém o ajuste de altura que você já tinha */
}

body.light-mode .menu { 
    background-color: transparent !important; 
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: 0.3s;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

body.light-mode .menu a { 
    color: black; 
    text-shadow: none; 
}

.menu a:hover { 
    transform: scale(1.15); 
}

.menu a.active {
    color: #003366 !important;
    font-weight: bold;
    /* Saturate(2) dobra a intensidade da cor original */
    /* Brightness(0.8) deixa o azul mais profundo/escuro */
    filter: saturate(2) brightness(0.9);
    transition: 0.3s;
}

.logo {
    font-size: 28px !important;
    font-weight: bold;
    margin-right: auto; 
}

/* -------------------- BOTÃO TEMA -------------------- */
.theme-btn { 
    background: none; 
    border: none; 
    cursor: pointer; 
    align-items: center; /* Ajuda a centralizar verticalmente */
}

.theme-icon { 
    width: 50px; 
    height: 50px; 
    object-fit: contain; 
    transition: 0.3s;
    filter: brightness(0) invert(1);
}

/* --- MODO CLARO --- */
/* Quando o body tiver a classe .light-mode, ambos ficam pretos */
body.light-mode .theme-icon { 
    filter: brightness(0); /* Remove o branco e deixa preto */
}

/* --- AJUSTE DE POSIÇÃO DO IDIOMA --- */
/* Mantemos o seu ajuste de "descer um pouco" apenas para o de idioma */
#langToggle .theme-icon {
    position: relative;
    top: 1px;
    width: 40px;       /* Aumente este valor */
    height: 40px;      /* Aumente este valor */
    
}

.menu-controls {
    display: flex;
    align-items: center; /* Alinha os botões pelo centro */
    gap: 15px;
}

#langToggle {
    margin-top: 3px; /* Empurra apenas o botão de idioma para baixo */
}

.theme-icon:hover { 
    transform: scale(1.25); 
}

/* -------------------- PRINCIPAL (ABOUT) -------------------- */
.container { 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px; 
    transform: translateY(-50px);
} 

.texto { 
    font-size: 60px; 
    margin: 0; 
    color: #003366; 
    filter: saturate(2.0); 
    transition: 0.3s;
}

.texto3 { 
    font-size: 60px; 
    margin: 0; 
    transition: 0.3s;
}

.texto4 { 
    font-size: 20px; 
    margin: 10px 0; 
    max-width: 700px; 
    line-height: 1.2; 
    color: #94A3B8; 
    transition: 0.3s;
}

body.light-mode .texto4 { 
    color: #334155; 
}

/* -------------------- REDES SOCIAIS -------------------- */
.top-links { 
    display: flex; 
    gap: 35px; 
    margin-top: 25px; 
}

.icon { 
    width: 40px; 
    cursor: pointer; 
    transition: 0.3s; 
}

.icon:hover { 
    transform: scale(1.15); 
}

body.light-mode .icon { 
    filter: brightness(0); 
}

/* -------------------- FOTO -------------------- */
.foto-container { 
    position: relative; 
    width: 350px; 
    height: 350px; 
}

.foto { 
    width: 100%; 
    height: 100%; 
    border-radius: 50%; 
    object-fit: cover; 
    z-index: 1; 
    position: relative; 
    transition: 0.3s;
}

.foto-container::before {
    content: ""; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    border-radius: 50%; 
    background: #003366; 
    filter: blur(15px); 
    z-index: -1; 
    opacity: 0.5;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.foto-container:hover::before {
    filter: blur(30px); 
    opacity: 0.9; 
    transform: scale(1.15);
}

/* -------------------- SKILLS SECTION -------------------- */
.skills-page {
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: stretch; 
    gap: 60px; 
    /* Usei apenas um padding para o topo */
    padding: 150px 50px 100px 50px; 
}

.quadrado-pai {
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    grid-template-rows: repeat(2, 1fr);
    width: 100%;
    max-width: 950px;
    gap: 20px;
}

/* --- ESTILO UNIFICADO (Sessão e Certificados) --- */
.sessao, .certificates {
    background-color: #121212; 
    outline: 1px solid #454547;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    transition: 0.4s ease; /* Transição única para ambos */
    outline-offset: -3px;
}

/* Animação de Hover IDÊNTICA para ambos */
.sessao:hover, .certificates:hover { 
    transform: translateY(-5px); 
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.6); 
}

.sessao {
    display: flex; 
    flex-direction: column; 
    padding: 20px; 
    min-height: 220px;
    height: 100%; 
    border-radius: 20px; 
}

.sessao-header { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 20px; 
}

.sessao-header h3 {
    font-size: 1.1rem;
    color: white;
    margin: 0;
    transition: 0.3s;
}

.header-icon { 
    filter: brightness(0) invert(0.9); 
    width: 30px; 
    transition: 0.3s;
}

.icon-circle {
    background-color: #2C2C2E; 
    width: 45px; 
    height: 45px;
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    transition: 0.3s;
}

/* --- GRID DOS CARDS MENORES --- */
.tech-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px; 
}

.tech-card {
    background-color: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; 
    padding: 10px 15px; 
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    justify-content: flex-start; 
    gap: 12px;
    width: 100%; 
    height: 48px; 
    box-sizing: border-box;
    transition: 0.3s;
}

.tech-card:hover {
    transform: translateY(-5px); 
    
    /* Muda a cor da borda para azul */
    border-color: #003366; 
    
    /* Cria o efeito de brilho azul (Glow) */
    /* 0 0 15px define um brilho centralizado e suave ao redor do card */
    box-shadow: 0 0 10px #003366;
    
    /* Garante que o fundo não mude bruscamente */
     
}

.tech-card img { 
    width: 25px; 
    height: 25px; 
    object-fit: contain; 
}

.tech-card span { 
    font-size: 0.85rem; 
    color: #94A3B8; 
    font-weight: 500;
    transition: 0.3s;
}

/* -------------------- CERTIFICATES -------------------- */
.certificates {
    width: 100%;
    max-width: 600px; 
    padding: 20px; 
    min-height: 500px;
}

/* Estilo base do link de certificados */
.cert-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 5px 0; /* Remove o padding lateral, mantém um pequeno respiro vertical */
    background-color: transparent; /* Remove o fundo */
    border: none; /* Remove a borda */
    transition: 0.3s ease;
    width: fit-content;
}

.cert-link .mini-icon {
    width: 30px !important;  /* Ajuste esse valor para o tamanho desejado */
    height: 30px !important;
    transition: 0.3s ease;
}

.cert-link span {
    color: #94A3B8;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

/* AJUSTE PARA MODO CLARO */
body.light-mode .cert-link {
    
    border-color: #D1D5DB;
}

body.light-mode .cert-link span {
    color: #1E293B;
}


.texto10 { 
    margin: 0 0 20px 0; 
    font-size: 1.3rem; 
    color: white; 
    transition: 0.3s;
}

/* -------------------- MODO CLARO -------------------- */
body.light-mode .sessao, 
body.light-mode .certificates {
    background-color: #F2F2F2; 
    color: black; 
    outline-color: #71717A;
}

body.light-mode .sessao-header h3, 
body.light-mode .texto10 { 
    color: black; 
}

body.light-mode .tech-card { 
    background-color: #E5E7EB; 
    border-color: #D1D5DB; 
}

body.light-mode .tech-card span { 
    color: #1E293B; 
}

body.light-mode .header-icon { 
    filter: none; 
}

/* Ajuste para o círculo do ícone no Modo Claro */
body.light-mode .icon-circle {
    background-color: #D1D5DB; /* Um cinza claro que combina com as bordas */
}

body.light-mode .tech-card img[src*="github"] {
    filter: brightness(0);
}

body.light-mode .tech-card:hover {
    border-color: #003366; /* Um azul mais escuro e fechado para dar contraste */
    
    /* Brilho mais denso e menos transparente */
    box-shadow: 0 0 10px #003366;
    filter: saturate(2) brightness(0.9);
}

body.light-mode .container-maior{
    background-color: #F2F2F2; 
    color: black; 
    outline-color: #71717A;
}

body.light-mode  .project-card{
    background-color: #F2F2F2; 
    color: black; 
    outline-color: #71717A;
}

body.light-mode .project-info p{
    color: #334155; 
}

body.light-mode .btn-github { 
    background: #E5E7EB;
    color: black;
}

body.light-mode .btn-github .mini-icon {
    filter: brightness(0);
}

/* -------------------- PÁGINA DE PROJETOS -------------------- */
.projects-page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px 40px 80px;
    min-height: 100vh;
    margin-top: -80px;
}

/* -------------------- CARD DO PROJETO -------------------- */
.project-card {
    display: block !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; /* Empurra as infos para um lado e o chat para o outro */
    
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    padding: 30px !important;
    gap: 30px;

    /* AQUI ESTÁ O SEGREDO: */
    width: 250px !important;   /* Largura fixa: ele não cresce mais */
    height: 330px !important;  /* Altura fixa: evita o pulo vertical */
    margin: 0 auto;
    overflow: hidden;
    margin-left: -1px;
    transition: 0.3s ease;
}


/* -------------------- ÍCONE DO GITHUB -------------------- */
.mini-icon {
    width: 18px;    /* Tamanho ligeiramente menor costuma alinhar melhor visualmente */
    height: 18px;
    display: block;  /* Remove o espaço extra de elementos "inline" */
    margin-top: -2px;
    transition: 0.3s;
}

/* -------------------- INFO DO PROJETO -------------------- */
.project-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 250px !important;
    flex: none !important;
}

.project-info h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #003366;
    filter: brightness(1.5);
    transition: 0.3s;
}

.project-info p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #94A3B8;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* -------------------- BOTÕES -------------------- */
.project-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-toggle, .btn-primary, .btn-github {
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8rem;
    text-align: center;
}

.btn-toggle, .btn-primary { 
    background: #003366; 
    color: white; 
    filter: brightness(1.5);
}

.btn-github { 
    background: #333; 
    color: white; 
    border: 1px solid #555; 
    display: flex;
    align-items: center;   /* Alinha imagem e texto verticalmente pelo centro */
    justify-content: center; /* Centraliza */
    gap: 6px;
    line-height: 1;
    transition: 0.3s;
}

/* -------------------- JANELA DE CHAT -------------------- */
#chat-window {
    position: relative !important;
    width: 300px !important;
    height: 400px !important;
    background: white !important;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 14 !important;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.3);
    width: 100% !important;
    height: 100% !important;
    /* O restante do seu CSS do chat-window continua igual */
    position: relative !important;
}

.chat-hidden { 
    display: none !important; 
}

#chat-header { 
    background: #003366; 
    color: white; 
    padding: 15px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    font-weight: bold;
    filter: brightness(1.5);
}

#chat-messages { 
    flex: 1; 
    padding: 15px; 
    overflow-y: auto; 
    background: #f9f9f9; 
    display: flex; 
    flex-direction: column; 
    color: #333;
}

/* -------------------- MENSAGENS DO CHAT -------------------- */
.bot-msg, .user-msg { 
    padding: 8px 12px; 
    border-radius: 10px; 
    margin-bottom: 10px; 
    max-width: 85%; 
    font-family: sans-serif; 
    font-size: 12px !important;
}

.bot-msg { 
    background: #e9e9eb; 
    align-self: flex-start; 
    color: #333; 
}

.user-msg { 
    background: #003366; 
    color: white; 
    align-self: flex-end;
     filter: brightness(1.5);
}

/* -------------------- INPUT DO CHAT -------------------- */
#chat-input-area { 
    display: flex; 
    padding: 10px; 
    border-top: 1px solid #eee; 
    background: white;
}

#chat-input-area input { 
    flex: 1; 
    border: none; 
    outline: none; 
    padding: 5px; 
    color: #333;
}

#chat-input-area button { 
    background: none; 
    border: none; 
    color: #003366; 
    font-size: 20px; 
    cursor: pointer;
     filter: brightness(1.5); 
}

#chat-circle { 
    display: none !important; 
}

/* A CAIXA EXTERNA (O container que você acabou de criar) */
.container-maior {
    background-color: #111;      /* Cor de fundo da caixa maior */
    padding: 30px;               /* Espaço entre a borda dela e o card de dentro */
    border-radius: 30px;         /* Bordas arredondadas da caixa maior */
    
    /* Centraliza o project-card dentro dela */
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    /* Sombra para dar profundidade em relação ao fundo do site */
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.6); 
    width: 90%;                 /* Defina uma largura para a caixa pai */
    max-width: 1550px;
    min-height: 700px;          /* Altura para você ver o card "preso" no canto */
    margin-top: 80px;
    position: relative;
    margin-left: -55px;
    outline: 1px solid #454547;
    outline-offset: -3px;
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px); 
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.6); 
}


#chat-container-local {
    width: 300px;  /* Mesma largura que o seu chat-window tem */
    height: 400px; /* Mesma altura que o seu chat-window tem */
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;       /* Distância do fundo da caixa pai */
    right: 20px;
    z-index: 9999;
    cursor: grab;
}

#chat-container-local:active {
    cursor: grabbing;
}


.chat-container-hidden {
    display: none !important;
}

/* Estilização das linguagens/tecnologias */
.project-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px; /* Espaço antes dos botões */
}

.project-techs span {
    background: rgba(0, 51, 102, 0.3); /* Um azul escuro transparente */
    color: #0660b9; /* Um azul mais claro para destaque */
    border: 1px solid rgba(96, 165, 250, 0.2);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.light-mode .project-techs span {
    background: rgba(0, 51, 102, 0.3); /* Um azul escuro transparente */
    color: #1e40af; /* Azul escuro legível */
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* -------------------- CONTATO MINIMALISTA -------------------- */
.contact-minimal-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px; /* Espaço entre os links e o texto */
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    padding-left: 100px;
}

/* Coluna dos Links */
.contact-column-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-right: 2px solid rgba(0, 51, 102, 0.3); /* Uma linha sutil divisória */
    padding-right: 60px;
}

.contact-link-row {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-link-row span {
    color: #94A3B8;
    font-size: 1.2rem;
    font-weight: 500;
    transition: 0.3s;
}

.contact-link-row:hover {
    transform: translateX(10px);
}

.contact-link-row:hover span {
    color: #003366;
    filter: saturate(2);
}

/* Coluna do Texto */
.contact-column-text {
    max-width: 550px;
}

.contact-column-text .texto {
    font-size: 50px;
    margin-bottom: 15px;
}


/* Seleciona o link do e-mail */
.ajuste-email {
    display: flex;
    align-items: center; /* Alinha ícone e texto verticalmente pelo centro */
    padding-left: 2px;  /* Empurra o conjunto todo (ícone + texto) para a direita */
    gap: 20px;           /* Mantém um espaço fixo e reto entre o ícone e o texto */
}

/* Garante que o ícone fique branco no modo escuro */
.ajuste-email .icon {
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

/* No modo claro, volta a ser preto */
body.light-mode .ajuste-email .icon {
    filter: brightness(0);
}

/* Quando o body tiver a classe light-mode, altera a cor dos spans de contato */
body.light-mode .contact-link-row span {
    color: #334155;  /* Mesma cor azul do "Let's Talk" */
}

/* Opcional: Ajuste do hover no modo claro para não sumir */
body.light-mode .contact-link-row:hover span {
    filter: saturate(3) brightness(0.8); /* Fica levemente mais escuro ao passar o mouse */
    color: #003366;
}


/* -------------------- RESPONSIVIDADE (CELULAR) -------------------- */

/* Este bloco só será aplicado em telas com largura máxima de 768px (tablets e celulares) */
/* -------------------- RESPONSIVIDADE (CELULAR) -------------------- */

@media (max-width: 768px) {

    html, body {
        background-color: #000000; 
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
    }
    
    section {
        padding-top: 10px;    /* Reduzido de 20px */
        padding-bottom: 10px; /* Reduzido de 20px */
        min-height: auto;
        margin-bottom: 0px;
    }

    #contact { scroll-margin-top: 50px; }
    #projects { scroll-margin-top: 50px; }

    /* MENU: Focado apenas nos dois ícones centralizados */
    .menu {
        position: absolute !important; /* Muda de fixed para absolute */
        top: 25px; /* Distância do topo do site */
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        
        /* Mantém o fundo invisível */
        background-color: transparent !important; 
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        
        display: flex;
        justify-content: center;
        width: auto;
        height: auto;
        padding: 0;
    }
    

    /* Esconde a logo e os links explicitamente no mobile */
    .menu a, .logo {
        display: none !important;
    }

    .menu-controls {
        display: flex;
        align-items: center;
        gap: 220px; /* Espaço sutil entre o ícone de tema e o de idioma */
        justify-content: center;
    }

    /* ÍCONES: Tamanho controlado para não ficarem gigantes */
    .theme-icon {
        width: 50px !important;
        height: 50px !important;
        margin-top: 0px; /* Aumente (ex: 5px) para descer, diminua (ex: -5px) para subir */
        display: block;
    
    }

    

    #langToggle {
        margin: 0 !important;
        display: flex;
        align-items: center;
        padding: 0 !important;
        margin-top: -10px;
      
    }
    
    #langToggle .theme-icon {
        width: 40px !important; /* O ícone de idioma costuma ser um pouco maior, ajustado aqui */
        height: 40px !important;
        margin-top: -1px; /* Aumente para descer, diminua para subir */
        object-fit: contain;
        
    }

    .menu *, .menu-controls, #langToggle, .theme-icon {
        -webkit-tap-highlight-color: transparent !important;
        -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
        outline: none !important;
        box-shadow: none !important;
        user-select: none;
    }

    #themeToggle {
    transform: translateX(-20px) !important; 
}

    .menu-controls *, 
    .theme-icon, 
    #langToggle, 
    #langToggle .theme-icon {
        -webkit-tap-highlight-color: transparent !important;
        transition: none !important; /* Mata qualquer animação de subida */
        transform: none !important;  /* Impede o movimento de 'pular' ou subir */
    }
    
    body.light-mode .menu {
        background-color: rgb(30, 30, 30, 0.7); /* Fundo escuro bem clarinho */
        border: 1px solid rgba(0, 0, 0, 0.1);  /* Borda escura sutil */
        backdrop-filter: blur(10px);
    }

    /* --- O RESTANTE DO CÓDIGO SEGUE EXATAMENTE IGUAL --- */

    .container {
        flex-direction: column-reverse;
        gap: 30px;
        transform: translateY(0);
        padding: 20px;
        text-align: center;
    }

    .texto, .texto3 { font-size: 35px; }
    .texto4 { font-size: 16px; margin: 10px auto; }
    .top-links { justify-content: center; }

    .foto-container {
        width: 200px;
        height: 200px;
        margin-top: 70px;
        margin-bottom: 10px;
    }

    .skills-page {
        flex-direction: column;
        padding: 40px 20px;
        gap: 60px;
    }

    .quadrado-pai { 
        grid-template-columns: 1fr;
        gap: 10px; 
    }
    .certificates { max-width: 700px; min-height: 300px; }
    .tech-grid { grid-template-columns: 1fr; }

    .projects-page {
        padding: 20px 20px 0 20px;
        margin-top: 0;
        display: flex;
        justify-content: center;
        padding-bottom: 0;
        margin-bottom: -250px;
    }

    .container-maior {
        width: 100%;
        max-width: 100%;
        margin: 0 auto !important; 
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: auto;
    }

    .project-card {
        width: 90% !important;
        max-width: 250px;
        height: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 20px;
        margin-bottom: 20px;
        display: block;
    }

    #chat-container-local {
        width: 90%;
        left: 5%;
        right: 5%;
        bottom: 10px;
        height: 350px;
    }

    /* -------------------- CONTATO MOBILE CORRIGIDO -------------------- */
    .contact-minimal-wrapper {
        display: flex;
        flex-direction: column-reverse; /* Links em cima, Let's Talk em baixo */
        gap: 60px;
        padding: 0 20px 80px 20px;
        text-align: center;
        margin-top: 10px;
    }

    .contact-column-links {
        /* REMOVE A LINHA AZUL AQUI */
        border-right: none !important;
        border-bottom: none !important; 
        
        padding-right: 0;
        padding-bottom: 0;
        
        /* ALINHAMENTO "PAREDE" */
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Encosta os links na parede esquerda */
        gap: 25px;
        
        /* Centraliza o bloco da parede no meio da tela */
        width: fit-content;
        margin: 0 auto;
    }

    /* Garante que o texto gigante não tenha margens que atrapalhem */
    .contact-column-text .texto {
        font-size: 40px !important;
        margin: 0;
    }

    .contact-link-row {
        display: flex;
        align-items: center;
        gap: 25px;
        text-decoration: none;
    }
    
}