/* Importação das Fontes Premium (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* ==================================================
   CORREÇÃO DO "PULO" (LAYOUT STABILITY)
   ================================================== */
html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

/* ==================================================
   VARIAVEIS E RESET
   ================================================== */
:root {
    --cinza-azulado: #2f3e46;
    --cinza-claro: #cad2c5;
    --dourado: #c9a24d;
    --branco: #ffffff;
    --preto: #1b1b1b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* REMOVE O BRILHO AZUL AO CLICAR NO CELULAR */
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--cinza-azulado);
    color: var(--branco);
    font-family: 'Open Sans', "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .btn, nav a {
    font-family: 'Montserrat', sans-serif;
}

/* ==================================================
   HEADER E NAV (CENTRALIZAÇÃO ABSOLUTA DO TEXTO)
   ================================================== */
header {
    padding: 5px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.2);
    width: 100%;
    min-height: 250px; 
    position: relative;
    z-index: 1000; /* Garante que o header fique acima do conteúdo */
}

/* Container que envolve a imagem e o texto da logo */
.logo-container {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-img {
    height: 250px; 
    width: auto;
    object-fit: contain;
}

.logo-texto {
    color: var(--dourado);
    font-size: 35px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    
    /* CORREÇÃO DEFINITIVA DE CENTRALIZAÇÃO */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    margin: 0;
    pointer-events: none; /* Evita que o texto bloqueie cliques no nav */
}

nav {
    display: flex;
    align-items: center;
    z-index: 1002;
}

nav a {
    color: var(--dourado) !important;
    text-decoration: none;
    margin-left: 25px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    white-space: nowrap;
}

nav a:hover, nav a.active {
    color: var(--branco) !important;
    border-bottom: 2px solid var(--dourado);
}

/* ==================================================
   HERO SECTION
   ================================================== */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)
    ), url('../images/fundo1.jpg') center/cover;
}

.hero-content { 
    max-width: 800px; 
}

.hero h2 { 
    font-size: 48px; 
    color: var(--dourado); 
    margin-bottom: 20px; 
    font-weight: 700;
    white-space: nowrap; /* Impede a quebra de linha */
    display: inline-block; /* Vindo do style do HTML */
    width: 100%; /* Vindo do style do HTML */
}

.hero p { font-size: 18px; margin-bottom: 30px; color: var(--cinza-claro); }

.hero-buttons { display: flex; gap: 20px; justify-content: flex-start; margin-top: 30px; flex-wrap: wrap; }

.btn {
    padding: 14px 32px;
    background-color: transparent;
    border: 2px solid var(--dourado);
    color: var(--dourado);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    -webkit-tap-highlight-color: transparent;
}

.btn:hover { background-color: var(--dourado); color: var(--preto); }

/* ==================================================
   SEÇÃO INSTITUCIONAL (CARROSSEL HOME)
   ================================================== */
.institucional {
    padding: 80px 8% 40px;
    background-color: var(--cinza-azulado);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 700px;
    perspective: 1000px;
    overflow: visible; /* Alterado para permitir ver os cards laterais no mobile */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-pista {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inst-card {
    position: absolute;
    width: 450px;
    height: 650px;
    border-radius: 15px;
    border: 1px solid rgba(201, 162, 77, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    background: var(--preto);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.inst-card img { width: 100%; height: 100%; object-fit: contain; display: block; }
.inst-card.active { opacity: 1; pointer-events: auto; z-index: 10; transform: translateX(0) scale(1); filter: blur(0); }
.inst-card.prev-slide { opacity: 0.6; pointer-events: auto; z-index: 5; transform: translateX(-100%) scale(0.8); filter: blur(2px); }
.inst-card.next-slide { opacity: 0.6; pointer-events: auto; z-index: 5; transform: translateX(100%) scale(0.8); filter: blur(2px); }

/* ==================================================
   PÁGINA DE PROJETOS (GALERIA PRINCIPAL)
   ================================================== */
.portfolio-header { padding: 120px 8% 40px; text-align: center; }
.portfolio-header h2 { color: var(--dourado); font-size: 42px; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; }
.portfolio-header p { color: var(--cinza-claro); max-width: 700px; margin: 0 auto; font-size: 18px; }

.container-projetos {
    padding: 40px 8% 100px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.galeria-card {
    background: #111;
    border: 1px solid rgba(201, 162, 77, 0.1);
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    -webkit-tap-highlight-color: transparent;
}

.galeria-card:hover { border-color: var(--dourado); transform: translateY(-5px); }
.capa-projeto { height: 400px; overflow: hidden; cursor: pointer; }
.capa-projeto img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: 0.6s; }
.galeria-card:hover .capa-projeto img { filter: grayscale(0%); transform: scale(1.08); }

.info-projeto {
    padding: 25px;
    background: linear-gradient(to top, #000, transparent);
    position: absolute;
    bottom: 0;
    width: 100%;
    pointer-events: none;
}
.info-projeto h3 { color: var(--branco); font-size: 20px; margin-bottom: 5px; }
.info-projeto span { color: var(--dourado); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* OVERLAY GALERIA (POPUP PROJETOS) */
.overlay-galeria {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95); display: none;
    justify-content: center; align-items: center; z-index: 10000;
}
.overlay-galeria.active { display: flex; }
.img-container { position: relative; display: flex; align-items: center; justify-content: center; width: 90%; height: 80%; }
.img-container img { max-width: 100%; max-height: 100%; object-fit: contain; border: 1px solid rgba(201, 162, 77, 0.3); box-shadow: 0 0 50px rgba(0,0,0,0.8); }

.nav-btn {
    background: rgba(201, 162, 77, 0.1); color: var(--dourado); border: 1px solid var(--dourado);
    padding: 15px 25px; cursor: pointer; font-size: 20px; transition: 0.3s;
    position: absolute; display: flex; align-items: center; justify-content: center; z-index: 10100;
    -webkit-tap-highlight-color: transparent;
}
.nav-btn:hover { background: var(--dourado); color: #000; }
.btn-prev { left: 40px; }
.btn-next { right: 40px; }
.close-hint { position: absolute; top: 30px; color: var(--cinza-claro); font-size: 12px; text-transform: uppercase; letter-spacing: 2px; }

/* ==================================================
   DETALHE SERVIÇOS (PÁGINAS INTERNAS: OBRAS/PROJETOS)
   ================================================== */
.detalhe-servico {
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.texto-explicativo h2 {
    color: var(--dourado);
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: left;
}

.texto-explicativo p {
    color: var(--cinza-claro);
    margin-bottom: 20px;
    font-size: 17px;
    text-align: justify;
}

.texto-explicativo ul {
    list-style: none;
    margin-top: 30px;
}

/* CORREÇÃO DO ALINHAMENTO DO ÍCONE NAS PÁGINAS DE DETALHE */
.texto-explicativo ul li {
    color: var(--branco);
    margin-bottom: 15px;
    display: flex; /* Flex para alinhar o ícone e o texto lado a lado */
    align-items: flex-start;
    text-align: left;
}

.texto-explicativo ul li::before {
    content: "→";
    color: var(--dourado);
    font-weight: bold;
    margin-right: 12px; /* Espaço fixo entre a seta e o texto */
    flex-shrink: 0; /* Impede que a seta diminua */
}

.exemplos-projetos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.projeto-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 77, 0.2);
    height: 300px;
    cursor: default; /* CORREÇÃO: Cursor padrão para imagens ilustrativas */
    -webkit-tap-highlight-color: transparent;
}

.projeto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(40%);
}

.projeto-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.projeto-legenda {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--branco);
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
    text-align: left;
}

/* OVERLAY DE FOTO (ZOOM SERVIÇOS) */
.overlay-visualizacao {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: zoom-out;
}

.overlay-visualizacao.active { display: flex; }

.overlay-visualizacao img {
    max-width: 90%;
    max-height: 85vh;
    border: 2px solid var(--dourado);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* ==================================================
   CONTATO, CARDS E SEÇÕES COMUNS
   ================================================== */
section { padding: 80px 8%; background-color: var(--cinza-azulado); }
section h3 { font-size: 32px; color: var(--dourado); margin-bottom: 40px; text-align: center; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

/* AJUSTE DOS CARDS (PÁGINA INICIAL) */
.cards, .servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* CORREÇÃO DEFINITIVA DOS BOTÕES (CARDS) */
.card, .servico-btn {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,162,77,0.3);
    border-radius: 12px;
    transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
    text-decoration: none !important;
    
    /* Centralização Absoluta do Texto */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;    /* Centro horizontal */
    justify-content: center !important;  /* Centro vertical */
    text-align: center !important;
    
    min-height: 100px; /* Altura fixa para manter todos iguais */
    padding: 20px !important;
    -webkit-tap-highlight-color: transparent;
}

.card:hover, .servico-btn:hover { 
    transform: translateY(-5px); 
    border-color: var(--dourado); 
    background-color: var(--dourado);
}

.card h4, .servico-btn h4 { 
    color: var(--dourado) !important; 
    margin: 0 !important; /* Remove margens que desalinhariam o texto */
    font-weight: 600; 
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.card:hover h4, .servico-btn:hover h4 { 
    color: var(--preto) !important; 
}

/* Se houver parágrafo no card da Home, ele também deve sumir ou centralizar */
.card p { 
    color: var(--cinza-claro) !important; 
    font-size: 14px; 
    margin-top: 10px;
}

.contato { background-color: #1f2a30; padding: 80px 8%; }
.contato-container {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}

.contato-texto { text-align: left; }
.contato-texto h3 { text-align: left; margin-bottom: 15px; margin-top: 0; }
.contato-texto p { color: var(--cinza-claro); font-size: 18px; margin-bottom: 10px; }

.contato-form { display: flex; flex-direction: column; gap: 15px; }
.contato-form input, .contato-form textarea {
    width: 100%; padding: 15px; background-color: var(--branco); 
    border: 1px solid rgba(201, 162, 77, 0.3); color: var(--preto); 
    font-size: 15px; border-radius: 4px; font-family: 'Open Sans', sans-serif;
}

.btn-enviar {
    padding: 15px 30px; background-color: var(--dourado); color: var(--preto); 
    border: none; font-weight: bold; text-transform: uppercase; cursor: pointer; border-radius: 4px;
    transition: 0.3s; font-family: 'Montserrat', sans-serif; letter-spacing: 1px;
    -webkit-tap-highlight-color: transparent;
}
.btn-enviar:hover { background-color: var(--branco); }
.btn-enviar:disabled { opacity: 0.6; cursor: not-allowed; }

/* INFO-CONTATO */
.info-contato {
    background-color: var(--cinza-azulado); text-align: center;
    padding: 60px 8%; border-top: 1px solid rgba(201, 162, 77, 0.1);
}

.info-contato .info-container {
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.info-contato h2 { color: var(--dourado); text-transform: uppercase; margin-bottom: 20px; letter-spacing: 2px; }

.info-contato .frase-chamada {
    margin-bottom: 30px; 
}

.redes-sociais { 
    display: flex; 
    justify-content: center; 
    gap: 25px; 
    margin-bottom: 35px; 
}

.redes-sociais img { 
    width: 40px; 
    height: 40px; 
    object-fit: contain; 
}

.info-contato .endereco {
    margin-bottom: 10px;
    color: var(--dourado) !important;
    font-weight: 600;
}

.info-contato .whats-texto {
    font-weight: 600;
    color: var(--branco);
}

.link-tel, 
a[href^="tel:"], 
.info-contato span.whats-texto a {
    color: var(--dourado) !important;
    text-decoration: none !important;
    transition: 0.3s;
    font-weight: 700;
}

.link-tel:hover, 
a[href^="tel:"]:hover {
    color: var(--branco) !important; 
    text-decoration: underline !important;
}

/* FOOTER */
footer { 
    background-color: #1f2a30; 
    padding: 40px 8%; 
    text-align: center; 
    color: var(--cinza-claro); 
    font-size: 14px; 
    width: 100%;
    display: block;
    clear: both;
}

footer span {
    color: var(--dourado); 
    font-weight: bold; 
}

/* MODAL SUCESSO */
.modal-sucesso {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.85);
    display: none; justify-content: center; align-items: center;
    z-index: 10001; backdrop-filter: blur(5px);
}
.modal-sucesso.active { display: flex; }
.modal-sucesso-content {
    background-color: var(--cinza-azulado); border: 1px solid var(--dourado);
    padding: 40px; text-align: center; max-width: 450px; width: 90%;
}

/* ==================================================
   RESPONSIVIDADE (ATUALIZADO E CORRIGIDO)
   ================================================== */
@media (max-width: 992px) {
    .detalhe-servico {
        grid-template-columns: 1fr;
        padding-top: 60px;
    }
    .texto-explicativo h2 { font-size: 28px; }
    .hero h2 { font-size: 38px; }
    .servicos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==================================================
   RESPONSIVIDADE COMPLETA E CORRIGIDA
   ================================================== */

@media (max-width: 850px) {
    header { 
        flex-direction: column; 
        padding: 10px 0; /* CORRIGIDO: de 5% para 0 para evitar transbordo lateral */
        text-align: center; 
        gap: 5px; 
        min-height: auto;
        width: 100%; /* GARANTE que o header não passe da tela */
    }

    .logo-container { 
        flex-direction: column; 
        gap: 2px; 
        width: 100%;
    }

    .logo-img {
        height: 180px !important; /* REDUZIDO de 220px para melhor ajuste em telas médias */
        width: auto;
    }

    .logo-texto { 
        position: static; 
        transform: none; 
        font-size: 20px; 
        margin: 5px 0;   
        pointer-events: auto; 
    }
    
    /* AJUSTE DO MENU CORRIGIDO PARA NÃO CORTAR TEXTO */
    nav { 
        margin-top: 10px; 
        display: flex; 
        flex-direction: row; 
        justify-content: center; 
        gap: 5px; 
        width: 100%; 
        flex-wrap: wrap; 
        padding: 0 10px; /* Margem interna de segurança */
        box-sizing: border-box;
    }

    nav a { 
        margin-left: 0; 
        font-size: 14px !important; 
        padding: 5px 2px; 
        white-space: nowrap; 
    }

    .sobre-secao {
        grid-template-columns: 1fr !important;
        padding: 60px 5% !important;
        gap: 40px;
        text-align: center;
    }
    .sobre-texto h2 { text-align: center; }
    .sobre-texto p { text-align: center; }
}

@media (max-width: 768px) {
    /* TRAVA DE SEGURANÇA PARA BARRA LATERAL */
    html, body {
        overflow-x: hidden !important;
        position: relative;
        width: 100%;
    }

    /* BOTÕES EM PILHA NO MOBILE */
    .cards, .servicos-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin: 0 auto;
    }

    .card, .servico-btn {
        width: 100%;
        min-height: 80px;
        margin-bottom: 10px;
    }

    .hero h2 { 
        font-size: 24px; /* CORRIGIDO de 28px para evitar transbordo */
        white-space: normal; /* PERMITE quebra de linha se o título for muito longo */
    } 
    .hero p { font-size: 16px; }
    .hero-buttons { justify-content: center; }
    .btn { width: 100%; max-width: 300px; }
    
    .slider-container { height: 500px; overflow: visible; }
    .inst-card { width: 75%; height: 450px; opacity: 0.4; filter: blur(4px); transform: scale(0.8); }
    .inst-card.active { opacity: 1; filter: blur(0); transform: scale(1); z-index: 10; }
    .inst-card.prev-slide { transform: translateX(-55%) scale(0.75); opacity: 0.3; display: block; }
    .inst-card.next-slide { transform: translateX(55%) scale(0.75); opacity: 0.3; display: block; }

    .contato-container { grid-template-columns: 1fr; gap: 30px; }
    .contato-texto, .contato-texto h3 { text-align: center; }

    /* Ajuste de sombra para mobile na página sobre */
    .sobre-imagem img { box-shadow: 5px 5px 0px var(--dourado); }
}

@media (max-width: 480px) {
    /* AJUSTE PARA CABER TUDO NA MESMA LINHA EM CELULARES PEQUENOS */
    nav { 
        display: flex; 
        flex-direction: row; 
        gap: 6px; /* Reduzido de 8px para caber em telas mínimas */
        justify-content: center;
    }
    nav a { font-size: 11px !important; letter-spacing: 0.5px; } /* Ajustado de 9px para 11px para legibilidade */
    
    .logo-texto { font-size: 18px; } /* CORRIGIDO de 333px para 18px */
    .hero h2 { font-size: 22px; } 
    .inst-card { width: 85%; }

    /* GARANTE QUE O BANNER DE COOKIES NÃO VASE */
    #cookie-banner {
        width: 94% !important;
        left: 3% !important;
        transform: none !important;
    }
}

/* ==================================================
   PÁGINA DE PRIVACIDADE E SEGURANÇA (LGPD)
   ================================================== */
.conteudo-privacidade {
    padding: 120px 10% 80px;
    background-color: var(--cinza-azulado);
    color: var(--branco);
    line-height: 1.8;
}

.conteudo-privacidade h2 { color: var(--dourado); margin-bottom: 30px; font-size: 32px; }
.conteudo-privacidade h3 { color: var(--dourado); margin-top: 40px; font-size: 20px; }
.conteudo-privacidade p { margin-bottom: 15px; color: var(--cinza-claro); text-align: justify; }
.conteudo-privacidade ul { margin-bottom: 20px; padding-left: 20px; }
.conteudo-privacidade ul li { margin-bottom: 10px; color: var(--cinza-claro); }

.contato-lgpd {
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 15px; color: #ccc; font-size: 12px; text-align: left;
}
.contato-lgpd input[type="checkbox"] { width: auto !important; height: auto !important; margin-top: 3px; cursor: pointer; flex-shrink: 0; }
.contato-lgpd label { font-size: 12px !important; color: #ccc; line-height: 1.4; cursor: pointer; }
.contato-lgpd a { color: var(--dourado); text-decoration: underline; }

.btn-fechar-modal {
    margin-top: 25px; padding: 12px 25px; background-color: var(--dourado); color: var(--preto); border: none; border-radius: 4px; font-weight: bold; text-transform: uppercase; cursor: pointer; font-family: 'Montserrat', sans-serif; transition: 0.3s;
}
.btn-fechar-modal:hover { background-color: var(--branco); transform: scale(1.05); }

/* Campo invisível anti-spam */
.contato-form input[tabindex="-1"] { opacity: 0; pointer-events: none; z-index: -1; height: 0; width: 0; }

/* ==================================================
   AJUSTES GLOBAIS DE RESPONSIVIDADE (SAFE PATCH)
   ================================================== */
header, .hero, section, .contato, .info-contato, footer { max-width: 100%; }
header, .hero, section, .contato, .info-contato, footer { padding-left: clamp(20px, 5vw, 80px); padding-right: clamp(20px, 5vw, 80px); }

@media (min-width: 1200px) {
    header { justify-content: center; }
    header > * { max-width: 1400px; margin-left: auto; margin-right: auto; }
}

@media (min-width: 992px) {
    .logo-texto { position: relative; left: auto; transform: none; pointer-events: auto; }
}

.cards, .servicos-grid, .container-projetos, .contato-container, .info-contato .info-container {
    max-width: 1200px; margin-left: auto; margin-right: auto;
}

/* ==================================================
   ESTILOS DA PÁGINA SOBRE
   ================================================== */
.sobre-secao {
    padding: 100px 8%; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
    background-color: var(--cinza-azulado);
}
.sobre-texto h2 { color: var(--dourado); font-size: 36px; margin-bottom: 25px; }
.sobre-texto p { color: var(--cinza-claro); margin-bottom: 20px; font-size: 17px; text-align: justify; }

/* Adicionado list-style: none para remover as bolinhas indesejadas */
.sobre-texto ul { list-style: none; padding: 0; }

/* CORREÇÃO DEFINITIVA DO ALINHAMENTO DO CHECKMARK (✔) */
.sobre-texto li { 
    color: var(--branco); 
    margin-bottom: 12px; 
    display: flex; /* Mantém o ícone e o texto em colunas flexíveis */
    align-items: flex-start; /* Alinha o check no topo se o texto quebrar linha */
    text-align: left;
}

.sobre-texto li span { 
    color: var(--dourado); 
    margin-right: 12px; /* Espaço fixo entre o check e o texto */
    flex-shrink: 0; /* Impede que o check "esprema" */
    font-weight: bold;
    position: static; /* Remove o absolute para não flutuar longe do texto */
}

/* AJUSTE FINAL: Cursor default para não parecer clicável */
.sobre-imagem img { 
    width: 100%; 
    border: 1px solid var(--dourado); 
    box-shadow: 10px 10px 0px var(--dourado); 
    display: block; 
    cursor: default; 
}

.localizacao { padding: 60px 8%; background-color: #1f2a30; text-align: center; }
.mapa-container { max-width: 1100px; margin: 0 auto; border: 1px solid rgba(201, 162, 77, 0.3); }
.mapa-container img { width: 100%; display: block; filter: contrast(1.1); }


/* ==================================================
   BANNER DE COOKIES (LGPD) - CORRIGIDO
   ================================================== */
#cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    /* O translateZ(0) ajuda a evitar o "pulo" visual e melhora a renderização */
    transform: translateX(-50%) translateZ(0);
    width: 95%; /* Aumentado levemente para maior segurança lateral */
    max-width: 600px; /* Reduzido de 800px para evitar variações de centralização */
    background-color: var(--preto); /* Fundo preto para destaque */
    color: var(--branco);
    padding: 25px;
    border: 1px solid var(--dourado); /* Borda dourada identica aos cards */
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 10005; /* Acima de overlays e headers */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    /* Estabilizadores de renderização */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: var(--cinza-claro);
    line-height: 1.5;
}

.cookie-content p a {
    color: var(--dourado);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-btn {
    padding: 12px 25px;
    background-color: var(--dourado);
    color: var(--preto);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: var(--branco);
    transform: translateY(-2px);
}

/* Responsividade para celulares */
@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 15px; /* Ajustado para não ficar colado na borda inferior */
        padding: 20px;
        width: 92%; /* Largura segura para mobile */
        left: 50%;
        transform: translateX(-50%) translateZ(0);
    }
    
    .cookie-btn {
        width: 100%;
        margin-top: 5px;
    }
}