/* Reset básico e Fontes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C69C6D;
    --gold-hover: #b3885b;
    --dark: #0a0a0a;
    --white: #ffffff;
    --text-gray: #d1d1d1;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 30px 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo CSS */
.logo {
    text-decoration: none;
}

.logo-img {
    height: 75px; /* Aumentado para dar mais destaque ao logo */
    width: auto;
    object-fit: contain;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    /* Contorno preto na fonte */
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
}

.nav-links li a:hover {
    color: var(--gold);
}

.nav-links li a.active {
    color: var(--gold);
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: var(--gold);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.calendar-icon {
    width: 18px;
    height: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 95vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    /* A imagem de fundo exatamente como a foto */
    background-image: url('images/imagem-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay Escuro com gradiente da esquerda para direita */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 40%, rgba(10, 10, 10, 0.1) 100%);
    z-index: 1;
}

/* Conteúdo Hero */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    margin-top: 75px; /* Ajustado para descer o texto novamente */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: fadeIn 1s ease-out;
}

.text-gold {
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 50px;
    color: var(--text-gray);
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Botões do Hero */
.btn-primary {
    background-color: #b98e4f;
    color: var(--white);
    border: 2px solid #b98e4f;
    border-radius: 6px;
    padding: 16px 32px;
    /* Contorno preto na fonte */
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 6px;
    padding: 16px 32px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.arrow {
    margin-left: 5px;
    font-weight: 400;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.8rem; }
    .hero-overlay {
        background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 60%, rgba(10, 10, 10, 0.4) 100%);
    }
    .nav-links { display: none; } /* Em telas menores, esconde os links por enquanto */
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.0rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; width: max-content; }
    .hero-overlay {
        background: rgba(10, 10, 10, 0.85); /* Fundo mais escuro no mobile para leitura */
    }
}

/* ==========================================================================
   SEÇÃO: SOBRE O ESCRITÓRIO
   ========================================================================== */
.sobre {
    background-color: #faf9f6; /* Fundo off-white/creme */
    color: #111827; /* Texto escuro */
    padding: 40px 0 20px 0; /* Espaço da base reduzido mais ainda */
    width: 100%;
}

.sobre-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Imagem da Esquerda */
.sobre-imagem-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.sobre-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Conteúdo da Direita */
.sobre-conteudo {
    display: flex;
    flex-direction: column;
}

.sobre-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sobre-linha {
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 25px;
}

.sobre-titulo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1c2331;
    margin-bottom: 30px;
}

.sobre-texto {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
}

.sobre-texto strong {
    color: #111827;
    font-weight: 600;
}

/* Caixa de Destaque */
.sobre-destaque {
    display: flex;
    align-items: center;
    background-color: #fcfbf8;
    border: 1px solid rgba(198, 156, 109, 0.2);
    border-radius: 8px;
    padding: 20px 25px;
    margin-top: 10px;
    margin-bottom: 40px;
    gap: 20px;
}

.texto-destaque {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: #4b5563;
}

.texto-destaque span.text-gold {
    font-weight: 600;
}

/* Diferenciais (4 ícones) */
.sobre-diferenciais {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.diferencial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.diferencial-icone {
    margin-bottom: 12px;
}

.diferencial-titulo {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 8px;
}

.diferencial-texto {
    font-family: var(--font-body);
    font-size: 10px;
    color: #6b7280;
    line-height: 1.4;
}

/* Botão Escuro */
.btn-dark {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1c2331;
    color: var(--white);
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #2a354a;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-arrow {
    margin-left: 8px;
    font-weight: 400;
}

/* Responsividade da Seção Sobre */
@media (max-width: 1024px) {
    .sobre-container {
        grid-template-columns: 1fr;
    }
    .sobre-imagem-wrapper {
        height: 400px;
    }
    .sobre-titulo {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .sobre-diferenciais {
        grid-template-columns: 1fr 1fr; /* 2 colunas no celular */
        gap: 25px;
    }
    .btn-dark {
        align-self: center;
        width: 100%;
    }
}

/* ==========================================================================
   SEÇÃO: ÁREAS DE ATUAÇÃO
   ========================================================================== */
.areas {
    background-color: #FDF8F2; /* Fundo creme não-branco, conforme imagem */
    padding: 30px 0 30px 0; /* Espaçamento bem reduzido (cima e baixo) */
    width: 100%;
}

.areas-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.areas-header {
    text-align: center;
    margin-bottom: 60px;
}

.areas-eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.areas-titulo {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 25px;
}

.areas-subtitulo {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

.areas-subtitulo strong {
    color: #111827;
    font-weight: 600;
}

/* Grid de Cards */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.area-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.area-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.area-icone {
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-nome {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1c2331;
    line-height: 1.3;
}

.area-texto {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Banner Inferior */
.areas-banner {
    background-color: transparent;
    border: 1px solid rgba(198, 156, 109, 0.3);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-esquerda {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-icone-bg {
    width: 60px;
    height: 60px;
    background-color: rgba(198, 156, 109, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-texto {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #1c2331;
    line-height: 1.5;
}

.banner-linha-vertical {
    width: 1px;
    height: 50px;
    background-color: rgba(198, 156, 109, 0.3);
}

.btn-banner {
    color: var(--gold); /* Conforme imagem, o texto é dourado no botão escuro */
}

/* Responsividade Áreas */
@media (max-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .areas-titulo {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    .areas-titulo {
        font-size: 2.2rem;
    }
    .areas-banner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .banner-esquerda {
        flex-direction: column;
        text-align: center;
    }
    .banner-linha-vertical {
        display: none;
    }
}

/* ==========================================================================
   SEÇÃO: COMO ATUAMOS
   ========================================================================== */
.como-atuamos {
    background-color: #faf9f6; /* Fundo off-white/creme igual ao sobre */
    padding: 30px 0 0 0; /* Base zerada para aproximar da seção de Equipe */
    width: 100%;
}

.como-atuamos-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.atuamos-header {
    text-align: center;
    margin-bottom: 60px;
}

.atuamos-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: #1c2331; /* Cor escura conforme a imagem */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.atuamos-linha {
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 25px auto;
}

.atuamos-titulo {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 25px;
}

.atuamos-subtitulo {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid de Cards Atuamos */
.atuamos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 0; /* Zerei a margem inferior pois o ornamento foi removido */
}

.atuamos-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.atuamos-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.atuamos-icone-bg {
    width: 80px;
    height: 80px;
    background-color: rgba(198, 156, 109, 0.1); /* Dourado suave para o fundo do ícone */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.atuamos-card-linha {
    width: 20px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 25px;
}

.atuamos-card-titulo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #1c2331;
    line-height: 1.3;
    margin-bottom: 15px;
}

.atuamos-card-texto {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Ornamento Inferior */
.atuamos-ornamento {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.ornamento-linha {
    flex-grow: 1;
    height: 1.5px;
    background-color: rgba(198, 156, 109, 0.5); /* Linha dourada com um pouco de transparência */
}

.ornamento-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

/* Responsividade Atuamos */
@media (max-width: 1024px) {
    .atuamos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .atuamos-titulo {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .atuamos-grid {
        grid-template-columns: 1fr;
    }
    .atuamos-titulo {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   SEÇÃO: A EQUIPE (TEMA ESCURO)
   ========================================================================== */
.equipe {
    background-color: #0a0e14; /* Fundo escuro elegante */
    padding: 100px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Efeitos de luz dourada nos cantos */
.equipe::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(198, 156, 109, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.equipe::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(198, 156, 109, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.equipe-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1; /* Para ficar acima dos brilhos de fundo */
}

.equipe-header {
    text-align: center;
    margin-bottom: 60px;
}

.equipe-eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.equipe-titulo {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 25px;
}

.equipe-subtitulo {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e5e7eb;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Equipe */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.equipe-card {
    display: flex;
    background-color: #111827; /* Fundo do card um pouco mais claro que o fundo geral */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(198, 156, 109, 0.2); /* Bordinha dourada fina */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.equipe-card:hover {
    transform: translateY(-5px);
    border-color: rgba(198, 156, 109, 0.5); /* Borda acende no hover */
}

.equipe-img-wrapper {
    width: 45%;
    flex-shrink: 0;
}

.equipe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipe-conteudo {
    width: 55%;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
}

.equipe-nome {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.equipe-cargo {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.equipe-registro {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 15px;
}

.equipe-linha {
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 18px;
}

.equipe-texto {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* Citação */
.equipe-citacao-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.citacao-decoracao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.citacao-linha {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(198, 156, 109, 0.3);
}

.citacao-texto {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1.5;
}

/* Responsividade Equipe */
@media (max-width: 1200px) {
    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .equipe-grid {
        grid-template-columns: 1fr;
    }
    .equipe-card {
        flex-direction: column;
    }
    .equipe-img-wrapper {
        width: 100%;
        height: 300px;
    }
    .equipe-conteudo {
        width: 100%;
    }
    .equipe-titulo {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   SEÇÃO: BLOG
   ========================================================================== */
.blog {
    background-color: #faf9f6; /* Fundo igual ao sobre */
    padding: 100px 0;
    width: 100%;
}

.blog-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.blog-titulo {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 25px;
}

.blog-subtitulo {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid do Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.blog-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-img-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-conteudo {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.blog-categoria {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-data {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #9ca3af;
}

.blog-card-titulo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1c2331;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-texto {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.blog-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: #a88359;
}

.blog-link:hover svg {
    transform: translateX(4px);
}

/* Footer do Blog (Decoração e Botão) */
.blog-footer {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.blog-decoracao {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.blog-linha {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(198, 156, 109, 0.4);
}

.blog-icone {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-footer-texto {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 25px;
}

/* Botão Transparente Dourado */
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(198, 156, 109, 0.2);
}

/* Responsividade Blog */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-titulo {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.rodape {
    background-color: #242424; /* Cinza bem escuro com um tom mais quente */
    color: #e5e7eb;
    padding: 80px 0 0 0;
    width: 100%;
}

.rodape-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.rodape-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
}

.rodape-coluna {
    flex: 1;
}

.rodape-logo-col {
    display: flex;
    justify-content: center;
    padding-right: 40px;
}

.rodape-logo {
    max-width: 260px;
    height: auto;
}

.rodape-divisor {
    width: 1px;
    height: 180px;
    background-color: rgba(198, 156, 109, 0.4); /* Linha vertical dourada e suave */
}

.rodape-texto-col {
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.rodape-missao {
    font-family: var(--font-heading); /* Fonte clássica/serifada */
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
    text-align: left;
    margin: 0;
}

.rodape-contato-col {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contato-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.contato-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: #f9fafb; /* Branco */
    margin: 0 0 4px 0;
}

.contato-info p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
}

.rodape-inferior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(198, 156, 109, 0.5); /* Linha horizontal dourada */
}

.rodape-inferior p {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
}

.rodape-social {
    display: flex;
    gap: 18px;
}

.rodape-social a {
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.rodape-social a:hover {
    color: #e6c196;
    transform: translateY(-3px);
}

/* Responsividade Rodapé */
@media (max-width: 1024px) {
    .rodape-principal {
        flex-direction: column;
        gap: 40px;
    }
    .rodape-divisor {
        width: 100%;
        height: 1px;
        max-width: 250px;
    }
    .rodape-logo-col, .rodape-texto-col, .rodape-contato-col {
        padding: 0;
        text-align: center;
        align-items: center;
    }
    .rodape-missao {
        text-align: center;
    }
    .contato-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contato-icone {
        margin-top: 0;
    }
    .rodape-inferior {
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
    display: none; /* Escondido por padrão, ativado pelo JS */
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #111827; /* Fundo escuro premium */
    border: 1px solid rgba(198, 156, 109, 0.3); /* Bordinha dourada */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 9999;
    padding: 20px 30px;
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #d1d5db;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold);
    text-decoration: underline;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #e6c196;
}

.btn-cookie-outline, .btn-cookie-solid {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid #4b5563;
}

.btn-cookie-outline:hover {
    border-color: var(--white);
}

.btn-cookie-solid {
    background-color: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-cookie-solid:hover {
    background-color: #a88359;
    border-color: #a88359;
}

/* Responsividade Cookie Banner */
@media (max-width: 900px) {
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 20px 20px 0 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 20px;
    }
    .cookie-buttons {
        justify-content: center;
    }
}

/* ==========================================================================
   PÁGINA: ÁREAS DE ATUAÇÃO
   ========================================================================== */

/* Hero */
.atuacao-hero {
    background-color: #FDF8F2; /* Creme */
    background-image: url('images/atuacao_hero.png');
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 180px 0 120px 0; /* Espaço para navbar fixa e mais respiro */
}

.atuacao-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
}

.atuacao-hero-content {
    max-width: 600px; /* Limitar largura do texto para não cobrir a imagem */
}

.atuacao-hero-eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.atuacao-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 30px;
}

.atuacao-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 40px;
}

.atuacao-hero-linha {
    width: 30px;
    height: 3px;
    background-color: var(--gold);
}

/* Main Section */
.atuacao-main {
    background-color: #f4f4f5; /* Cinza bem claro como na imagem */
    padding: 80px 0;
}

.atuacao-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Destaque (Empresarial) */
.atuacao-destaque {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(198, 156, 109, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.atuacao-destaque-left {
    width: 35%;
    background-color: #1a1a1a;
    padding: 50px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.destaque-icon {
    margin-bottom: 25px;
}

.destaque-eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.destaque-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.destaque-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #d1d5db;
    line-height: 1.5;
    margin-bottom: 30px;
}

.destaque-linha {
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.atuacao-destaque-right {
    width: 65%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.destaque-intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500;
}

.destaque-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px;
    margin-bottom: 40px;
}

.destaque-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
}

.btn-saiba-mais {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.btn-saiba-mais:hover {
    color: #a88359;
}

/* Grid 2 Columns */
.atuacao-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.atuacao-card {
    background-color: #fff;
    border: 1px solid rgba(198, 156, 109, 0.2);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #111827;
}

.card-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.card-list li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* Horizontal Card */
.atuacao-card-horizontal {
    flex-direction: row;
    gap: 40px;
}

.card-horiz-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-horiz-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-horiz-right .card-list {
    margin-bottom: 0;
}

/* Demais Áreas */
.demais-areas-container {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.demais-eyebrow-container {
    flex-shrink: 0;
    width: 150px;
}

.demais-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.demais-linha-horizontal {
    width: 40px;
    height: 2px;
    background-color: var(--gold);
}

.demais-grid {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: center;
}

.demais-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.demais-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #111827;
    margin-bottom: 5px;
    font-weight: 700;
}

.demais-content p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

.demais-separador {
    width: 1px;
    height: 50px;
    background-color: rgba(0,0,0,0.1);
}

/* Pre-footer CTA */
.pre-footer-cta {
    background-color: #1c1c1c;
    padding: 80px 0;
    color: #fff;
}

.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text-side h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-text-side p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #d1d5db;
    margin: 0;
}

.btn-cta-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    border: 1px solid var(--gold);
    padding: 15px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta-whatsapp:hover {
    background-color: rgba(198, 156, 109, 0.1);
}

/* Responsividade Atuacao */
@media (max-width: 1200px) {
    .atuacao-hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    .atuacao-destaque {
        flex-direction: column;
    }
    .atuacao-destaque-left, .atuacao-destaque-right {
        width: 100%;
    }
    .demais-areas-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .demais-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .demais-separador {
        display: none;
    }
}

@media (max-width: 900px) {
    .atuacao-grid-2 {
        grid-template-columns: 1fr;
    }
    .atuacao-card-horizontal {
        flex-direction: column;
    }
    .card-horiz-left, .card-horiz-right {
        width: 100%;
    }
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}

@media (max-width: 600px) {
}

/* ==========================================================================
   PÁGINA: CONTATO
   ========================================================================== */

/* Hero Contato */
.contato-hero {
    background-image: url('images/contato_hero.png');
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    /* Usa as mesmas propriedades de .atuacao-hero para layout base */
}

/* Main Section Contato */
.contato-main {
    background-color: #f4f4f5; /* Cinza claro */
    padding: 80px 0;
}

.contato-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

/* Form Wrapper */
.contato-form-wrapper {
    background-color: #fff;
    border: 1px solid rgba(198, 156, 109, 0.2);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contato-form-eyebrow {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contato-form-intro {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Formulário */
.contato-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.form-group label .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #f9fafb;
    color: #374151;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 156, 109, 0.1);
}

.btn-enviar-form {
    align-self: flex-start;
    background-color: var(--gold);
    color: #1a1a1a;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-enviar-form:hover {
    background-color: #a88359;
}

/* Info e Mapa Wrapper */
.contato-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 10px;
}

.contato-info-section {
    display: flex;
    flex-direction: column;
}

.contato-info-section:last-child {
    flex-grow: 1;
}

.contato-info-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contato-info-linha {
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 30px;
}

.contato-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contato-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    padding-top: 8px; /* Alinha o texto com o centro do ícone */
}

.info-link-gold {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.info-link-gold:hover {
    color: #a88359;
}

/* Mapa */
.mapa-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    display: flex;
    min-height: 250px;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 100% !important;
}

.mapa-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.btn-abrir-mapa {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #1a1a1a;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.btn-abrir-mapa:hover {
    background-color: var(--gold);
    color: #1a1a1a;
}

/* Responsividade Contato */
@media (max-width: 900px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
    .contato-form-wrapper {
        padding: 30px 20px;
    }
}

