/*
Theme Name: Método ACORDE Premium
Theme URI: https://acordeconsultoria.com
Author: OpenAI
Description: Tema premium do Método ACORDE - Arquitetura de Projetos e Processos
Version: 8.0
Text Domain: metodo-acorde-premium
*/

:root{
  --bg:#f5f7fa;
  --surface:#ffffff;
  --ink:#0f2233;
  --muted:#5d6b78;
  --line:#dbe3ea;
  --brand:#0f2a3d;
  --brand-2:#1f4f6e;
  --brand-3:#2f6f95;
  --soft:#eaf1f6;
  --radius:18px;
  --shadow:0 16px 40px rgba(15,42,61,.08);
  --container:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;height:auto}
a{color:var(--brand-2);text-decoration:none}
a:hover{opacity:.92}
.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(15,42,61,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:78px;
  gap:20px;
}
.brand{
  font-weight:800;
  letter-spacing:.02em;
  color:var(--brand);
  font-size:20px;
}
.brand small{
  display:block;
  font-size:11px;
  color:var(--muted);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.main-nav ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap:26px;
  margin:0;
  padding:0;
}
.main-nav a{
  color:var(--ink);
  font-weight:700;
  font-size:14px;
}
.header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:12px;
  background:var(--brand);
  color:#fff;
  font-weight:800;
}
.hero{
  background:
   radial-gradient(circle at top right, rgba(47,111,149,.18), transparent 25%),
   linear-gradient(135deg, #0b1d2a 0%, #113247 55%, #1f4f6e 100%);
  color:#fff;
  padding:96px 0 80px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  padding:9px 14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.hero h1{
  margin:0 0 18px;
  font-size:58px;
  line-height:1.03;
  color:#fff;
}
.hero p{
  margin:0 0 28px;
  font-size:19px;
  color:rgba(255,255,255,.90);
  max-width:720px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:28px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 22px;
  border-radius:12px;
  font-weight:800;
  transition:transform .18s ease, opacity .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:#fff;
  color:var(--brand);
}
.btn-secondary{
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.04);
}
.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.metric{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:16px;
}
.metric strong{
  display:block;
  color:#fff;
  margin-bottom:4px;
  font-size:14px;
}
.metric span{
  color:rgba(255,255,255,.82);
  font-size:14px;
}
.hero-panel{
  background:rgba(255,255,255,.96);
  color:var(--ink);
  border-radius:24px;
  padding:28px;
  box-shadow:0 24px 60px rgba(0,0,0,.18);
}
.hero-panel h3{
  margin:0 0 14px;
  font-size:28px;
  line-height:1.18;
}
.hero-panel p{
  color:var(--muted);
  margin:0 0 14px;
  font-size:16px;
}
.hero-panel ul{
  margin:0 0 18px;
  padding-left:18px;
}
.hero-panel li{margin-bottom:8px}
.section{
  padding:88px 0;
}
.section.alt{background:#fff}
.section.dark{
  background:var(--brand);
  color:#fff;
}
.section-head{
  max-width:820px;
  margin:0 0 34px;
}
.section-head.center{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.section-head .kicker{
  display:inline-block;
  margin-bottom:12px;
  color:var(--brand-3);
  font-size:12px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.section.dark .kicker{color:#9ecae1}
.section-head h2{
  margin:0 0 14px;
  font-size:42px;
  line-height:1.1;
  color:inherit;
}
.section-head p{
  margin:0;
  color:var(--muted);
  font-size:18px;
}
.section.dark .section-head p,
.section.dark p{color:rgba(255,255,255,.86)}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
  box-shadow:var(--shadow);
}
.card h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.2;
}
.card p{
  margin:0;
  color:var(--muted);
}
.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.step{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
}
.step .badge{
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--brand);color:#fff;font-weight:800;
  margin-bottom:14px;
}
.step h3{
  margin:0 0 8px;
  font-size:22px;
}
.step p{
  margin:0;
  color:var(--muted);
}
.process-list{
  display:grid;
  gap:18px;
}
.process-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
}
.process-item .num{
  flex:0 0 52px;
  width:52px;height:52px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:var(--brand);color:#fff;font-weight:800;font-size:18px;
}
.process-item h3{margin:4px 0 8px;font-size:23px}
.process-item p{margin:0;color:var(--muted)}
.results{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.result{
  background:#f9fbfc;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
}
.result strong{
  display:block;
  margin-bottom:8px;
  font-size:20px;
}
.dark-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:30px;
}
.dark-box{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:26px;
}
.dark-box h3{margin:0 0 14px;color:#fff;font-size:26px}
.dark-box li{margin-bottom:8px}
.cta-band{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.cta-panel{
  text-align:center;
  background:linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border:1px solid var(--line);
  border-radius:26px;
  padding:54px 28px;
  box-shadow:var(--shadow);
}
.cta-panel h2{margin:0 0 14px;font-size:40px}
.cta-panel p{margin:0 auto 24px;max-width:760px;color:var(--muted);font-size:18px}
.page-wrap{
  padding:72px 0;
}
.page-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:36px;
  box-shadow:var(--shadow);
}
.page-card h1{margin-top:0;font-size:42px}
.page-card h2{font-size:28px;margin-top:28px}
.page-card h3{font-size:22px;margin-top:24px}
.site-footer{
  background:#0c1d2b;
  color:#d9e5ee;
  padding:60px 0 36px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
}
.site-footer h3{
  margin:0 0 12px;
  color:#fff;
  font-size:24px;
}
.site-footer p,.site-footer li,.site-footer a{color:#d9e5ee}
.site-footer ul{list-style:none;margin:0;padding:0}
.site-footer li{margin-bottom:8px}
.footer-bottom{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:14px;
  color:#b7c8d6;
}

@media (max-width: 1024px){
  .hero-grid,.dark-grid,.grid-3,.steps,.results,.footer-grid{
    grid-template-columns:1fr 1fr;
  }
  .hero-metrics{grid-template-columns:1fr}
}
@media (max-width: 768px){
  .main-nav{display:none}
  .hero,.section{padding:72px 0}
  .hero-grid,.dark-grid,.grid-3,.steps,.results,.footer-grid{grid-template-columns:1fr}
  .hero h1{font-size:38px}
  .section-head h2,.cta-panel h2,.page-card h1{font-size:32px}
  .section-head p,.hero p,.cta-panel p{font-size:16px}
  .process-item{flex-direction:column}
}
.header-actions{display:flex;align-items:center;gap:12px;}
.header-linkedin{display:inline-flex;align-items:center;justify-content:center;padding:13px 16px;border-radius:12px;background:#fff;border:1px solid rgba(15,42,61,.12);color:#0A66C2;font-weight:800;}
.btn-linkedin{background:#0A66C2;color:#fff;box-shadow:0 10px 24px rgba(10,102,194,.22);}
.hero-proof{margin:-8px 0 28px;color:rgba(255,255,255,.78);font-size:14px;font-weight:700;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
.audience-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.info-card{background:var(--surface);border:1px solid var(--line);border-radius:20px;padding:28px;box-shadow:var(--shadow);}
.info-card h3{margin:0 0 12px;font-size:24px;line-height:1.2;}
.info-card p{margin:0;color:var(--muted);}
.book-band{background:linear-gradient(135deg,#0f2233 0%, #16374d 100%);color:#fff;}
.book-band .section-head p,.book-band p{color:rgba(255,255,255,.84);}
.book-wrap{display:grid;grid-template-columns:.85fr 1.15fr;gap:28px;align-items:center;}
.book-card{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);border-radius:22px;padding:26px;box-shadow:0 16px 40px rgba(0,0,0,.18);}
.book-card .kicker{color:#9ecae1;display:inline-block;margin-bottom:10px;font-size:12px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;}
.book-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:22px;}
.site-footer ul li+li{margin-top:10px;}
@media (max-width: 980px){
  .header-inner{flex-wrap:wrap;justify-content:center;}
  .main-nav ul{gap:16px;flex-wrap:wrap;justify-content:center;}
  .hero-grid,.dark-grid,.book-wrap{grid-template-columns:1fr;}
  .hero h1{font-size:46px;}
  .hero-metrics,.audience-grid,.grid-3,.results,.footer-grid,.grid-2{grid-template-columns:1fr;}
}
@media (max-width: 768px){
  .site-header{position:static;}
  .header-actions{width:100%;justify-content:center;}
  .hero,.section{padding:70px 0;}
  .hero h1{font-size:38px;}
  .section-head h2,.cta-panel h2,.page-card h1{font-size:32px;}
  .section-head p,.hero p,.cta-panel p{font-size:16px;}
  .process-item{flex-direction:column;}
}
