@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
:root{
  --bg:#ffffff;
  --card:#ffffff;
  --ink:#0a1724;
  --muted:#324352;
  --border:#e6e9ee;
  --accent:#c9a14a;
  --accent2:#b8933d;
}

*{box-sizing:border-box}
html,body{
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
body{
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; padding:12px 16px;
  border-radius:999px; border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  font-weight:650;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.06); border-color:rgba(214,179,106,.35)}
.btn.primary{
  border-color:rgba(214,179,106,.45);
  background: linear-gradient(135deg, rgba(214,179,106,.26), rgba(243,226,183,.10));
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border:1px solid var(--line);
  border-radius:999px; background:rgba(255,255,255,.03);
  color:var(--muted); font-size:13px;
}

header{
  background:#050b14;
  color:#ffffff;
  border-bottom:1px solid rgba(255,255,255,.15);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:44px; height:44px; border-radius:12px; box-shadow: var(--shadow)}
.brand .name{display:flex; flex-direction:column; line-height:1.1}
.brand .name strong{letter-spacing:.8px}
.brand .name span{font-size:12px; color:var(--muted)}
.navlinks{display:flex; gap:14px; align-items:center}
.navlinks a{
  font-size:14px; color:var(--muted);
  padding:10px 12px; border-radius:999px;
  border:1px solid transparent;
}
.navlinks a:hover{color:var(--text); border-color:rgba(255,255,255,.08); background:rgba(255,255,255,.03)}
.menuBtn{display:none}

.hero{
  padding:54px 0 18px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
  align-items:stretch;
}
.card{
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroCard{padding:26px}
h1{
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: .3px;
}
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 16px}
.heroActions{display:flex; flex-wrap:wrap; gap:10px; margin-top:18px}
.kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  padding:18px;
}
.kpi{
  padding:14px; border:1px solid rgba(255,255,255,.10);
  border-radius:18px; background: rgba(7,11,20,.35);
}
.kpi strong{display:block; font-size:18px}
.kpi span{display:block; color:var(--muted); font-size:13px; margin-top:4px}

.section{padding:42px 0}
.section h2{
  margin:0 0 14px;
  font-size: 26px;
  letter-spacing: .2px;
}
.section p{color:var(--muted); line-height:1.7; margin:0 0 16px}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.feature{
  padding:18px;
}

/* Cards de serviço com imagem de fundo (para substituir os ícones) */
.feature.photo{
  position: relative;
  overflow: hidden;
  min-height: 180px;
  color: #fff;
  border-color: rgba(255,255,255,.12);
}
.feature.photo::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(3,6,12,.20) 0%, rgba(3,6,12,.78) 65%, rgba(3,6,12,.88) 100%);
  z-index: 0;
}
.feature.photo > *{position: relative; z-index: 1;}
.feature.photo h3{color:#fff}
.feature.photo p{color: rgba(255,255,255,.88)}
.feature.photo .icon{display:none;}

.photo-contabil{background: url('assets/contabil-fiscal.jpg') center/cover no-repeat;}
.photo-bpo{background: url('assets/bpo-financeiro.jpg') center/cover no-repeat;}
.photo-bi{background: url('assets/consultoria-bi.jpg') center/cover no-repeat;}
.icon{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  border:1px solid rgba(214,179,106,.35);
  background: linear-gradient(135deg, rgba(214,179,106,.25), rgba(255,255,255,.04));
  margin-bottom:12px;
}

.split{
  display:grid; grid-template-columns: 1fr 1fr; gap:14px;
}
.list{
  margin:0; padding-left:18px; color:var(--muted); line-height:1.8
}
.note{
  padding:16px; border-radius:18px;
  border:1px dashed rgba(214,179,106,.35);
  background: rgba(214,179,106,.08);
  color: var(--muted);
}

.formRow{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
input, textarea{
  width:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(7,11,20,.55);
  color: var(--text);
  padding:12px 14px;
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(214,179,106,.45)}
textarea{min-height:120px; resize:vertical}
.small{font-size:12px; color:var(--muted)}
.footer{
  padding:28px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
}
.footer .row{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}
.pill{padding:10px 12px; border:1px solid rgba(255,255,255,.10); border-radius:999px; background:rgba(255,255,255,.03)}

.toast{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,11,20,.72);
  backdrop-filter: blur(12px);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.toast.show{opacity:1; transform: translateX(-50%) translateY(-2px)}

@media (max-width: 920px){
  .heroGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
  align-items:stretch;
}
}
@media (max-width: 740px){
  .kpis{grid-template-columns: 1fr;}

  .navlinks{display:none}
  .menuBtn{display:inline-flex}
  .grid3{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .formRow{grid-template-columns: 1fr}
}

/* Text-only logo (wordmark) */
.wordmark{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:6px 10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.wmTop{
  font-weight:800;
  letter-spacing:1.4px;
  font-size:18px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.wmSub{
  font-size:11px;
  letter-spacing:.6px;
  color: var(--muted);
  opacity:.95;
}
.wordmarkMini .wmTop{font-size:28px; letter-spacing:2px; text-align:center}
.wordmarkMini .wmSub{font-size:12px; text-align:center}


/* Plain wordmark (no box) */
.wordmark.plain{
  border:none !important;
  background:transparent !important;
  padding:0 !important;
  border-radius:0 !important;
}


/* Optimized contact (single wide card) */
.contactWide{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  box-shadow: 0 25px 80px rgba(0,0,0,.45);
  padding:22px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
.contactLeft h3, .contactRight h3{margin:0 0 10px 0}
.contactButtons{display:flex; flex-wrap:wrap; gap:10px; margin:10px 0 14px}
.addrLine{font-size:13px; color: var(--muted); margin:8px 0 12px}
.addrLine .muted{opacity:.85}
.mapWrap{border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,.08)}
.mapWrap iframe{width:100%; height:240px; border:0}
.quoteForm{display:flex; flex-direction:column; gap:10px}
.quoteForm .row{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.quoteForm .row.actions{grid-template-columns:auto auto; justify-content:flex-start}
.quoteForm input, .quoteForm textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
.quoteForm label{display:flex; flex-direction:column; gap:6px; font-size:12px; color: var(--muted)}
@media (max-width: 920px){
  .contactWide{grid-template-columns: 1fr}
  .quoteForm .row{grid-template-columns:1fr}
  .mapWrap iframe{height:220px}
}


/* Dark header */
header{
  background:#050b14;
  color:#ffffff;
  border-bottom:1px solid rgba(255,255,255,.15);
}
header a{color:#ffffff;font-weight:600}

/* Light cards */
.card, .contactWide{
  background: var(--card);
  border:1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* Dark footer */
footer{
  background:#0b1622;
  color:#cfd6de;
}

/* Header brand text */
.brandText{display:flex; flex-direction:column; gap:2px}
.btTop{
  font-weight:800;
  letter-spacing:1.6px;
  font-size:18px;
  color:#ffffff;
}
.btSub{
  font-size:11px;
  letter-spacing:.6px;
  color: rgba(255,255,255,.70);
}

/* WhatsApp icon buttons */
.contactButtons .btn{display:inline-flex; align-items:center; gap:10px}
.contactButtons .btn .ico{display:inline-flex; width:22px; height:22px; color:#25D366}
.contactButtons .btn .ico svg{width:22px; height:22px; display:block}
.contactButtons .btn .num{font-weight:700; letter-spacing:.2px}

/* Floating WhatsApp */
.waFloat{
  position:fixed;
  right:18px;
  bottom:18px;
  width:56px;
  height:56px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 14px 35px rgba(0,0,0,.25);
  z-index:9999;
}
.waFloat svg{width:30px; height:30px}

footer a{color:#ffffff}
footer .muted{color:rgba(255,255,255,.70)}

/* WhatsApp green buttons */
.contactButtons .btn{
  background:#25D366;
  color:#0b1622;
  border:none;
}
.contactButtons .btn:hover{
  filter:brightness(.95);
}
.contactButtons .btn .ico{color:#0b1622}

.waFloat{
  background:#25D366;
}

.gold{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

nav a{color:rgba(255,255,255,.82)}
nav a:hover{color:#ffffff}

/* Stronger header nav contrast */
nav a{
  color:#e9eef4 !important;
  font-weight:600;
}
nav a:hover{
  color:#ffffff !important;
}

/* Footer contrast */
footer{
  background:#050b14;
}
footer, footer p, footer span{
  color:#e9eef4 !important;
}
footer .muted{
  color:#b9c4cf !important;
}
footer .pill{
  background:rgba(255,255,255,.08);
  color:#ffffff;
  border:1px solid rgba(255,255,255,.18);
}

/* Fixed header */
header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
/* Offset body to avoid content hidden under header */
body{
  padding-top: 72px;
}

/* Anchor offset for fixed header */
section[id]{
  scroll-margin-top: 90px;
}

.waBtn{background:#25D366; color:#0b1a12; border-color:transparent;}
.waBtn:hover{filter:brightness(.95);}


/* WhatsApp refined (premium but still green) */
.waFloat{
  right:22px;
  bottom:22px;
  width:52px;
  height:52px;
  background: linear-gradient(135deg, #25D366 0%, #1EBE5D 60%, #16A84E 100%);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  color:#ffffff;
}
.waFloat svg{width:26px; height:26px}
.waFloat svg path{fill: currentColor !important;}
.waFloat:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
  filter: brightness(1.03);
}
.waFloat:active{transform: translateY(-1px) scale(1.01);}
.waFloat:focus-visible{
  outline:none;
  box-shadow: 0 0 0 3px rgba(201,162,77,.55), 0 18px 44px rgba(0,0,0,.26);
}



/* Etapas – números como marca d’água */
.step-card{position:relative;overflow:hidden}

.step-card h3,.step-card p{position:relative;z-index:1}


/* Etapas do Método DD&K – Chip ETAPA */
#processo .step-number{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(31, 79, 216, 0.12);
  border:1px solid rgba(31, 79, 216, 0.12);
  color:#0b2a4a;
  font-weight:700;
  letter-spacing:.6px;
  margin-bottom:12px;
}
#processo .step-number::before{
  content:"ETAPA";
  font-size:11px;
  font-weight:800;
  color:#0B2A4A;
  letter-spacing:.8px;
}
