/* Variáveis de Cores */
:root {
    --gold: #C5A059;
    --gold-dark: #a68545;
    --black: #111111;
    --dark-gray: #1a1a1a;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --text-color: #333;
}

/* Reset Geral */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo { font-family: 'Playfair Display', serif; }

a { text-decoration: none; }
ul { list-style: none; }

/* Cabeçalho */
header {
    background-color: rgba(17, 17, 17, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu ul { display: flex; gap: 25px; }
.nav-menu a {
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: 0.3s;
}
.nav-menu a:hover { color: var(--gold); }

.hamburger { display: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* Hero Section */

.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    background-attachment: fixed; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.hero p { font-size: 1.2rem; margin-bottom: 30px; font-weight: 300; }

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
    margin: 5px;
}

.btn-gold { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }

/* Seções Gerais */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--black); }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 10px auto; }
.bg-light { background: var(--light-gray); }

/* Sobre */
.about-container { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.about-text { flex: 1; min-width: 300px; }
.about-text h2 { font-size: 2rem; color: var(--black); }
.about-text .divider { margin: 10px 0 20px 0; }
.about-stats { flex: 1; display: flex; gap: 20px; }
.stat-item {
    background: var(--black);
    color: var(--gold);
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    flex: 1;
}
.stat-item i { font-size: 2rem; margin-bottom: 10px; }

/* Cards de Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-10px); }
.card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }
.card h3 { margin-bottom: 15px; color: var(--black); }

/* Contato */
.dark-section { background: var(--dark-gray); color: var(--white); }
.dark-section h2 { color: var(--gold); }
.contact-wrapper { display: flex; flex-wrap: wrap; gap: 40px; }
.contact-info { flex: 1; min-width: 300px; }
.contact-info .divider { margin: 10px 0 30px 0; }
.info-list li { margin-bottom: 25px; display: flex; align-items: flex-start; gap: 15px; }
.info-list i { color: var(--gold); font-size: 1.2rem; margin-top: 5px; }
.contact-map { flex: 1; min-height: 300px; border: 2px solid var(--gold); }

/* Rodapé */
footer { background: #000; color: #777; text-align: center; padding: 20px; font-size: 0.9rem; }
.oab-text { font-size: 0.8rem; margin-top: 5px; }

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px; right: 20px;
    background: #25d366; color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* Animação Fade In (via JS) */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsivo */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 60px; left: 0; width: 100%;
        background: var(--dark-gray);
        flex-direction: column;
        display: none;
        text-align: center;
        padding: 20px 0;
    }
    .nav-menu.active { display: flex; }
    .nav-menu ul { flex-direction: column; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.2rem; }
    .about-stats { flex-direction: column; }
}

/* --- ESTILO NOVO PARA O MAPA E BOTÃO DE ROTA --- */

.contact-map-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre o mapa e o botão */
}

.map-frame {
    height: 300px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    overflow: hidden;
}

.btn-rota {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--gold);
    color: var(--white);
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.btn-rota:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-rota i {
    font-size: 1.2rem;
}

/* Animação do Botão WhatsApp */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    /* Adicione essa linha na classe .whatsapp-float que já existe */
    animation: pulse 1s infinite;
}

.cookie-banner {
    position: fixed;
    bottom: -100px; /* Começa escondido */
    left: 0;
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
    font-size: 0.9rem;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
.cookie-banner.show {
    bottom: 0;
}
@media (max-width: 600px) {
    .cookie-banner { flex-direction: column; text-align: center; gap: 10px; }
}