:root {
    --primary-blue: #0f2b3e; /* Azul Petróleo escuro */
    --accent-gold: #c5a059;  /* Dourado Nobre */
    --sand-bg: #f7f5f0;      /* Areia muito claro e suave */
    --text-dark: #2c3e50;
    --text-muted: #5a6268; 
    --text-white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--text-white);
}

h1, h2, h3, .brand-name {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- CABEÇALHO --- */
header {
    background-color: var(--primary-blue);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Centralizada */
.logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    line-height: 1.1;
}

.brand-name {
    color: var(--text-white);
    font-size: 1.6rem; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-sub {
    color: var(--accent-gold);
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
}

/* --- NAVEGAÇÃO --- */
nav ul { list-style: none; display: flex; gap: 25px; align-items: center; }
nav a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem; transition: 0.3s; font-weight: 400; }
nav a:hover { color: var(--accent-gold); }

.btn-contato-nav {
    border: 1px solid var(--accent-gold);
    padding: 10px 20px;
    border-radius: 4px;
    color: var(--accent-gold) !important;
}
.btn-contato-nav:hover { background-color: var(--accent-gold); color: var(--primary-blue) !important; }

/* --- HERO SECTION --- */
.hero {
    /* Certifique-se de que a imagem 'hero-bg.jpg' está na pasta */
    background: linear-gradient(rgba(15, 43, 62, 0.92), rgba(15, 43, 62, 0.88)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    padding: 160px 0 120px;
    text-align: left;
}

.hero-content { max-width: 850px; margin: 0; }
.hero h1 { font-size: 2.8rem; margin-bottom: 1.5rem; color: var(--text-white); line-height: 1.25; font-weight: 700; }
.hero p { font-size: 1.2rem; margin-bottom: 2.5rem; opacity: 0.95; max-width: 700px; font-weight: 300; }

.botoes { display: flex; gap: 15px; justify-content: flex-start; }

.btn-gold, .btn-outline {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gold { background-color: var(--accent-gold); color: var(--primary-blue); border: none; }
.btn-gold:hover { background-color: #d4af37; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3); }

.btn-outline { border: 2px solid rgba(255,255,255,0.5); color: var(--text-white); }
.btn-outline:hover { border-color: var(--accent-gold); color: var(--accent-gold); background-color: rgba(15, 43, 62, 0.8); }

/* --- ÁREAS DE ATUAÇÃO --- */
.areas { 
    padding: 100px 0; 
    background-color: var(--sand-bg);
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--primary-blue); font-size: 2.5rem; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

.grid-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    border-bottom: 4px solid var(--accent-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.card-icon { font-size: 2.5rem; color: var(--accent-gold); margin-bottom: 20px; display: block; }
.card h3 { color: var(--primary-blue); margin-bottom: 15px; font-size: 1.3rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* --- SOBRE --- */
.sobre { 
    padding: 100px 0; 
    background-color: var(--sand-bg);
}

.about-container { display: flex; justify-content: center; text-align: left; }
.about-text { max-width: 800px; }
.about-text h2 { color: var(--primary-blue); font-size: 2.2rem; margin-bottom: 30px; text-align: center; }
.about-text p { color: var(--text-dark); margin-bottom: 20px; font-size: 1.05rem; text-align: justify; }

/* Caixa de Destaque */
.destaque-box {
    background-color: #ffffff;
    border-left: 4px solid var(--accent-gold);
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
    color: var(--primary-blue);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.mt-20 { margin-top: 10px; display: table; margin-left: auto; margin-right: auto; }

/* --- RODAPÉ --- */
footer { background-color: var(--primary-blue); color: rgba(255,255,255,0.7); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 60px; }
footer h3 { color: var(--text-white); margin-bottom: 25px; font-size: 1.2rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; }
footer a:hover { color: var(--accent-gold); }
.contact-list li i { color: var(--accent-gold); margin-right: 10px; width: 20px; text-align: center; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* --- WHATSAPP FLUTUANTE --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}
.whatsapp-float:hover { background-color: #128c7e; transform: scale(1.1); }

/* --- MOBILE --- */
@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 20px; align-items: center; text-align: center; }
    .logo-text-container { align-items: center; } 
    nav ul { flex-direction: column; gap: 15px; width: 100%; }
    .hero { padding: 100px 0 80px; text-align: center; }
    .hero h1 { font-size: 2rem; }
    .botoes { justify-content: center; flex-direction: column; }
    .hero p { margin-left: auto; margin-right: auto; }
    .about-text p { text-align: left; }
}