:root {
    /* QUANTIDADE DE IMAGENS */
    --logos: 24;
    --clientes: 3;
    
    /* Cores */
    --theme-gray: #191919;
    --color-main-blue: #0056b3;
    --primary-blue: #6a9aff;
    --neon-cyan: #00e5ff;
    --neon-purple: #7b2fff;
    --neon-pink: #d400ff;
    --neon-magenta: #b300ff;
    --neon-green: #19c919;
    --color-light-gray: #ccc;
    --color-dark-gray: #333;

    /* Gradientes e Fundos */
    --gradient-blue: linear-gradient(135deg, #001040, #001f80);
    --gradient-purple: linear-gradient(180deg, #200f60, #001040);
    --gradient-gold: linear-gradient(135deg, #ddaa60, #ddbb50);
    --gradient-card: linear-gradient(145deg, #020617, #0a1f5a 60%, #0e3aff);
    --dark-bg: #020609;
    --mid-bg: #081038;
    --light-bg: #0d0d0e;
    --card-bg: #0b1635;
    --border-color: #1b2a64;
    --light-blue: #a5c9ff;
    --light-cyan: #65c9ff;

    /* Tipografia e Espaçamento */
    --text-dark: #020617;
    --text-muted: #7b8baf;
    --success: #00ff99;
    --warning: #ffd500;
    --error: #aa0022;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 100px;
    --radius-sm: 2px;
    --radius-md: 2px;
    --radius-lg: 2px;

    /* Sombras */
    --shadow-glow-blue: 0 0 20px rgba(0, 153, 255, 0.4);
    --shadow-glow-cyan: 0 0 20px rgba(0, 253, 255, 0.4);
    --shadow-glow-purple: 0 0 20px rgba(155, 50, 255, 0.4);
    --shadow-glow-gold: 50 50 20px rgba(240, 240, 85, 0.4);
    --shadow-glow-green: 50 50 20px rgba(85, 240, 85, 0.4);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 6px 12px rgba(0, 0, 0, 0.9);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);

    --font-title: 'Oxanium', serif;
    --font-text: 'Space Grotesk', sans-serif;
}

/* === GERAIS === */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    color: var(--color-dark-gray);
    overflow-x: hidden; /* Evita scroll horizontal indesejado no mobile */
}

container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: block; /* Garante comportamento de bloco */
}

h1, h2, h3 { margin-bottom: 1rem; }
p { line-height: 1.6; }
section { padding: 60px 20px; }

/* === HEADER === */
header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-sizing: border-box;
    margin: 0 auto;
}



a { text-decoration: none !important; color: var(--theme-gray); }
.logo { font-weight: bold; font-size: 1.5rem; color: var(--color-main-blue); }
.logo img { max-width: 150px; margin-top: 5px; margin-left: 200px; }
nav {margin-left: 10%;}
nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
nav a { text-decoration: none; color: #222; font-weight: 500; }

.btn-cta-header {
    background-color: var(--color-main-blue);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    white-space: nowrap;
}

/* === HERO SECTION === */
#hero {
    background: linear-gradient(135deg, #001f3f, #36454F);
    color: white;
    text-align: center;
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#hero .container {
    max-width: 80%;
}

#hero h1 { font-size: 3rem; margin-bottom: 1rem; }
#hero p { font-size: 1.2rem; margin-bottom: 2rem; }

.hero-btns { display: flex; gap: 15px; justify-content: center; margin-bottom: 40px; }
.btn-hero { padding: 15px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; border: 2px solid white; color: white; }
.btn-hero.primary { background-color: var(--color-main-blue); border-color: var(--color-main-blue); }

.hero-image-placeholder {
    height: 200px;
    width: 800px; /* Será sobrescrito no mobile */
    max-width: 100%; /* Garante responsividade base */
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-image-placeholder img { max-width: 100%; margin-top: -50px; }

#hero video.video-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.2; z-index: 0; pointer-events: none;
}
#hero .container { position: relative; z-index: 1; }

/* === PROBLEMA & ABOUT === */
#problema { background-color: #f9f9f9; text-align: center; }
.cards-stats-container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; margin-top: 40px; }
.stat-card { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); flex: 1 1 250px; }
.stat-icon { font-size: 3rem; margin-bottom: 15px; display: block; }
.stat-card h3 { font-size: 1.2rem; }

#about { text-align: center; margin: 0 auto; padding: 60px 0 100px 0; font-size: 16px; }
.sobre-icons { display: flex; justify-content: center; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.icon-box { text-align: center; margin-top: 80px; }
.icon-box i { font-size: 40px; margin-bottom: 30px; color: #222; }
.icon-box span { display: block; font-weight: bold; margin-top: 10px; }
#quem-somos { border-radius: 10px; max-width: 60%; margin: 0 auto; }

.sobre-bg { position: relative; padding: 40px; overflow: hidden; --logo-size: 80px; --spacing: 5px; --cell-size: calc(var(--logo-size) + (var(--spacing) * 2)); }
.sobre-bg::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://cdn.overnine.com.br/e37f516faca8/assets/img/icon.png');
    background-repeat: repeat;
    background-size: var(--cell-size) var(--cell-size);
    padding: var(--spacing);
    background-origin: content-box; background-clip: content-box;
    opacity: 0.05; z-index: -1;
}

.service-bg-av {
    position: relative;
    background-image: url('/assets/img/bg-services.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

/* Camada escura para melhorar leitura do texto sobre a imagem */
.service-bg-av::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(2, 6, 9, 0.6); /* var(--dark-bg) com transparência */
    z-index: 0;
}

/* Garante que o conteúdo fique acima da camada escura */
.service-bg-av .container {
    position: relative;
    z-index: 1;
}

/* === SERVIÇOS === */
#services { background-color: #000; color: var(--color-light-gray); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }

.service-card {
    background: rgba(64, 102, 190, .2); backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1); color: #89c;
    padding: var(--spacing-lg); position: relative; transition: all 0.3s ease;
    min-height: 33%; display: flex; flex-direction: column;
}
.service-card h3 { color: #dde; margin-top: 0; text-transform: uppercase; }
.service-link { color: #fd6; font-weight: bold; margin-top: 20px; display: block; text-align: right; }
.service-card i { color: #dde; }
.service-card:hover { transform: translateY(-5px); background: rgba(64, 102, 190, .3); box-shadow: var(--shadow-glow-blue); border-color: var(--primary-blue); color: #eee; }
.service-card:hover h3, .service-card:hover i { color: #aac; }

.services-content h3 { text-align: center; }
.services-content i { font-size: 80px; margin: 0 auto; margin-bottom: 20px; margin-top: -90px; }
.services-title { color: #dde; }
.services-title, .quem-somos-title, .service-page-title { font-size: 2em; margin-bottom: 80px; }
#services .services-content { position: relative; z-index: 1; }
#services .video-bg { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; opacity: 0.20; z-index: 0; pointer-events: none; }

/* === OMNIVIEW & SLIDER === */
#omniview { background: linear-gradient(270deg, var(--light-blue), #eef2f7); display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.omniview-content { flex: 1; }
.omniview-content ul { list-style: none; padding: 0; }
.omniview-content li { margin-bottom: 10px; font-weight: bold; }

/* Slider Video */
.slider-container { width: 500px; height: 400px; background: #ddd; border-radius: 10px; overflow: hidden; position: relative; }
.slider-track { display: flex; width: calc(500px * var(--n)); height: 100%; }
.slider-track img, .slider-track video { width: 500px; height: 400px; object-fit: contain; flex-shrink: 0; }
@keyframes slideLoop {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-500px); }
    50%, 70% { transform: translateX(-1000px); }
}

/* === PROVA SOCIAL & LOGOS === */
#prova-social { text-align: center; }
.logo-carousel { overflow: hidden; padding: 40px 0; background: white; white-space: nowrap; position: relative; mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%); }
.logo-track { display: flex; width: calc(250px * 46); animation: scroll 100s linear infinite; }
.logo-item { width: 250px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-item img { max-width: 150px; height: auto; filter: grayscale(100%); opacity: 0.6; transition: 0.3s; }
.logo-item img:hover { filter: grayscale(0%); opacity: 1; margin-top: -2px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 24)); } }
.logo-carousel:hover .logo-track { animation-play-state: paused; }

/* === DEPOIMENTOS === */
.testimonials-wrapper { padding-top: 20px; overflow: hidden; position: relative; }
.testimonial-track { display: flex; gap: 30px; width: max-content; 
    /* HABILITAR ANIMAÇÃO SOMENTE APÓS O CADASTRO DE 4 DEPOIMENTOS */
    /*animation: scrollTestimonials 40s linear infinite; */
}
.testimonial-card { background: #f8f9fa; padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); border: 1px solid #eee; width: 400px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.3s ease; }
.testimonial-card:hover { transform: translateY(-5px); border-color: var(--color-main-blue); }
.testimonial-text { font-style: italic; font-size: 1rem; color: #555; margin-bottom: 20px; line-height: 1.6; }
.testimonial-author { display: flex; text-align: left !important; gap: 15px; margin-top: auto; border-top: 1px solid #eee; padding-top: 15px; }
.author-info h4 { margin: 0; font-size: 0.95rem; color: var(--color-main-blue); font-weight: 700; }
.author-info span { font-size: 0.85rem; color: #888; }
.testimonials-wrapper:hover .testimonial-track { animation-play-state: paused; }
@keyframes scrollTestimonials { 0% { transform: translateX(0); } 100% { transform: translateX(-1290px); } }

/* === SERVICE DETAIL PAGES === */
#service-detail { background-color: var(--dark-bg); color: var(--text-light); padding: 80px 0; }
.service-header { text-align: center; margin-bottom: 50px; }
.service-header h2 { font-family: var(--font-title); font-size: 2.5rem; background: linear-gradient(135deg, white, var(--primary-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; text-transform: uppercase; }
.service-intro { font-size: 1.1rem; max-width: 800px; margin: 0 auto 60px auto; text-align: center; color: var(--color-light-gray); line-height: 1.8; }
.service-details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-bottom: 50px; }
.detail-card { background: rgba(11, 22, 53, 0.6); border: 1px solid var(--border-color); border-radius: 12px; padding: 35px; position: relative; backdrop-filter: blur(10px); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.detail-card:hover { transform: translateY(-5px); box-shadow: 0 0 20px rgba(0, 86, 179, 0.2); border-color: var(--primary-blue); }
.detail-card h3 { font-family: var(--font-title); color: #ccc; font-size: 1.5rem; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
.detail-card h3 i { font-size: 1.2rem; color: var(--primary-blue); }
.custom-list { list-style: none; padding: 0; margin: 0; }
.custom-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 0.95rem; color: #ddd; line-height: 1.5; }

.custom-list li::before { font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; top: 2px; }
/* Remove os ícones antigos (setas e checks) */
.custom-list li::before,
.steps-list li::before,
.check-list li::before {
    content: "" !important; /* Remove o ícone de fonte */
    font-family: inherit !important; /* Remove a referência ao FontAwesome */
    
    /* Cria o 'dot' */
    position: absolute;
    left: 5px; /* Ajuste a posição horizontal */
    top: 7px; /* Ajuste a posição vertical para alinhar com o texto */
    width: 8px;
    height: 8px;
    border-radius: 50%; /* Faz virar uma bolinha */
    background-color: var(--neon-cyan); /* Cor padrão (azul ciano) */
    box-shadow: 0 0 5px var(--neon-cyan); /* Efeito neon */
}

/* Opcional: Cores diferentes para cada lista se desejar manter a distinção sutil */

/* Lista de Etapas (lado esquerdo) - Roxo Neon */
.steps-list li::before {
    background-color: var(--neon-purple);
    box-shadow: 0 0 5px var(--neon-purple);
}

/* Lista de Entregas (lado direito) - Verde Neon */
.check-list li::before {
    background-color: var(--neon-purple);
    box-shadow: 0 0 5px var(--neon-purple);
}

/* Ajuste do preenchimento do item da lista para dar espaço ao ponto */
.custom-list li {
    padding-left: 25px; /* Espaço entre a borda e o texto */
    position: relative;
}


.steps-list li::before { content: "\f061"; color: var(--neon-purple); }
.check-list li::before { content: "\f00c"; color: var(--neon-green); }
.deadline-box { background: linear-gradient(90deg, rgba(0, 229, 255, 0.1), transparent); border-left: 4px solid var(--neon-purple); padding: 20px; border-radius: 0 8px 8px 0; margin: 0 auto 50px auto; max-width: 600px; display: flex; align-items: center; gap: 15px; }
.deadline-box i { font-size: 2rem; color: var(--neon-purple); }
.deadline-content h4 { margin: 0; color: white; font-family: var(--font-title); }
.deadline-content p { margin: 5px 0 0 0; color: var(--color-light-gray); }
.cta-container { text-align: center; padding-bottom: 40px; font-size: 1.5rem; }

/* === COMPONENTES === */
.btn { padding: 10px; border: none; border-radius: var(--radius-md); font-size: 14px; font-weight: 400; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block; text-align: center; }
.btn-primary { background: linear-gradient(135deg, var(--primary-blue), var(--neon-magenta)); color: white; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: rgba(0, 102, 255, 0.4); }
.btn-secondary { background: linear-gradient(135deg, var(--primary-blue), var(--neon-magenta)); color: white; border: 1px solid var(--neon-purple); box-shadow: 0 0 15px var(--neon-magenta); }
.btn-secondary:hover { background: var(--gradient-card); transform: translateY(-2px); }
.btn-response, .btn-quotation { margin: 2% 0 2% 0; }
.btn-response { background: linear-gradient(135deg, var(--error)); box-shadow: 0 0 15px #aa0022; margin-top: 2% !important; }
.btn-quotation { width: 20%; background: linear-gradient(135deg, var(--neon-purple), var(--primary-blue)); }
.btn-response:hover { color: red; background: black; }
.btn-response span, .btn-quotation span { font-size: 10pt; font-weight: 600; }
.btn-response-top { margin: 3% 0 2% 0; font-size: 14pt; }
.btn-response i { color: yellow; font-size: 12px; }
.btn-cta { background-color: var(--color-main-blue); color: white; padding: 15px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; display: inline-block; margin-top: 20px; width: 300px;}

#content { background: linear-gradient(270deg, var(--color-light-gray), #eee); }
.insight-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(5px); border: 1px solid rgba(255, 255, 255, 0.1); color: white; background-color: var(--color-light-gray) !important; padding: var(--spacing-lg); position: relative; transition: all 0.3s ease; min-height: 33%; display: flex; flex-direction: column; color: #777; }
.insight-card h3 { color: var(--theme-gray); margin-top: 0; text-transform: uppercase; }
.insight-link { color: var(--color-main-blue); font-weight: bold; margin-top: 20px; display: block; text-align: right; }
.insight-card i { color: var(--theme-gray); }
.insight-card:hover { transform: translateY(-5px); background: rgba(64, 102, 190, .3); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); color: #292929 }
.insight-card:hover h3, .insight-card:hover i { color: #777; }

.whatsapp-link { position: fixed; width: 60px; height: 60px; bottom: 40px; right: 40px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 1px 1px 2px #888; z-index: 1000; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.3s; }
.whatsapp-link:hover { background-color: #128C7E; transform: scale(1.1); }

/* CTA FINAL */
#cta-final { background-color: #222; color: white; text-align: center; padding: 64px 20px; }
#cta-final h2 { color: white; font-size: 2rem; }

/* FOOTER */
footer { background: #111; color: #aaa; padding: 5px 5px; text-align: center; }
footer a { color: #aaa; text-decoration: none; margin: 25 10px; }
footer .footer-links { margin-top: 5px; font-size: 0.9rem; }

/* MODAL */
.modal-overlay { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px); }
.modal-content { background-color: #fff; margin: 5% auto; padding: 30px; border-radius: 12px; max-width: 450px; position: relative; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.close-modal { position: absolute; right: 20px; top: 15px; font-size: 28px; font-weight: bold; cursor: pointer; color: #666; }
.modal-content h2 { color: #d9534f; margin-top: 0; }
.input-group { margin-bottom: 15px; text-align: left; }
.input-group label { display: block; margin-bottom: 5px; font-weight: bold; font-size: 0.9rem; }
.input-group input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; box-sizing: border-box; }
.btn-submit-ataque { width: 100%; background-color: #d9534f; color: white; border: none; padding: 15px; font-weight: bold; border-radius: 6px; cursor: pointer; font-size: 1rem; transition: background 0.3s; }
.btn-submit-ataque:hover { background-color: #c9302c; }
input:invalid:focus { border-color: #d9534f; box-shadow: 0 0 5px rgba(217, 83, 79, 0.5); }
input[name="Telefone"]::placeholder { color: #999; }

.content { margin: 0 auto; max-width: 80%; }

/* =========================================================================
   MOBILE RESPONSIVENESS - MEDIA QUERIES (Highly Responsive Update)
   ========================================================================= */

/* Tablets e Dispositivos Menores (Max 1024px) */
@media (max-width: 1024px) {
    container, .content { max-width: 90%; padding: 10px; }
    #quem-somos { max-width: 90%; }
}

/* Mobile Standard (Max 768px) */
@media (max-width: 768px) {
    /* Header Empilhado */
    header { height: auto; flex-direction: column; padding: 15px 0; gap: 15px; position: relative; }
    .logo img { max-width: 120px; }
    nav ul { flex-direction: column; gap: 10px; text-align: center; }
    .btn-cta-header { width: 80%; text-align: center; margin-bottom: 10px; }

    /* Hero */
    #hero { padding: 60px 15px; min-height: auto; }
    #hero h1 { font-size: 2rem; }
    .hero-image-placeholder { width: 100% !important; height: auto; min-height: 180px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .btn-hero { width: 100%; box-sizing: border-box; }

    /* Omniview (Coluna) */
    #omniview { flex-direction: column; text-align: center; gap: 30px; padding: 40px 10px; }
    .omniview-content ul { display: inline-block; text-align: left; }
    .slider-container { width: 100%; height: auto; aspect-ratio: 5/4; }
    .slider-track { width: calc(100% * var(--n)); }
    .slider-track img, .slider-track video { width: 100%; height: 100%; }
    /* Ajuste de animação mobile do slider Omniview se necessário */
    @keyframes slideLoop {
        /* Simplificação para mobile: mantem estático ou ajusta se tiver multiplos */
        0% { transform: translateX(0); }
    }

    /* Serviços & Grids */
    .services-grid, .service-details-grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; }
    
    /* Logos Mobile (Menores e mais rápidos) */
    .logo-item { width: 120px; }
    .logo-item img { max-width: 90px; }
    .logo-track { width: calc(120px * 46); animation: scroll 40s linear infinite; }
    @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-120px * var(--logos))); } }

    /* Depoimentos Mobile (Fluido) */
    .testimonial-card { width: 85vw; max-width: 350px; }
    .testimonial-track { gap: 15px; animation: scrollTestimonialsMobile 30s linear infinite; }
    @keyframes scrollTestimonialsMobile {
        0% { transform: translateX(0); }
        /* Calculo aprox: (85vw + 15px gap) * 3 itens */
        100% { transform: translateX(calc((85vw + 15px) * -var(--clientes))); }
    }

    /* Service Details Pages Mobile */
    .deadline-box { flex-direction: column; text-align: center; border-left: none; border-top: 4px solid var(--neon-cyan); border-radius: 8px; }
    .btn-quotation { width: 100%; padding: 15px; }
    .service-header h2 { font-size: 1.8rem; }
    .detail-card { padding: 20px; }

    /* Modal Mobile */
    .modal-content { width: 90%; margin: 15% auto; padding: 20px; }
}

/* Mobile Small (Max 480px) */
@media (max-width: 480px) {
    #hero h1 { font-size: 1.7rem; }
    .stat-card { padding: 20px; }
    .stat-icon { font-size: 2.5rem; }
    footer a { display: block; margin: 10px 0; }
    .hero-image-placeholder { height: 160px; }
}

       /* ESTILOS DO SELETOR DE IDIOMAS */
        .lang-selector {
            display: flex;
            gap: 10px;
            align-items: right;
        }
        .lang-flag {
            width: 28px;
            height: auto;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s, transform 0.3s;
            border-radius: 2px;
            border: 1px #777 solid;
            box-shadow: 0 0 0px rgba(200,200,255,0.5);
        }
        .lang-flag:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        /* Ajuste Mobile */
        @media (max-width: 768px) {
            .lang-selector {
                margin-right: 40px;
                margin-left: 10px;
            }
        }

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 10%;
    background: rgba(11, 22, 53, 0.95);
    border-top: 1px solid var(--border-color);
    padding-top: 4%;
    z-index: 9990;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    transition: bottom 0.5s ease-in-out;
    color: #fff;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #ddd;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--neon-cyan);
    text-decoration: underline !important;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-cookie-primary {
    background: var(--color-main-blue);
    color: white;
    border: 1px solid var(--color-main-blue);
}

.btn-cookie-primary:hover {
    background: #004494;
}

.btn-cookie-secondary {
    background: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.btn-cookie-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: #fff;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    .btn-cookie {
        width: 45%;
    }
}