/* ===========================
   Raphael Leite Advocacia
   =========================== */

:root {
  --navy: #0b2545;
  --navy-dark: #071a33;
  --navy-light: #13355f;
  --gold: #c9a227;
  --gold-light: #e0c064;
  --bg: #ffffff;
  --bg-alt: #f7f8fb;
  --text: #26313f;
  --text-light: #5c6b7a;
  --border: #e6e9ee;
  --whatsapp: #25d366;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.15);
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); font-weight: 700; line-height: 1.25; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--text-light); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--primary:hover { background: var(--navy-light); }

.btn--outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn--whatsapp:hover { background: #1fb857; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.header.is-scrolled { box-shadow: 0 4px 20px rgba(11,37,69,0.08); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
}
.logo__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.1;
}
.logo__text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav__link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.nav__link:hover { color: var(--navy); }
.nav__link i { font-size: 0.65rem; opacity: 0.6; }

.nav__dropdown { position: relative; }
.nav__submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav__dropdown:hover .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* Ponte invisível sobre o vão de 16px entre o link e o submenu (só desktop),
   para o submenu não sumir quando o mouse desce até ele */
@media (min-width: 861px) {
  .nav__dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 18px;
  }
}
.nav__submenu li a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text);
}
.nav__submenu li a:hover { background: var(--bg-alt); color: var(--navy); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--bg-alt) 0%, #fff 55%);
  padding: 90px 0 80px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 20px;
}
.hero__lead {
  color: var(--text-light);
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 34px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 66px;
  height: 66px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.6rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

/* ===== About ===== */
.about { padding: 100px 0; }
.about__inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.about__photo {
  aspect-ratio: 4/5;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about__text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; }
.about__text p { color: var(--text-light); margin-bottom: 16px; }

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.pillar h3 { font-family: var(--font-body); font-size: 0.98rem; color: var(--navy); margin-bottom: 3px; }
.pillar p { font-size: 0.85rem; color: var(--text-light); }

/* ===== Areas ===== */
.areas { padding: 100px 0; background: var(--bg-alt); }
.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.area-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  scroll-margin-top: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.area-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.area-card h3 { font-size: 1.25rem; margin-bottom: 18px; }
.area-card ul { margin-bottom: 24px; flex-grow: 1; }
.area-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.area-card li i { color: var(--gold); margin-top: 4px; font-size: 0.8rem; }
.area-card__link {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}
.area-card__link:hover { gap: 12px; color: var(--gold); }

/* ===== Diferenciais ===== */
.diff { padding: 90px 0; }
.diff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.diff__item i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.diff__item h3 { font-family: var(--font-body); font-size: 1.02rem; margin-bottom: 8px; color: var(--navy); }
.diff__item p { font-size: 0.88rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--bg-alt); }
.accordion { max-width: 780px; margin: 0 auto; }
.accordion__item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.accordion__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.accordion__question i { color: var(--gold); transition: transform 0.25s ease; flex-shrink: 0; }
.accordion__item.is-open .accordion__question i { transform: rotate(45deg); }
.accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion__answer p { padding: 0 24px 20px; color: var(--text-light); font-size: 0.92rem; }

/* ===== Contact ===== */
.contact { padding: 100px 0; }
.contact__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}
.contact__info h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 14px; }
.contact__info p { color: var(--text-light); margin-bottom: 28px; }
.contact__list { margin-bottom: 26px; }
.contact__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 16px;
}
.contact__list li i { color: var(--gold); width: 20px; text-align: center; }
.contact__social { display: flex; gap: 12px; }
.contact__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.contact__social a:hover { background: var(--navy); color: var(--gold); }

.contact__form {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: #fff;
  color: var(--text);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-submit { align-self: flex-start; margin-top: 8px; }
.form-success {
  display: none;
  color: #1a7d3a;
  background: #e7f7ec;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
}
.form-success.is-visible { display: block; }

/* ===== Footer ===== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding-top: 70px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.logo--footer .logo__text { color: #fff; }
.footer__col p { font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }
.footer__oab { color: var(--gold); font-weight: 600; margin-top: 12px !important; }
.footer__col h4 { color: #fff; font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 18px; }
.footer__col ul li { margin-bottom: 12px; font-size: 0.9rem; }
.footer__col ul li a:hover { color: var(--gold); }
.footer__col ul li i { color: var(--gold); margin-right: 8px; width: 16px; }
.footer .contact__social a { background: rgba(255,255,255,0.08); color: #fff; }
.footer .contact__social a:hover { background: var(--gold); color: var(--navy); }

.footer__bottom { padding: 24px 0 30px; }
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
}
.footer__disclaimer { color: rgba(255,255,255,0.4); }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Scroll reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ===========================
   Páginas internas
   =========================== */

/* Marca a página ativa no menu */
.nav__link.is-current { color: var(--navy); }
.nav__link.is-current::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--gold);
  margin-top: 4px;
}

/* Hero de página interna */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 70px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201,162,39,0.22) 0%, rgba(201,162,39,0) 70%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  max-width: 780px;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  font-size: 1.05rem;
}
.page-hero .eyebrow { margin-bottom: 18px; }

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  color: var(--text-light);
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li::after { content: "/"; color: var(--border); }
.breadcrumb li:last-child::after { content: none; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb li[aria-current] { color: var(--navy); font-weight: 600; }

/* Bloco de conteúdo padrão */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.prose { max-width: 760px; }
.prose h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 40px 0 16px;
}
.prose h3 {
  font-family: var(--font-body);
  color: var(--navy);
  font-size: 1.15rem;
  margin: 30px 0 12px;
}
.prose p { color: var(--text-light); margin-bottom: 16px; }
.prose ul.checklist { margin: 8px 0 24px; }
.prose ul.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-light);
  margin-bottom: 12px;
}
.prose ul.checklist li i { color: var(--gold); margin-top: 5px; font-size: 0.8rem; }
.prose strong { color: var(--text); }

/* Caixa de destaque */
.callout {
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 22px 26px;
  margin: 28px 0;
}
.callout p { margin: 0; color: var(--text); }
.callout p + p { margin-top: 10px; }

/* CTA em faixa */
.cta-band {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  border-radius: 18px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 440px; }
.cta-band .btn--whatsapp { flex-shrink: 0; }

/* Grid de serviços em página de área */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}
.service-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-item h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.service-item h3 i { color: var(--gold); }
.service-item p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 14px; }
.service-item a {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-item a:hover { color: var(--gold); gap: 10px; transition: gap 0.2s ease; }

/* Grid de artigos (blog) */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-card__top {
  height: 8px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.article-card__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex-grow: 1; }
.article-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.article-card h3 {
  font-size: 1.12rem;
  line-height: 1.35;
  margin-bottom: 12px;
}
.article-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; flex-grow: 1; }
.article-card__link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.article-card__link:hover { color: var(--gold); gap: 12px; transition: gap 0.2s ease; }

/* Layout de artigo individual */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
  align-items: start;
}
.article-body { max-width: 100%; }
.article-body .lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 26px;
  line-height: 1.7;
}
.article-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-light);
  padding-bottom: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.article-meta span { display: flex; align-items: center; gap: 7px; }
.article-meta i { color: var(--gold); }

/* Sidebar do artigo */
.article-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.aside-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
}
.aside-card--dark {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  border: none;
  color: #fff;
}
.aside-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--navy);
}
.aside-card--dark h4 { color: #fff; }
.aside-card--dark p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin-bottom: 18px; }
.aside-card ul li { margin-bottom: 10px; }
.aside-card ul li a {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.aside-card ul li a i { color: var(--gold); margin-top: 5px; font-size: 0.72rem; }
.aside-card ul li a:hover { color: var(--navy); }

/* FAQ dentro do artigo reaproveita .accordion */
.article-body .accordion { max-width: 100%; margin: 24px 0; }
.article-body .accordion__item { border: 1px solid var(--border); box-shadow: none; }

/* Stats faixa (usada em sobre) */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat h3 {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat p { color: var(--text-light); font-size: 0.9rem; }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 991px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__photo { max-width: 320px; margin: 0 auto; }
  .contact__inner { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr 1fr; }
  .diff__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .article-aside .aside-card { flex: 1 1 260px; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav.is-open { max-height: 500px; box-shadow: var(--shadow-lg); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 0; padding: 10px 24px 20px; }
  .nav__list > li { width: 100%; }
  .nav__link { padding: 14px 0; width: 100%; }
  .nav__dropdown .nav__submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    padding: 0;
    transition: max-height 0.3s ease;
  }
  .nav__dropdown.is-open .nav__submenu { max-height: 300px; padding: 6px 0 10px; }
  .header__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__photo { max-width: 260px; }
}

@media (max-width: 640px) {
  .pillars { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 60px; }
  .about, .areas, .diff, .faq, .contact { padding: 64px 0; }
  .section { padding: 56px 0; }
  .service-list { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 30px 26px; text-align: center; justify-content: center; }
  .cta-band p { max-width: 100%; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 54px 0 48px; }
}
