/* Configurações Gerais */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: #ffffff; color: #2d2d2d; overflow-x: hidden; }

/* --- CABEÇALHO MODERNO UNIFICADO --- */
body { 
    padding-top: 90px; 
    overflow-x: hidden; 
}

header { 
    width: 100%;
    position: fixed;
    top: 0; left: 0;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    z-index: 9999;
    padding: 10px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

/* --- LOGOTIPO COM ZOOM (FORA DA MEDIA QUERY PARA FUNCIONAR NO PC) --- */
.logo-box {
    display: flex;
    align-items: center;
}

.logo-box img { 
    width: 220px; 
    height: auto;
    display: block;
    transition: transform 0.4s ease-in-out !important; 
    image-rendering: -webkit-optimize-contrast;
    cursor: pointer;
}

.logo-box img:hover { 
    transform: scale(1.1) !important; /* Zoom de 10% */
}

/* --- MENU DESKTOP --- */
.menu-toggle, .hamburger { display: none; }

.nav-menu ul { 
    display: flex; 
    list-style: none; 
    gap: 15px; 
    margin: 0; 
    padding: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #444;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-menu ul li a.ativo, .nav-menu ul li a:hover { 
    color: #c5a059; 
}

/* Botão de Contato Estilizado */
.btn-contato-nav {
    background: #c5a059;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 4px;
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 992px) {
    body { padding-top: 80px; }

    .logo-box img { 
        width: 160px; /* Logo menor no celular */
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 10001;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #c5a059;
        margin: 5px 0;
        transition: 0.3s;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 280px; /* Largura fixa para o menu lateral */
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s ease-in-out;
        z-index: 10000;
        padding-top: 80px;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu ul li { width: 100%; }

    .nav-menu ul li a {
        display: block;
        padding: 15px 25px;
        font-size: 14px;
        border-bottom: 1px solid #f5f5f5;
    }

    /* Gatilho para abrir o menu */
    #menu-toggle:checked ~ .nav-menu {
        right: 0;
    }

    /* Animação do X no botão hambúrguer */
    #menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    #menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
    #menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }
}

/* --- SLIDER E ZOOM AUTOMÁTICO (AJUSTADO PARA SER MENOR) --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 450px; /* Reduzido de 75vh para 450px */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active { opacity: 1; z-index: 2; }

.slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: zoomEffect 10s infinite alternate;
    filter: brightness(0.45);
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.hero-content { 
    position: relative; 
    z-index: 10; 
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; /* Ajustado de 4rem para 3rem devido ao tamanho menor */
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Adicionando estilo ao parágrafo para melhor harmonia */
.hero-content p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 35px; /* Botão levemente menor */
    background: #c5a059;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #a88846;
}

/* SETAS AJUSTADAS */
.nav-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.2);
    color: white;
    border: none; 
    padding: 15px 10px; /* Setas um pouco menores */
    cursor: pointer; 
    z-index: 20;
    font-size: 20px;
    transition: 0.3s;
}

.nav-arrow:hover {
    background: #c5a059;
}

.next { right: 0; border-radius: 5px 0 0 5px; }
.prev { left: 0; border-radius: 0 5px 5px 0; }

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .slider-container {
        height: 300px; /* No celular ele fica ainda menor */
    }
    .logo-box img { width: 180px; transform: scale(1); }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.8rem; letter-spacing: 1.5px; }
    .nav-arrow { padding: 10px 5px; font-size: 18px; }
}

/* --- SEÇÃO SAIBA MAIS (CARDS) --- */
.saiba-mais {
    padding: 80px 20px;
    background-color: #fdfdfd;
    text-align: center;
}

.saiba-mais h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; /* Letra um pouco maior como solicitado */
    color: #0a192f;
    margin-bottom: 50px;
    position: relative;
}

/* Linha decorativa abaixo do título */
.saiba-mais h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c5a059;
    margin: 15px auto 0;
}

.cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card-item {
    background: #fff;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-icon img {
    width: 320px; /* Tamanho do ícone/logotipo dentro da caixa */
    height: auto;
    margin-bottom: 20px;
}

.card-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0a192f;
}

.card-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-card {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #c5a059;
    color: #c5a059;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-card:hover {
    background: #c5a059;
    color: #fff;
}

/* Responsividade para celulares */
@media (max-width: 768px) {
    .saiba-mais h2 { font-size: 2rem; }
    .cards-wrapper { flex-direction: column; align-items: center; }
    .card-item { width: 100%; max-width: 400px; }
}

/* --- SLIDER DE CLIENTES (INFINITO) --- */
.clientes-slider {
    padding: 40px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    overflow: hidden; /* Esconde o que sai da tela */
    width: 100%;
}

/* --- NOVO SLIDER DE CLIENTES (INFINITO) COMEÇO --- */

/* Container do item do cliente */
.cliente-item {
    position: relative;
    display: inline-block;
    margin: 0 15px; /* Espaçamento lateral entre os logos */
    overflow: hidden; /* Garante que o título não saia do limite da imagem */
    vertical-align: middle;
}

.cliente-item img {
    display: block;
    width: auto;
    height: 80px; /* Ou a altura que você já estiver usando */
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(100%); /* Efeito opcional: logos em P&B que ganham cor no hover */
}

/* Estilo do Título (Overlay) */
.cliente-titulo {
    position: absolute;
    bottom: -100%; /* Começa escondido abaixo da imagem */
    left: 0;
    width: 100%;
    background: rgba(197, 160, 89, 0.9); /* O mesmo dourado do seu menu */
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding: 5px 0;
    transition: bottom 0.3s ease; /* Efeito de subir */
}

/* Efeito ao passar o mouse */
.cliente-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.cliente-item:hover .cliente-titulo {
    bottom: 0; /* Faz o título subir para cima da imagem */
}

/* --- NOVO SLIDER DE CLIENTES (INFINITO) FINAL --- */

.marquee {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 80px; /* Espaço entre os logos */
    animation: scroll-left 30s linear infinite; /* Ajuste o tempo (30s) para mais rápido ou lento */
}

.marquee-content img {
    height: 60px; /* Tamanho dos logos dos clientes */
    width: auto;
    filter: grayscale(100%); /* Deixa os logos em cinza para ser mais elegante */
    opacity: 0.6;
    transition: 0.3s;
}

.marquee-content img:hover {
    filter: grayscale(0%); /* Volta a cor original ao passar o mouse */
    opacity: 1;
}

/* Animação que faz o movimento de um lado para o outro */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* Move até metade (por isso as imagens repetidas) */
    }
}

/* --- RODAPÉ (FOOTER) --- */
footer {
    background-color: #0a192f; /* Azul marinho escuro/profissional */
    color: #ffffff;
    padding: 60px 0 20px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    color: #c5a059; /* Dourado */
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #c5a059;
}

.footer-column p {
    line-height: 1.8;
    color: #ccc;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #c5a059;
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    background: rgba(197, 160, 89, 0.2);
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #c5a059;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 12px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-info p {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
}

/* --- SEÇÃO IMÓVEIS (CARDS LADO A LADO) --- */
.secao-imoveis { 
    padding: 80px 20px; 
    background: #f9f9f9; 
}

.titulo-sessao { 
    text-align: center; 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
    color: #0a192f;
    margin-bottom: 5px; 
}

.subtitulo { 
    text-align: center; 
    color: #c5a059; 
    text-transform: uppercase;
    letter-spacing: 3px; 
    font-size: 13px; 
    margin-bottom: 50px; 
}

/* Grid que organiza as caixas lado a lado */
.grid-imoveis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-imovel {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card-imovel:hover { 
    transform: translateY(-5px); 
}

/* Galeria interna do Card */
.galeria-container {
    position: relative;
    height: 240px; /* Altura ideal para fotos em cards */
    background: #000;
    overflow: hidden;
}

.galeria-wrapper {
    display: flex;
    height: 100%;
    overflow: hidden; /* Esconde a barra de rolagem */
    scroll-behavior: smooth;
}

.galeria-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    cursor: zoom-in; /* Indica que pode ampliar */
}

/* Setas Visíveis e Estilizadas */
.seta-galeria {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    background: rgba(197, 160, 89, 0.9); /* Dourado do logo */
    color: white; 
    border: none; 
    padding: 12px 10px;
    cursor: pointer; 
    z-index: 10; 
    font-size: 18px;
    transition: 0.3s;
}

.seta-galeria:hover { 
    background: #0a192f; 
}

.prev { left: 0; border-radius: 0 5px 5px 0; }
.next { right: 0; border-radius: 5px 0 0 5px; }

/* Informações do Imóvel */
.info-imovel { 
    padding: 25px; 
}

.info-imovel h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.4rem; 
    color: #0a192f;
    margin-bottom: 10px; 
}

.info-imovel p.descricao {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.preco { 
    font-size: 1.5rem; 
    font-weight: bold; 
    color: #c5a059; 
    margin: 15px 0; 
}

.btn-contato-imovel {
    display: block;
    text-align: center;
    background: #0a192f;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-contato-imovel:hover {
    background: #c5a059;
}

/* --- LIGHTBOX (IMAGEM AMPLIADA COM FOCO TOTAL) --- */
.lightbox {
    display: none; 
    position: fixed; 
    z-index: 10000; /* Fica acima de tudo */
    left: 0; top: 0; 
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); 
    align-items: center; 
    justify-content: center;
}

.lightbox-content { 
    max-width: 85%; 
    max-height: 85%; 
    border: 3px solid #c5a059;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.fechar-lightbox { 
    position: absolute; 
    top: 30px; 
    right: 40px; 
    color: #fff; 
    font-size: 50px; 
    cursor: pointer;
    transition: 0.3s;
}

.fechar-lightbox:hover {
    color: #c5a059;
}

/* Setas dentro do Lightbox */
.seta-lightbox {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 40px;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10001;
}

.seta-lightbox:hover { background: rgba(197, 160, 89, 0.8); }
.seta-lightbox.prev { left: 10px; }
.seta-lightbox.next { right: 10px; }

/* Ajuste para a imagem não sumir atrás das setas no celular */
@media (max-width: 768px) {
    .seta-lightbox { padding: 10px; font-size: 30px; }
}

/* Responsividade para Celular */
@media (max-width: 768px) {
    .grid-imoveis { grid-template-columns: 1fr; }
    .galeria-container { height: 200px; }
}

/* ======== CONTATO ======== */
#contato {
    padding: 80px 75px;
    background-color: #f9f9f9;
    /* Removemos o flex daqui para o título não encavalar lateralmente */
}

/* NOVO: Estilo para centralizar o título e o subtítulo */
.contato-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%; /* Margem 100% Centraliza */
}

.contato-header p {
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.contato-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #0a192f;
}

/* O container agora envolve apenas o Form e a Info */
.contato-container {
    max-width: 1200px;
    margin: 0 auto; /* Centraliza o bloco na tela */
    display: flex;
    flex-direction: row; /* Força lado a lado */
    gap: 60px;
}

/* ======== FORMULÁRIO (ESQUERDA) ======== */
form {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input, form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

form button {
    background-color: #0a192f; /* Azul escuro da sua marca */
    border: none;
    padding: 15px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

form button:hover {
    background-color: #c5a059; /* Dourado no hover */
}

/* ======== INFO (DIREITA) ======== */
.info {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #0a192f;
}

.info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #444;
}

.info i {
    color: #c5a059; /* Dourado nos ícones */
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* ======== MAPA (EMBAIXO DE TUDO) ======== */
.mapa-box {
    max-width: 1200px;
    margin: 50px auto 0 auto; /* Margem em cima para afastar do form */
}

iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
    display: block;
}

/* Ajuste Celular */
@media (max-width: 900px) {
    #contato { padding: 40px 20px; }
    .contato-container { flex-direction: column; }
    .contato-header h2 { font-size: 2.2rem; }
}

/* ======== Serviços de Advocacia ======== */

/* ======== ESTILOS GERAIS PARA AS SEÇÕES ======== */
.secao {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.titulo-secao {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #0a192f;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.titulo-secao::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #c5a059;
    border-radius: 2px;
}

.subtitulo-secao {
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}


/* ======== SERVIÇOS - ESTILO FUTURISTA ======== */
.servicos-grid {
    display: grid; /* Layout em grade */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 colunas, ajusta para mobile */
    gap: 40px; /* Espaço entre as caixas */
    margin-top: 50px;
}

.servico-card {
    background-color: #0a192f; /* Fundo escuro */
    color: #e0e0e0; /* Texto claro */
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(197, 160, 89, 0.3); /* Borda sutil dourada */
    position: relative;
    overflow: hidden;
}

.servico-card:hover {
    transform: translateY(-10px); /* Leve levantamento */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(197, 160, 89, 0.5); /* Sombra mais intensa com brilho dourado */
}

/* Efeito de brilho "futurista" no hover */
.servico-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.8s ease-out;
    opacity: 0;
}

.servico-card:hover::before {
    transform: rotate(0deg);
    opacity: 1;
}


.servico-card .icone {
    font-size: 3.5rem;
    color: #c5a059; /* Ícone dourado */
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(197, 160, 89, 0.7); /* Efeito neon sutil */
}

.servico-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #c5a059; /* Título dourado */
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.servico-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #a0a0a0; /* Texto em tom de cinza para contraste */
    margin-bottom: 20px;
}

.servico-card a.btn-servico {
    display: inline-block;
    color: #c5a059;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
}

.servico-card a.btn-servico::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #c5a059;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.servico-card a.btn-servico:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas pequenas */
        gap: 30px;
    }
    .secao {
        padding: 60px 15px;
    }
    .titulo-secao {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
}

/* ======== MODAL FUTURISTA ======== */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8); /* Fundo preto semi-transparente */
    backdrop-filter: blur(8px); /* Efeito de vidro embaçado */
}

.modal-content {
    background-color: #0a192f;
    margin: 5% auto;
    padding: 40px;
    border: 1px solid #c5a059;
    width: 80%;
    max-width: 700px;
    border-radius: 15px;
    color: #fff;
    position: relative;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
    animation: surgindo 0.4s ease;
}

@keyframes surgindo {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close {
    position: absolute;
    right: 20px; top: 10px;
    color: #c5a059;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.modal-body h2 { font-family: 'Playfair Display', serif; color: #c5a059; margin-bottom: 20px; }
.modal-body ul { list-style: none; padding: 0; }
.modal-body li { margin-bottom: 15px; padding-left: 25px; position: relative; }
.modal-body li::before { content: '→'; position: absolute; left: 0; color: #c5a059; }

/* ======== ESTILOS PORTFÓLIO FUTURISTA ======== */
.portfolio-sessao {
    padding: 80px 75px; /* Margem lateral de 2cm */
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff; /* Se quiser a seção inteira escura, mude para #0a192f */
}

/* Reutilizando as classes de título que você já tem */
.titulo-secao {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #0a192f;
    margin-bottom: 60px;
    position: relative;
}

.subtitulo-secao {
    color: #c5a059;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Grid de Logotipos - Agora com 3 colunas padrão */
.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Mantém 3 por linha em telas grandes */
    gap: 40px;
    margin-top: 50px;
}

/* Card do Cliente Estilo Futurista (Igual ao de Serviços) */
.cliente-item {
    background-color: #1e2a3b; /* Azul acinzentado mais claro que o anterior */
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cliente-item:hover {
    transform: translateY(-10px);
    background-color: #253347; /* Clareia levemente no hover também */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(197, 160, 89, 0.4);
    border-color: #c5a059;
}

.cliente-logo img {
    max-width: 200px;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2); /* Reduzi o brilho para harmonizar com o fundo novo */
    opacity: 0.7;
    transition: 0.4s;
}

.cliente-logo img {
    max-width: 200px;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5); /* Melhora visibilidade no fundo escuro */
    opacity: 0.7;
    transition: 0.4s;
}

.cliente-item:hover .cliente-logo img {
    filter: grayscale(0%) brightness(1); /* Ganha cor real no hover */
    opacity: 1;
}

.cliente-info h4 {
    font-family: 'Playfair Display', serif;
    color: #c5a059; /* Título em dourado */
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cliente-info span {
    color: #a0a0a0; /* Subtítulo em cinza claro */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Responsivo */
@media (max-width: 900px) {
    .portfolio-sessao {
        padding: 60px 20px;
    }
    .clientes-grid {
        grid-template-columns: 1fr; /* Empilha no celular */
    }
}

/* ======== ESTILOS EQUIPE ======== */
#equipe-area {
    padding: 80px 75px;
    max-width: 1300px;
    margin: 0 auto;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.membro-card {
    background-color: #1e2a3b; /* Cor clareada conforme seu pedido anterior */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: all 0.4s ease;
}

/* Caso queira que o nome brilhe um pouco mais em dourado claro ao passar o mouse */
.membro-card:hover .membro-info h3 {
    color: #c5a059; 
    transition: 0.3s;
}

/* Área da Foto */
.membro-foto {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.membro-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.membro-card:hover .membro-foto img {
    transform: scale(1.05);
}

/* Overlay Redes Sociais na foto */
.membro-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(197, 160, 89, 0.9);
    display: flex;
    justify-content: center;
    padding: 15px 0;
    transition: bottom 0.4s ease;
}

.membro-card:hover .membro-social {
    bottom: 0;
}

.membro-social a {
    color: #0a192f;
    margin: 0 15px;
    font-size: 1.2rem;
}

/* Informações */
.membro-info {
    padding: 30px;
    text-align: center;
}

.membro-info h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff; /* Branco puro para máxima leitura */
    font-size: 1.6rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3); /* Sombra leve para dar profundidade */
}

.membro-info .cargo {
    color: #c5a059; /* O cargo em dourado destaca quem ele é */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.membro-info .bio {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.membro-info .oab {
    display: inline-block;
    font-size: 0.8rem;
    color: #c5a059;
    border: 1px solid #c5a059;
    padding: 3px 10px;
    border-radius: 4px;
}

/* Estilo para a lista de currículo dentro do card */
.curriculo-lista {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px 0;
    text-align: left; /* Alinhado à esquerda para facilitar a leitura dos títulos */
    display: inline-block; /* Mantém o bloco centralizado no card */
}

.curriculo-lista li {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

/* O pequeno detalhe dourado antes de cada item do currículo */
.curriculo-lista li::before {
    content: '•';
    color: #c5a059;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    #equipe-area { padding: 50px 20px; }
}

/* ======== ESTILOS NOTÍCIAS ======== */
#noticias-area {
    padding: 80px 75px;
    max-width: 1200px;
    margin: 0 auto;
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.noticia-card {
    background-color: #1e2a3b; /* O azul acinzentado clareado que você gostou */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.noticia-card:hover {
    transform: translateY(-5px);
    border-color: #c5a059;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.noticia-data {
    color: #c5a059;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.noticia-card h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff; /* Nome/Título em branco para leitura clara */
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.noticia-card p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-noticia {
    margin-top: auto;
    color: #c5a059;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    display: inline-block;
    width: fit-content;
    transition: 0.3s;
}

.btn-noticia:hover {
    border-bottom: 1px solid #c5a059;
}

.loading {
    color: #c5a059;
    text-align: center;
    grid-column: 1 / -1;
    font-size: 1.2rem;
}

/* ======== WHATSAPP LADO DIREITO PERMANENTE ======== */

/* Estilo do Botão Flutuante do WhatsApp */
/* Estilo Base (Desktop e Geral) */
.whatsapp-float {
    position: fixed !important;
    width: 60px !important;
    height: 60px !important;
    bottom: 20px !important;
    right: 20px !important;
    background-color: #25d366 !important;
    color: #FFF !important;
    border-radius: 50px !important;
    text-align: center !important;
    font-size: 35px !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2) !important;
}

/* A ONDA (Efeito Sonar) */
.whatsapp-float::before {
    content: "" !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #25d366 !important;
    border-radius: 50px !important;
    z-index: -1 !important;
    animation: wave-effect 2s infinite !important;
}

/* Ajuste para Celulares (Telas menores que 768px) */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        bottom: 15px !important;
        right: 15px !important;
        font-size: 30px !important;
    }
}

/* Efeito Hover */
.whatsapp-float:hover {
    background-color: #128c7e !important;
    transform: scale(1.05);
}

/* Animação da Onda */
@keyframes wave-effect {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}