/* ================================================
   AV Claude — Design System Completo
   Editora Alcance Vitória · Pr. Elton Melo · 2026
   ================================================ */

:root {
  --navy:   #0F1729;
  --gold:   #C9A84C;
  --gold-s: #E8D08A;
  --cream:  #F7F2EA;
  --dark:   #1C1C2E;
  --slate:  #4A4A5A;
  --white:  #FFFFFF;
  --serif:  Georgia, 'Times New Roman', serif;
  --sans:   Arial, Helvetica, sans-serif;
}

/* ── Reset geral ── */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--sans); color: var(--dark); margin: 0; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { margin-top: 0; }

/* ── HEADER ── */
.avc-header {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.avc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.avc-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: normal;
  color: #fff !important;
  letter-spacing: .3px;
  line-height: 1.25;
}
.avc-logo span { color: var(--gold); }
.avc-logo small { display: block; font-family: var(--sans); font-size: 9px; font-weight: bold; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 2px; }
.avc-nav { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.avc-nav a { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,.7) !important; font-weight: 500; transition: color .2s; }
.avc-nav a:hover { color: var(--gold) !important; }
.avc-nav-btn { background: var(--gold); color: var(--navy) !important; padding: 8px 18px; border-radius: 4px; font-weight: bold !important; }
.avc-nav-btn:hover { background: var(--gold-s); color: var(--navy) !important; }
.avc-menu-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 22px; cursor: pointer; }

/* ── Botões ── */
.av-btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy) !important;
  font-family: var(--sans);
  font-weight: bold;
  font-size: 14px;
  padding: 13px 32px;
  border-radius: 4px;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.av-btn-gold:hover { background: var(--gold-s); }
.av-btn-borda {
  display: inline-block;
  background: transparent;
  color: var(--gold) !important;
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 28px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  margin-left: 12px;
  transition: background .2s;
}
.av-btn-borda:hover { background: rgba(201,168,76,.1); }
.av-btn-borda-dark {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,.6) !important;
  font-family: var(--sans);
  font-size: 14px;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  margin-left: 12px;
  transition: all .2s;
}
.av-btn-borda-dark:hover { border-color: var(--gold); color: var(--gold) !important; }

/* ── Elementos decorativos ── */
.av-regra { display: block; width: 40px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 16px; }
.av-eyebrow { display: block; font-family: var(--sans); font-size: 10px; font-weight: bold; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }

/* ── Títulos de seção ── */
.av-h2 { font-family: var(--serif); font-size: 32px; font-weight: normal; color: var(--dark); margin-bottom: 8px; line-height: 1.2; }
.av-h2-claro { font-family: var(--serif); font-size: 32px; font-weight: normal; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.av-sub { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--slate); margin-bottom: 44px; }
.av-sub-claro { font-family: var(--serif); font-style: italic; font-size: 16px; color: rgba(255,255,255,.45); margin-bottom: 44px; }

/* ── Seções ── */
.av-sec { padding: 72px 0; }
.av-sec-cream { background: var(--cream); }
.av-sec-dark  { background: var(--navy); }
.av-sec-white { background: var(--white); }
.av-sec-dark2 { background: var(--dark); }

/* ════════════════════════════
   HERO
════════════════════════════ */
.av-hero {
  background: var(--navy);
  padding: 88px 0 64px;
  position: relative;
  overflow: hidden;
}
.av-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 70px solid rgba(201,168,76,.05);
  pointer-events: none;
}
.av-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 40px solid rgba(201,168,76,.04);
  pointer-events: none;
}
.av-hero h1 {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: normal;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 24px;
}
.av-hero h1 em { font-style: normal; color: var(--gold); }
.av-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}
.av-hero-foto {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}
.av-foto-placeholder {
  background: rgba(255,255,255,.04);
  border: 1.5px dashed rgba(201,168,76,.3);
  border-radius: 12px;
  width: 260px;
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
  font-family: var(--sans);
  font-size: 12px;
  gap: 12px;
  margin: 0 auto;
}
.av-foto-placeholder i { font-size: 44px; color: rgba(201,168,76,.35); }
.av-hero-stat {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.av-stat-num { display: block; font-family: var(--serif); font-size: 28px; color: var(--gold); font-weight: normal; line-height: 1; }
.av-stat-label { display: block; font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,.4); margin-top: 4px; }

/* ════════════════════════════
   PERFIS
════════════════════════════ */
.av-perfis {
  background: #0A1020;
  border-top: 1px solid rgba(201,168,76,.15);
  display: flex;
  flex-wrap: wrap;
}
.av-perfil {
  flex: 1 1 25%;
  padding: 24px 28px;
  border-right: 1px solid rgba(201,168,76,.1);
  transition: background .2s;
  text-decoration: none !important;
  min-width: 150px;
  display: block;
}
.av-perfil:last-child { border-right: none; }
.av-perfil:hover { background: rgba(201,168,76,.06); }
.av-perfil i { font-size: 22px; color: var(--gold); display: block; margin-bottom: 10px; }
.av-perfil strong { display: block; font-family: var(--sans); font-size: 11px; font-weight: bold; text-transform: uppercase; letter-spacing: 1.8px; color: var(--gold); margin-bottom: 5px; }
.av-perfil span { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.5; }

/* ════════════════════════════
   FERRAMENTAS
════════════════════════════ */
.av-tool {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 26px;
  height: 100%;
  border: 1px solid rgba(201,168,76,.18);
  display: block;
  transition: transform .25s, box-shadow .25s;
}
.av-tool:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.av-tool i { font-size: 30px; color: var(--gold); display: block; margin-bottom: 16px; }
.av-tool-nome { font-family: var(--serif); font-size: 19px; color: var(--dark); margin-bottom: 10px; }
.av-tool-desc { font-family: var(--sans); font-size: 13px; color: var(--slate); line-height: 1.6; margin: 0; }

/* ════════════════════════════
   PÁGINA DESTAQUE
════════════════════════════ */
.av-pcard {
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 10px;
  padding: 40px 34px;
  height: 100%;
  display: block;
  transition: border-color .2s, background .2s;
}
.av-pcard:hover { border-color: var(--gold); background: rgba(201,168,76,.04); }
.av-pcard-badge { display: block; font-family: var(--sans); font-size: 10px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; }
.av-pcard h3 { font-family: var(--serif); font-size: 28px; font-weight: normal; color: #fff; margin-bottom: 14px; }
.av-pcard p { font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 22px; }
.av-pcard-link { font-family: var(--sans); font-size: 13px; font-weight: bold; color: var(--gold); }

/* ════════════════════════════
   CARDS DE POST
════════════════════════════ */
.av-post {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  display: block;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.av-post:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.av-post-img { width: 100%; height: 185px; object-fit: cover; display: block; }
.av-post-vazio { width: 100%; height: 185px; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--gold); }
.av-post-corpo { padding: 20px 18px; }
.av-post-cat { display: block; font-family: var(--sans); font-size: 10px; font-weight: bold; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 8px; }
.av-post-titulo { font-family: var(--serif); font-size: 16px; color: var(--dark); line-height: 1.45; margin-bottom: 12px; }
.av-post-ler { font-family: var(--sans); font-size: 12px; font-weight: bold; color: var(--gold); }

/* ════════════════════════════
   LIVROS
════════════════════════════ */
.av-livro { border-radius: 5px; overflow: hidden; box-shadow: 0 5px 18px rgba(0,0,0,.18); transition: transform .25s, box-shadow .25s; display: block; }
.av-livro:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,.25); }
.av-livro img { width: 100%; display: block; }

/* ════════════════════════════
   VERSÍCULO DESTAQUE
════════════════════════════ */
.av-versiculo {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2540 100%);
  border-left: 4px solid var(--gold);
  padding: 48px;
  border-radius: 10px;
  text-align: center;
}
.av-versiculo blockquote {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin: 0 0 16px;
}
.av-versiculo cite { font-family: var(--sans); font-size: 12px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.avc-footer { background: #080e1a; padding: 56px 0 0; border-top: 1px solid rgba(201,168,76,.12); }
.avc-footer-logo { font-family: var(--serif); font-size: 18px; color: #fff; margin-bottom: 12px; }
.avc-footer-logo span { color: var(--gold); }
.avc-footer-desc { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.65; max-width: 280px; }
.avc-footer h5 { font-family: var(--sans); font-size: 10px; font-weight: bold; text-transform: uppercase; letter-spacing: 2.5px; color: var(--gold); margin-bottom: 20px; }
.avc-footer ul { list-style: none; padding: 0; margin: 0; }
.avc-footer ul li { margin-bottom: 10px; }
.avc-footer ul a { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; }
.avc-footer ul a:hover { color: var(--gold); }
.avc-footer-contato p { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 6px; }
.avc-footer-contato i { color: var(--gold); margin-right: 8px; }
.avc-social { display: flex; gap: 12px; margin-top: 20px; }
.avc-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(201,168,76,.25); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 14px; transition: all .2s; }
.avc-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.avc-footer-bottom { margin-top: 48px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.avc-footer-bottom p { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,.25); margin: 0; }
.avc-footer-bottom a { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,.25); }
.avc-footer-bottom a:hover { color: var(--gold); }

/* ════════════════════════════
   INNER PAGES
════════════════════════════ */
.av-page-hero { background: var(--navy); padding: 52px 0; border-bottom: 1px solid rgba(201,168,76,.12); }
.av-page-hero h1 { font-family: var(--serif); font-size: 38px; font-weight: normal; color: #fff; margin-bottom: 8px; }
.av-page-hero p { font-family: var(--serif); font-style: italic; font-size: 16px; color: rgba(255,255,255,.5); margin: 0; }
.av-content { padding: 64px 0; }
.av-content-body { font-family: var(--sans); font-size: 16px; color: var(--slate); line-height: 1.75; }
.av-content-body h2 { font-family: var(--serif); font-size: 26px; color: var(--dark); margin: 36px 0 16px; }
.av-content-body p { margin-bottom: 20px; }

/* ════════════════════════════
   RESPONSIVO
════════════════════════════ */
@media (max-width: 991px) {
  .av-hero h1 { font-size: 38px; }
  .avc-nav { gap: 18px; }
}
@media (max-width: 767px) {
  .av-hero { padding: 52px 0 40px; }
  .av-hero h1 { font-size: 30px; }
  .av-lead { font-size: 16px; margin-bottom: 28px; }
  .av-btn-borda { margin-left: 0; margin-top: 10px; display: block; text-align: center; }
  .av-perfil { flex: 1 1 50%; }
  .av-sec { padding: 48px 0; }
  .av-h2, .av-h2-claro { font-size: 26px; }
  .av-pcard { padding: 28px 22px; }
  .av-hero-foto { margin-top: 36px; }
  .av-hero-stat { gap: 24px; }
  .avc-nav { display: none; }
  .avc-nav.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 20px; border-top: 1px solid rgba(201,168,76,.1); z-index: 999; }
  .avc-menu-toggle { display: block; }
  .avc-header-inner { position: relative; }
  .av-versiculo { padding: 32px 24px; }
  .av-versiculo blockquote { font-size: 18px; }
}
