/* --- VARIÁVEIS DE CORES --- */
:root {
    --cinza-claro: #e7e7e7;
    --cinza-medio: #403e3e;
    --cinza-escuro: #181818;
    --azul-escuro: #23698b;
    --verde-whatsapp: #25D366;
    --branco: #ffffff;
    --fundo-site: #f4f5f7;
}

/* --- CONFIGURAÇÕES GERAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--fundo-site);
    color: var(--cinza-escuro);
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- CLASSES DE ANIMAÇÃO --- */
.escondido {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mostrar {
    opacity: 1;
    transform: translateY(0);
}

/* --- CABEÇALHO E MENU --- */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    transition: all 0.3s ease;
    gap: 20px; 
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; 
}

.logo img { 
    height: auto;
    max-height: 110px; 
    max-width: 320px; 
    object-fit: contain;
    transition: transform 0.3s ease; 
}

.logo img:hover { transform: scale(1.02); }

nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end; 
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px; 
    align-items: center;
    flex-wrap: wrap; 
    justify-content: flex-end;
}

nav a {
    text-decoration: none;
    color: var(--cinza-escuro);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap; 
}

nav > ul > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--azul-escuro);
    transition: width 0.3s ease;
}

nav > ul > li > a:hover::after,
nav > ul > li > a.ativo::after { 
    width: 100%; 
}

nav a:hover,
nav > ul > li > a.ativo { 
    color: var(--azul-escuro); 
}

.dropdown { position: relative; padding-bottom: 10px; margin-bottom: -10px; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--branco);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-radius: 5px;
    flex-direction: column;
    gap: 0;
    min-width: 260px;
    padding: 10px 0;
    overflow: hidden;
    border: 1px solid var(--cinza-claro);
}
.dropdown:hover .dropdown-menu { display: flex; animation: fadeIn 0.3s ease; }
.dropdown-menu li { width: 100%; }
.dropdown-menu a { padding: 12px 20px; display: block; font-size: 0.9rem; border-bottom: 1px solid #f0f0f0; }
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background-color: #fafafa; color: var(--azul-escuro); padding-left: 25px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* SEÇÃO DE REDES SOCIAIS NO MENU */
.redes-sociais-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 5px;
    padding-left: 20px;
    border-left: 1px solid #dcdcdc; 
}

.redes-sociais-menu span {
    font-size: 0.85rem;
    color: var(--cinza-medio);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.redes-sociais-menu a {
    color: var(--azul-escuro);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.redes-sociais-menu a::after { display: none !important; }

.redes-sociais-menu a:hover {
    color: var(--cinza-escuro);
    transform: translateY(-3px); 
}

/* --- SEÇÃO PRINCIPAL (HERO) --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    text-align: left; 
    
    background: linear-gradient(110deg, rgba(24, 24, 24, 0.95) 0%, rgba(35, 105, 139, 0.6) 55%, rgba(24, 24, 24, 0.3) 100%), 
                url('../img/background-hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--branco);
    
    padding: 220px 8% 120px 8%; 
}

.hero-conteudo { 
    max-width: 650px; 
    margin-top: 0; 
} 

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}

.hero-eyebrow::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: #fff;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: none; 
}

.hero h1 strong {
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
}

.hero-botoes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Botão Hero Primário restaurado para o verde chamativo */
.btn-hero-primary {
    background-color: var(--verde-whatsapp);
    color: var(--branco);
    padding: 15px 30px;
    border-radius: 8px; /* Cantos levemente mais arredondados */
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.btn-hero-primary:hover {
    background-color: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-hero-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

/* --- SEÇÕES GERAIS --- */
section { padding: 100px 5%; }

.titulo-secao {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--cinza-escuro);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.subtitulo-secao {
    text-align: center;
    font-size: 1rem;
    color: var(--azul-escuro);
    margin-bottom: 60px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* --- SOBRE NÓS --- */
.sobre { background-color: var(--branco); }

.container-sobre { max-width: 1200px; margin: 0 auto; }

.sobre-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr; 
    gap: 60px;
    align-items: stretch;
}

.titulo-sobre {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--cinza-escuro);
    letter-spacing: -1px;
}

.titulo-sobre strong {
    font-weight: 700;
}

.sobre-texto p { 
    font-size: 1.05rem; 
    color: var(--cinza-medio); 
    margin-bottom: 20px; 
    text-align: justify;
    font-weight: 300; 
    line-height: 1.8; 
}

.card-autoridade-novo {
    background-color: var(--branco);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex;
    overflow: hidden; 
    border: 1px solid rgba(35, 105, 139, 0.15); 
}

.autoridade-foto {
    width: 40%;
    position: relative;
    background-color: var(--fundo-site);
}

.autoridade-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.autoridade-foto::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--azul-escuro);
}

.autoridade-info {
    width: 60%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.autoridade-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--azul-escuro);
    margin-bottom: 15px;
}

.autoridade-eyebrow::before {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background-color: currentColor;
}

.autoridade-info h4 { 
    font-size: 1.8rem; 
    font-weight: 300;
    color: var(--cinza-escuro); 
    margin-bottom: 5px; 
    letter-spacing: -0.5px;
}

.autoridade-oab {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--azul-escuro);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.autoridade-info p {
    font-size: 0.9rem;
    color: var(--cinza-medio);
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 300;
    text-align: left;
}

/* --- ÁREAS DE ATUAÇÃO --- */
.atuacao { 
    background: linear-gradient(180deg, #f4f5f7 0%, #e9ecef 100%); 
}

.cards-container { display: flex; flex-direction: column; gap: 40px; max-width: 1200px; margin: 0 auto; }

.card-destaque {
    background-color: var(--branco);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08); 
    padding: 60px;
    position: relative;
    z-index: 1;
    scroll-margin-top: 180px; 
    transition: transform 0.4s ease;
}

.card-destaque::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 6px;
    background: linear-gradient(90deg, var(--azul-escuro), var(--cinza-escuro));
    border-radius: 20px 20px 0 0;
}

.card-header { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
.ícone-container { width: 60px; height: 60px; display: flex; justify-content: center; align-items: center; border-radius: 10px; background-color: var(--fundo-site); border: 1px solid #eaeaea; }
.card-header i { font-size: 1.8rem; color: var(--azul-escuro); }
.card-header h3 { color: var(--cinza-escuro); font-size: 2.2rem; font-weight: 300; letter-spacing: -1px; }

.seo-copy {
    margin-bottom: 60px; 
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.seo-copy p {
    color: var(--cinza-medio);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
    text-align: justify;
}

.seo-copy p:last-child { margin-bottom: 0; }

.segmentacao-locacao {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; 
    margin-top: 50px;
}

.perfil-card {
    background-color: var(--branco); 
    padding: 50px 30px 30px 30px; 
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05); 
    border: 1px solid rgba(35, 105, 139, 0.1); 
    transition: all 0.4s ease;
    position: relative;
}

.perfil-card:hover {
    box-shadow: 0 15px 40px rgba(35, 105, 139, 0.12); 
    transform: translateY(-8px);
    border-color: rgba(35, 105, 139, 0.3);
}

.perfil-icone-topo {
    position: absolute;
    top: -25px; 
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--azul-escuro);
    color: var(--branco);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 15px rgba(35, 105, 139, 0.3);
    transition: transform 0.4s ease;
}

.perfil-card:hover .perfil-icone-topo { transform: scale(1.1); }

.perfil-card h4 {
    color: var(--cinza-escuro);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.lista-refinada { list-style: none; }
.lista-refinada li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 16px;
    color: var(--cinza-medio);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: justify;
}

.lista-refinada li::before {
    content: '—';
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--azul-escuro);
    font-weight: bold;
}

.servicos-secundarios {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
    margin-top: 10px;
}

.card-secundario {
    background-color: var(--branco);
    border-radius: 20px;
    padding: 50px 50px 30px 50px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.06); 
    border-top: 5px solid var(--azul-escuro);
    transition: transform 0.4s ease;
    scroll-margin-top: 180px; 
    position: relative;
}

.card-secundario:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(35, 105, 139, 0.1);
}

.card-secundario h3 {
    color: var(--cinza-escuro);
    font-size: 1.6rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.card-secundario h3 i {
    color: var(--azul-escuro);
    font-size: 1.8rem;
}

.card-secundario p {
    color: var(--cinza-medio);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.card-secundario p:last-child { margin-bottom: 0; }

/* --- FAIXA DE CITAÇÃO (QUOTE BAND LIMPA) --- */
.quote-band {
    padding: 140px 8%;
    text-align: center;
    color: var(--branco);
    position: relative;
    background: linear-gradient(120deg, rgba(24,24,24,0.92) 0%, rgba(35,105,139,0.75) 50%, rgba(24,24,24,0.88) 100%),
                url('../img/background-hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-band-conteudo {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.quote-icone {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 30px;
}

.quote-texto {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.quote-texto strong {
    font-weight: 700;
}

.quote-assinatura {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.quote-autor {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.quote-autor strong {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.quote-autor span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* --- BLOG / ARTIGOS --- */
.secao-blog { 
    background-color: var(--fundo-site); 
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-blog {
    background-color: var(--branco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    transition: all 0.4s ease;
    border: 1px solid rgba(35, 105, 139, 0.1); 
    display: flex;
    flex-direction: column;
}

.card-blog:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: var(--azul-escuro);
}

.imagem-overflow { width: 100%; height: 220px; overflow: hidden; }
.card-blog img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card-blog:hover img { transform: scale(1.08); }

.conteudo-blog { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }

.tag-blog {
    color: var(--azul-escuro); font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 15px; display: inline-block;
    background-color: rgba(35, 105, 139, 0.08); padding: 6px 12px; border-radius: 20px; align-self: flex-start;
}

.conteudo-blog h3 { color: var(--cinza-escuro); font-size: 1.25rem; margin-bottom: 15px; line-height: 1.4; font-weight: 600; }
.conteudo-blog p { color: var(--cinza-medio); font-size: 0.95rem; margin-bottom: 25px; line-height: 1.6; font-weight: 300; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; }
.link-blog { color: var(--azul-escuro); text-decoration: none; font-weight: 600; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; transition: color 0.3s; margin-top: auto; }
.link-blog:hover { color: var(--cinza-escuro); }

/* --- PERGUNTAS FREQUENTES --- */
.secao-faq { background-color: var(--branco); }
.faq-container { max-width: 800px; margin: 0 auto; }

details { 
    background-color: var(--fundo-site); 
    border-radius: 8px; margin-bottom: 15px; padding: 20px 25px; transition: all 0.3s ease; 
    border: 1px solid rgba(35, 105, 139, 0.1); 
    cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

details:hover, details[open] { background-color: #f0f2f5; box-shadow: 0 8px 20px rgba(0,0,0,0.06); border-color: rgba(35, 105, 139, 0.2); }
summary { font-size: 1.1rem; font-weight: 600; color: var(--cinza-escuro); list-style: none; position: relative; padding-right: 30px; transition: color 0.3s ease; }
details:hover summary, details[open] summary { color: var(--azul-escuro); }
summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--cinza-medio); font-weight: 300; transition: all 0.3s ease; }
details[open] summary::after { content: '-'; transform: translateY(-50%) rotate(180deg); color: var(--azul-escuro); }
details p { margin-top: 15px; color: var(--cinza-escuro); font-weight: 400; line-height: 1.7; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 15px; font-size: 0.95rem; text-align: justify;}

.lista-passos-faq { margin-top: 15px; padding-left: 10px; list-style: none; }
.lista-passos-faq li { margin-bottom: 15px; color: var(--cinza-escuro); font-size: 0.95rem; line-height: 1.6; text-align: justify;}
.lista-passos-faq strong { color: var(--azul-escuro); font-weight: 600; }

/* --- CONTATO (COM GRADIENTE E META INFO) --- */
.contato { 
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--cinza-escuro) 100%); 
    color: var(--branco); 
    text-align: center; 
    padding: 120px 5%; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contato-conteudo {
    max-width: 800px;
    width: 100%;
}

.titulo-contato {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--branco);
    letter-spacing: -1px;
}

.titulo-contato strong {
    font-weight: 700;
}

.texto-contato { 
    font-size: 1.1rem; 
    font-weight: 300; 
    line-height: 1.8; 
    margin-bottom: 40px; 
    color: rgba(255,255,255,0.85); 
}

.btn-whatsapp-gigante {
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
    background-color: var(--verde-whatsapp);
    color: var(--branco); 
    padding: 20px 45px; 
    text-decoration: none; 
    font-size: 1.1rem; 
    font-weight: 700;
    border-radius: 8px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3); 
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.btn-whatsapp-gigante:hover { 
    background-color: #1ebe57; 
    transform: translateY(-3px); 
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5); 
}

.contato-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.contato-meta span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contato-meta i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

/* --- RODAPÉ --- */
footer { background-color: var(--cinza-escuro); color: #a0a0a0; padding: 60px 5% 30px 5%; font-weight: 300; }
.rodape-container { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; max-width: 1200px; margin: 0 auto; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 50px; margin-bottom: 30px; }

.rodape-logo-col img { height: 110px; margin-bottom: 25px; opacity: 0.9; } 

.rodape-logo-col p { font-size: 0.9rem; max-width: 350px; line-height: 1.7; text-align: justify; } 

.rodape-col h4 { color: var(--branco); font-size: 1.1rem; margin-bottom: 25px; font-weight: 500; letter-spacing: 1px; }
.rodape-col ul { list-style: none; }
.rodape-col ul li { margin-bottom: 15px; }
.rodape-col ul li a { color: #a0a0a0; text-decoration: none; transition: color 0.3s; font-size: 0.9rem; }
.rodape-col ul li a:hover { color: var(--branco); }
.rodape-contato p { font-size: 0.9rem; margin-bottom: 15px; display: flex; align-items: flex-start; gap: 12px; }
.rodape-contato i { color: var(--azul-escuro); margin-top: 4px; font-size: 1.1rem; }

.rodape-bottom { text-align: center; font-size: 0.8rem; letter-spacing: 0.5px; }

.whatsapp-flutuante {
    position: fixed; bottom: 30px; right: 30px; background-color: var(--verde-whatsapp); color: white;
    width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center;
    font-size: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 9999; transition: all 0.3s ease; text-decoration: none;
}
.whatsapp-flutuante:hover { transform: scale(1.1); background-color: #1ebe57; color: white; }

/* --- BANNER DE COOKIES --- */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(18, 18, 18, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 5%;
    z-index: 9997;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    animation: slideUpCookie .4s ease;
}
@keyframes slideUpCookie {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.cookie-banner-texto {
    display: flex; align-items: center; gap: 16px;
    color: #bbb; font-size: 0.88rem; line-height: 1.55;
}
.cookie-banner-texto i { font-size: 1.5rem; color: var(--azul-escuro); flex-shrink: 0; }
.cookie-banner-texto p { margin: 0; }
.cookie-banner-texto strong { color: #fff; }
.cookie-banner-texto a { color: var(--azul-escuro); text-decoration: none; }
.cookie-banner-texto a:hover { text-decoration: underline; }
.cookie-btn-ok {
    flex-shrink: 0; background: var(--azul-escuro); color: #fff;
    border: none; border-radius: 6px; padding: 10px 26px;
    font-weight: 700; font-size: 0.88rem; cursor: pointer;
    transition: background .2s; font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}
.cookie-btn-ok:hover { background: #1a4d66; }

/* --- POLÍTICA DE PRIVACIDADE --- */
.privacidade-hero {
    background: linear-gradient(135deg, #181818 0%, #1e3a4a 100%);
    color: #fff; padding: 150px 20px 60px; text-align: center;
}
.privacidade-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); line-height: 1.3; margin-bottom: 12px; }
.privacidade-hero p { color: #aaa; font-size: 0.9rem; }
.privacidade-wrapper {
    max-width: 820px; margin: 60px auto 80px; padding: 0 20px;
}
.privacidade-wrapper h2 {
    font-size: 1.25rem; color: #181818; margin: 36px 0 12px;
    padding-bottom: 8px; border-bottom: 2px solid #e7e7e7;
}
.privacidade-wrapper p,
.privacidade-wrapper li { line-height: 1.85; color: #444; font-size: 1rem; margin-bottom: 12px; }
.privacidade-wrapper ul { padding-left: 22px; margin-bottom: 16px; }
.privacidade-wrapper strong { color: #181818; }
.privacidade-wrapper a { color: #23698b; }
.privacidade-data { font-size: 0.82rem; color: #999; margin-bottom: 40px; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 1024px) {
    .segmentacao-locacao { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
    .servicos-secundarios { grid-template-columns: 1fr; gap: 30px; }
    .rodape-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 850px) {
    nav ul { gap: 15px; }
    .redes-sociais-menu { display: none; }
    .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .hero { padding: 150px 5% 80px 5%; } 
    .hero h1 { font-size: 2.8rem; }
    nav ul { display: none; }
    header { justify-content: space-between; }
    .card-destaque { padding: 40px 20px; }
    .card-secundario { padding: 40px 20px; }
    .perfil-icone-topo { left: 20px; } 
    
    .quote-band { padding: 100px 5%; }
    
    .contato-meta { flex-direction: column; gap: 15px; align-items: center; }
    
    .rodape-container { grid-template-columns: 1fr; text-align: center; }
    .rodape-logo-col p { margin: 0 auto; text-align: center; } 
    .rodape-contato p { justify-content: center; }
    .logo img { max-height: 80px; } 
    
    .card-autoridade-novo { flex-direction: column; align-items: center; }
    .autoridade-foto { width: 100%; height: 300px; }
    .autoridade-foto::after { right: 0; bottom: 0; left: 0; top: auto; height: 4px; width: 100%; } 
    .autoridade-info { width: 100%; align-items: center; text-align: center; padding: 30px 20px; }
    .autoridade-info p { text-align: center; }
}