:root {
    /* Paleta Premium: Verde BK e Dourado */
    --bg-dark: #040d0d;       /* Verde ultra escuro (quase preto) */
    --bg-card: #0a1a1a;       /* Verde profundo para cards */
    --bk: #f79a60;
    --cyan: #b8860b;          /* Dourado */
    --purple: #004d4d;        /* Verde Esmeralda BK */
    --text: #ffffff;
    --text-muted: #8fa1a1;    /* Cinza esverdeado suave */
    --gradient: linear-gradient(90deg, #f79a60, #004d4d);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--bg-dark); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* Header - AJUSTADO PARA A LOGO TEXTUAL */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 8%; background: rgba(4, 13, 13, 0.95);
    position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.05);
}
/* Removido estilo fixo de img para não conflitar com a nova estrutura flex da logo */
.logo-container { display: flex; align-items: center; }

nav a { color: var(--text); text-decoration: none; margin-left: 20px; font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
nav a:hover { color: var(--bk); }
.nav-highlight { border: 1px solid var(--bk); padding: 5px 15px; border-radius: 5px; color: var(--bk) !important; }

/* Hero - AJUSTADO PARA A FONTE QUINTESSENTIAL */
.hero { height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 8%; }
.hero h1 { 
    font-family: 'Quintessential', serif; /* Nova fonte aplicada */
    font-size: 4rem; 
    font-weight: 400; /* Ajustado para o peso da Quintessential */
    margin-bottom: 20px; 
}
.hero h1 span { color: var(--bk); font-family: 'Quintessential', serif; }
.hero p { max-width: 700px; color: var(--text-muted); font-size: 1.25rem; margin-bottom: 40px; }

.btn-primary { background: var(--gradient); color: white; border: none; padding: 18px 36px; border-radius: 10px; font-weight: bold; text-decoration: none; transition: 0.3s; display: inline-block; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3); }

/* Seções Gerais */
.section-padding { padding: 100px 8%; }
.bg-alt { background-color: #030a0a; }
.main-title { text-align: center; font-size: 2.8rem; margin-bottom: 60px; font-weight: 700; }
.main-title span { color: var(--bk); }

/* Grid de Importância */
.importance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.card-outline { background: var(--bg-card); padding: 45px; border-radius: 24px; border: 2px solid transparent; }
.card-outline.bk { border-color: rgba(184, 134, 11, 0.2); }
.card-outline.purple { border-color: rgba(0, 77, 77, 0.3); }
.icon-list { list-style: none; margin-top: 30px; }
.icon-list li { display: flex; align-items: center; margin-bottom: 20px; color: var(--text-muted); font-size: 1rem; }
.icon-box { width: 35px; height: 35px; background: rgba(184, 134, 11, 0.1); color: var(--cyan); display: flex; align-items: center; justify-content: center; border-radius: 8px; margin-right: 15px; flex-shrink: 0; }
.icon-box-purple { width: 35px; height: 35px; background: rgba(0, 77, 77, 0.2); color: var(--purple); display: flex; align-items: center; justify-content: center; border-radius: 8px; margin-right: 15px; flex-shrink: 0; }

/* Grid de Serviços */
.section-header { text-align: center; margin-bottom: 70px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.service-card { background: var(--bg-card); padding: 40px; border-radius: 28px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; display: flex; flex-direction: column; }
.service-card.highlight { border-color: rgba(184, 134, 11, 0.3); background: linear-gradient(145deg, var(--bg-card), rgba(184, 134, 11, 0.05)); }
.service-card:hover { transform: translateY(-10px); border-color: var(--cyan); }
.service-card i { font-size: 2.5rem; color: var(--cyan); margin-bottom: 25px; display: block; }
.service-intro { color: var(--text-muted); font-size: 1rem; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 20px; font-weight: 500; }
.detail-list { list-style: none; }
.detail-list li { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; display: flex; align-items: flex-start; gap: 12px; }
.detail-list i { color: #22c55e; font-size: 0.85rem; margin-top: 5px; margin-bottom: 0; display: inline; }

/* Contato */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 70px; align-items: center; }
.contact-item { margin-bottom: 20px; font-size: 1.2rem; color: var(--text-muted); display: flex; align-items: center; gap: 15px; }
.contact-item i { color: var(--cyan); font-size: 1.4rem; }
.form-container { background: var(--bg-card); padding: 50px; border-radius: 30px; border: 1px solid rgba(184, 134, 11, 0.3); }
.form-row { display: flex; gap: 20px; margin-bottom: 20px; }
input, select, textarea { width: 100%; padding: 16px; background: #020808; border: 1px solid #1a2a2a; border-radius: 12px; color: white; outline: none; transition: 0.3s; }
input:focus, select:focus, textarea:focus { border-color: var(--cyan); box-shadow: 0 0 10px rgba(184, 134, 11, 0.1); }
textarea { height: 130px; resize: none; }
.btn-form { width: 100%; padding: 18px; background: var(--gradient); border: none; border-radius: 12px; color: white; font-weight: 800; cursor: pointer; margin-top: 25px; transition: 0.3s; font-size: 1rem; }
.btn-form:hover { opacity: 0.9; transform: scale(1.02); }

/* Footer */
footer { padding: 50px 8%; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.social { margin-top: 20px; }
.social a { color: var(--text-muted); text-decoration: none; font-size: 1.3rem; transition: 0.3s; }
.social a:hover { color: var(--cyan); }

@media (max-width: 1024px) {
    .importance-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    /* Ajuste para logo não quebrar em celulares */
    header { flex-direction: column; gap: 15px; text-align: center; }
    nav a { margin: 0 10px; }
}