/* ==========================================================================
   Saymon Viana Advocacia — Design System
   ========================================================================== */

:root {
  --bg: #16223b;
  --bg-alt: #142036;
  --bg-deep: #0f1a2e;
  --card: #1d2c49;
  --card-2: #20304f;
  --border: #2a3a5a;
  --gold: #e0a93a;
  --gold-soft: #d9a441;
  --green: #25a85a;
  --green-dark: #1f9450;
  --green-glow: rgba(37, 168, 90, 0.25);
  --text: #eaf0fa;
  --muted: #9aa7bd;
  --muted-2: #7c8aa3;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --maxw: 1180px;
  --section-y: 20px;
  --section-head-gap: 32px;
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.gold { color: var(--gold); }
.green-text { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 8px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.2s ease; white-space: nowrap;
}
.btn-green { background: var(--green); color: #fff; box-shadow: 0 10px 24px var(--green-glow); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #1a1205; }
.btn-gold:hover { background: #ecb84c; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* ---------- Badges / Pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 30px;
  background: rgba(37, 168, 90, 0.12); color: var(--green);
  border: 1px solid rgba(37, 168, 90, 0.3);
}
.pill-gold { background: rgba(224, 169, 58, 0.1); color: var(--gold); border-color: rgba(224, 169, 58, 0.3); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 26, 46, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.logo { display: inline-flex; align-items: center; line-height: 1; flex-shrink: 0; min-width: 0; }
.logo img,
.logo picture,
.logo picture img {
  height: 56px;
  width: auto;
  max-width: min(220px, 46vw);
  display: block;
  object-fit: contain;
  object-position: left center;
}
.logo .logo-main { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.04em; color: var(--gold); }
.logo .logo-sub { font-size: 0.62rem; letter-spacing: 0.42em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }
.footer-brand .logo img,
.footer-brand .logo picture img { height: 64px; max-width: 260px; }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu > li > a {
  font-size: 0.92rem; font-weight: 500; color: var(--muted); transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 5px;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--gold); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--bg-deep); border: 1px solid var(--border); border-radius: var(--radius-sm);
  min-width: 250px; padding: 10px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transition: all 0.2s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 7px; font-size: 0.88rem; color: var(--muted); }
.dropdown a:hover { background: var(--card); color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-blog { font-size: 0.92rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-blog:hover, .nav-blog.active { color: var(--gold); }
.nav-social {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(224, 169, 58, 0.45);
  display: grid; place-items: center; color: var(--gold); transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.nav-social:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-1px); }
.nav-social svg { display: block; pointer-events: none; }
.nav-phone { display: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { padding: 24px 0 24px; }
.hero-box {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(37, 168, 90, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 10%, rgba(224, 169, 58, 0.08), transparent 60%),
    linear-gradient(160deg, #122039, #0d1727);
  border: 1px solid var(--border); border-radius: 22px;
  padding: 50px 48px; text-align: left;
}
.hero-box--compact { padding: 40px 44px; }
.hero-box::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 22px 22px; pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px);
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-inner { position: relative; z-index: 1; max-width: none; margin: 0; text-align: left; }
.hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.3rem); margin: 22px 0 18px; }
.hero p.lead { font-size: 1.08rem; color: var(--muted); max-width: 620px; margin: 0 0 14px; }
.hero p.sub { font-size: 0.95rem; color: var(--muted-2); max-width: 560px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 12px; justify-content: flex-start; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.hero-actions .btn-lg { padding: 13px 20px; font-size: 0.92rem; }
@media (min-width: 900px) { .hero-actions { flex-wrap: nowrap; } }
.hero-stats { display: flex; gap: 60px; justify-content: flex-start; flex-wrap: wrap; }
.hero-stats .stat .num { font-family: var(--font-head); font-size: 2rem; color: var(--gold); font-weight: 700; }
.hero-stats .stat .lbl { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; }
.hero-photo {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 280px;
  max-height: 460px;
  align-self: stretch;
}
.hero-box--compact .hero-photo { min-height: 220px; max-height: 340px; }
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-box--compact .hero-photo img { min-height: 220px; }
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 28px; }
  .hero-photo { max-height: 400px; order: -1; min-height: 0; }
  .hero-photo img { min-height: 280px; }
}

/* ---------- Section base ---------- */
.section { padding: var(--section-y) 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto var(--section-head-gap); }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: 12px 0 10px; }
.section-head p { color: var(--muted); font-size: 1rem; }

/* ---------- Cards grid (areas / tipos) ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card--link { text-decoration: none; color: inherit; transition: border-color 0.2s ease, transform 0.2s ease; }
.card--link:hover { border-color: var(--gold); transform: translateY(-2px); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card--local { border-color: rgba(224,169,58,0.2); padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--local .card-local-photo { display: block; height: 150px; overflow: hidden; border-bottom: 1px solid var(--border); }
.card--local .card-local-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.card--local:hover .card-local-photo img { transform: scale(1.05); }
.card--local .card-local-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.card--local .card-local-body h3 { margin-top: 0; }
.card--local .card-local-body p { flex: 1; }
.card--local .card-icon { display: none; }
@media (max-width: 1100px) { .cards-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards-grid--2, .cards-grid--4 { grid-template-columns: 1fr; } }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: transform 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(224, 169, 58, 0.4); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--gold), #b9822a); color: #1a1205; margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3,
.card-title { font-size: 1.18rem; margin-bottom: 10px; font-family: var(--font-head); font-weight: 700; line-height: 1.18; }
.card-title { margin-top: 0; }
.card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.card-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.card-list li { font-size: 0.86rem; color: var(--muted); display: flex; align-items: flex-start; gap: 9px; }
.card-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.card-link { color: var(--gold); font-size: 0.88rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover { gap: 10px; }

/* ---------- Feature section (checklist + content) ---------- */
.feature { padding: var(--section-y) 0; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-grid--single { grid-template-columns: 1fr; max-width: 820px; }
.feature-content h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin: 16px 0 18px; }
.feature-content p { color: var(--muted); margin-bottom: 24px; }
.check-list { display: grid; gap: 12px; margin-bottom: 28px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.check-list li .ck {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(37,168,90,0.15);
  color: var(--green); display: grid; place-items: center; flex-shrink: 0; font-size: 0.7rem; font-weight: 700;
}
.feature-visual {
  background: #0f1a2e url('../images/segundapaginaprincipal-840.webp') center top / cover no-repeat;
  border-radius: 18px; min-height: 420px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.feature-visual.dark { background: #0f1a2e url('../images/segundapaginaprincipal-840.webp') center top / cover no-repeat; }
.feature-visual--home {
  background: var(--bg-deep);
  min-height: auto;
  overflow: hidden;
  padding: 0;
}
.feature-visual--home img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: contain;
}

/* ---------- Caso real ---------- */
.case-study-box {
  background: linear-gradient(160deg, #13203a, #0f1a2e);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 36px;
  align-items: start;
}
.case-study-main { min-width: 0; }
.case-study-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: sticky;
  top: 96px;
}
.case-study-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.case-study-text p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 16px;
}
.case-study-text p:last-of-type { margin-bottom: 0; }
.case-study-note {
  margin-top: 24px !important;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text) !important;
  font-weight: 500;
}
.case-prints {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  justify-content: start;
  gap: 18px;
  margin-top: 28px;
}
.case-study-cta { margin-top: 28px; }
.social-prints {
  max-width: 560px;
  margin: 0 auto;
}
.case-print {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  max-width: 240px;
  transition: transform .25s ease, border-color .25s ease;
}
.case-print:hover { transform: translateY(-4px); border-color: rgba(224,169,58,0.4); }
.case-print img { width: 100%; max-height: 420px; height: auto; object-fit: contain; display: block; }
.case-print figcaption {
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
}
@media (max-width: 900px) {
  .case-study-box {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .case-study-photo {
    position: static;
    max-width: 280px;
    margin: 0 auto;
    order: -1;
  }
  .case-study-photo img { min-height: 320px; }
}
@media (max-width: 760px) {
  .legal-box { padding: 28px 22px; }
  .case-study-box { padding: 28px 22px; }
  .case-prints {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .case-study-cta { text-align: center; }
  .case-print { max-width: none; }
  .case-print img { max-height: 360px; }
}

/* ---------- Vídeo ---------- */
.video-box { max-width: 520px; margin: 0 auto; }
.video-player {
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow: var(--shadow);
}
.video-player video { width: 100%; height: auto; display: block; vertical-align: top; }
.video-cta { margin-top: 24px; text-align: center; }
.video-hint { margin-top: 12px; text-align: center; font-size: 0.82rem; color: var(--muted-2); }
.video-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}
.video-links .btn { font-size: 0.85rem; padding: 10px 16px; }

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px;
  position: relative;
}
.step-num {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: #1a1205;
  width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--gold), #b9822a); margin-bottom: 16px;
}
.step h3,
.step h4,
.step-title { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font-head); font-weight: 700; line-height: 1.18; }
.step-title { margin-top: 0; }
.step p { color: var(--muted); font-size: 0.88rem; }

/* ---------- Testimonials ---------- */
.testi-wrap { position: relative; }
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: #f7f6f2; color: #2a3142; border-radius: var(--radius); padding: 26px 24px;
  border: 1px solid #e6e2d8; box-shadow: 0 14px 30px rgba(0,0,0,0.2);
}
.testi-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(145deg, var(--gold), #b9822a); color:#1a1205; display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); flex-shrink: 0; overflow: hidden; }
.testi-avatar--photo { background: var(--card); border: 2px solid rgba(224,169,58,0.35); padding: 0; }
.testi-avatar--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-top .name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.testi-top .role { font-size: 0.78rem; color: var(--muted); }
.stars { color: #e0a93a; font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi p { font-size: 0.92rem; color: #4a5263; }
.testi-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); color: #fff; border: none; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow); }
.testi-nav.prev { left: -18px; } .testi-nav.next { right: -18px; }
.testi-nav:hover { background: var(--green-dark); }

/* ---------- CTA band ---------- */
.cta-band { padding: 30px 0 90px; }
.cta-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center;
  background: linear-gradient(160deg, #13203a, #0f1a2e);
  border: 1px solid var(--border); border-radius: 22px; padding: 46px;
}
.cta-visual { background: #0f1a2e url('../images/segundapaginaprincipal-840.webp') center top / cover no-repeat; border-radius: 16px; min-height: 360px; overflow: hidden; }
.cta-content h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin: 14px 0 16px; }
.cta-content p { color: var(--muted); margin-bottom: 22px; }
.cta-content .check-list { margin-bottom: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-grid--wide { grid-template-columns: 1.3fr 0.9fr 1fr 0.9fr 1.1fr; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 320px; }
.footer-location { margin-top: 12px; font-size: 0.85rem !important; }
.footer-brand-oab { margin: -6px 0 16px; font-size: 0.8rem !important; color: var(--gold) !important; font-weight: 600; letter-spacing: 0.04em; }
.footer-location strong { color: var(--text); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.9rem; }
.footer-address { line-height: 1.5; margin-top: 4px; }
.footer-col a:hover { color: var(--gold); }
.footer-news { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.footer-news p { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.footer-news .btn { width: 100%; justify-content: center; }
.footer-map h4 { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-map__embed { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; line-height: 0; }
.footer-map__embed iframe { display: block; width: 100%; filter: grayscale(0.2); }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: var(--muted-2); font-size: 0.82rem; }
.footer-oab { color: var(--muted-2); font-size: 0.78rem; opacity: 0.85; }
.social { display: flex; gap: 12px; }
.social a { width: 36px; height: 36px; border-radius: 9px; background: var(--card); display: grid; place-items: center; color: var(--muted); border: 1px solid var(--border); }
.social a:hover { color: var(--gold); border-color: var(--gold); }
.social svg { width: 17px; height: 17px; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%; background: var(--green); display: grid; place-items: center; box-shadow: 0 12px 28px var(--green-glow); z-index: 90; }
.wa-float:hover { background: var(--green-dark); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Page hero (simple, for sobre/contato/blog) ---------- */
.page-hero { padding: var(--section-y) 0 20px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0 12px; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; }

/* ---------- Sobre: profile ---------- */
.profile-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 50px; align-items: center; }
.profile-photo { width: 280px; height: 280px; border-radius: 50%; margin: 0 auto;
  background: #0f1a2e url('../images/segundapaginaprincipal-840.webp') center 18% / cover no-repeat; border: 4px solid var(--gold);
  display: grid; place-items: center; overflow: hidden; box-shadow: 0 18px 40px rgba(0,0,0,0.4); }

/* ---------- Values mini cards ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; }
.value-card .card-icon { margin: 0 auto 16px; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s; }
.post:hover { transform: translateY(-5px); }
.post-img { height: 180px; background: linear-gradient(145deg, #25406a, #16223b); display: grid; place-items: center; color: var(--gold); }
.post-body { padding: 22px; }
.post-tag { font-size: 0.74rem; color: var(--green); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.post-body h3 { font-size: 1.1rem; margin: 10px 0 10px; }
.post-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }
.post-meta { font-size: 0.8rem; color: var(--muted-2); }
.post-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--gold); font-weight: 600; font-size: 0.85rem; transition: gap .2s ease; }
.post:hover .post-more { gap: 10px; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.contact-info-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 16px; }
.contact-info-card .ci-icon { width: 46px; height: 46px; border-radius: 11px; background: linear-gradient(145deg, var(--gold), #b9822a); color:#1a1205; display: grid; place-items: center; flex-shrink: 0; }
.contact-info-card h4 { font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--muted); font-size: 0.9rem; }
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; margin-bottom: 7px; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border-radius: 9px; background: var(--bg-deep);
  border: 1px solid var(--border); color: var(--text); font-family: var(--font-body); font-size: 0.92rem;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Diagnóstico gratuito — regularização */
.diag-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: start;
}
.faq-static {
  padding: 28px 0 0;
}
.faq-static h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 14px 0 16px;
}
.faq-static p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
  margin-bottom: 14px;
}
.faq-static-more {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.faq-static-more h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--text);
}
.faq-static-more h3:not(:first-child) { margin-top: 20px; }
.diagnostico-form h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 8px;
}
.diagnostico-lead {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .diag-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Privacidade (prose) ---------- */
.hero-inner--center { text-align: center; max-width: 720px; margin: 0 auto; }
.legal-box {
  background: linear-gradient(160deg, #13203a, #0f1a2e);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px 44px;
}
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin: 36px 0 14px; color: var(--text); }
.prose h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; font-size: 0.96rem; }
.prose ul { list-style: disc; padding-left: 22px; }

/* ---------- Guia de regularização (conteúdo longo) ---------- */
.guide-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
.guide-toc {
  position: sticky; top: 96px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 18px;
}
.guide-toc h3 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.guide-toc ol { list-style: none; counter-reset: guide; }
.guide-toc li { counter-increment: guide; margin-bottom: 8px; }
.guide-toc a {
  display: block; font-size: 0.88rem; color: var(--muted); padding: 6px 0;
  border-bottom: 1px solid rgba(42, 58, 90, 0.45); transition: color 0.2s;
}
.guide-toc a:hover { color: var(--gold); }
.guide-toc a::before { content: counter(guide) ". "; color: var(--gold-soft); font-weight: 600; }
.prose--guide h3 { font-size: 1.35rem; margin: 36px 0 14px; color: var(--text); scroll-margin-top: 96px; }
.prose--guide h3:first-child { margin-top: 0; }
.prose--guide p { line-height: 1.75; }
.prose--guide .topic-lead { font-size: 1.02rem; color: var(--text); }
.topic-related { font-size: 0.9rem; color: var(--muted); margin: 4px 0 20px; }
.topic-related a { color: var(--gold); }
.checklist-done { margin-top: 0; margin-bottom: 16px; font-size: 0.95rem; color: var(--green); font-weight: 600; }
.checklist-success { margin-top: 4px; text-align: center; }
.checklist-success[hidden] { display: none !important; }
.checklist-form-fields[hidden] { display: none !important; }
.checklist-download-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}
.checklist-success-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.oab-card { display: flex; gap: 28px; align-items: center; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.oab-card__icon { flex: 0 0 auto; width: 64px; height: 64px; color: var(--gold); }
.oab-card__icon svg { width: 100%; height: 100%; }
.oab-card__content h2 { margin: 12px 0 10px; }
.oab-card__content p { color: var(--muted); margin-bottom: 10px; }
.oab-card__reg { color: var(--text) !important; }
.oab-card__reg strong { color: var(--gold); }
@media (max-width: 640px) { .oab-card { flex-direction: column; text-align: center; gap: 18px; padding: 26px 20px; } }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--gold); }
.card-list a { color: var(--gold); }
.card-list a:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .guide-layout { grid-template-columns: 1fr; }
  .guide-toc { position: static; }
}

/* ---------- Mobile: leitura e botão WhatsApp ---------- */
@media (max-width: 760px) {
  body { padding-bottom: 96px; }
  .site-footer { padding-bottom: 80px; }
  .footer-bottom { padding-bottom: 8px; }
  .wa-float {
    bottom: max(18px, env(safe-area-inset-bottom, 18px));
    right: max(16px, env(safe-area-inset-right, 16px));
    width: 52px;
    height: 52px;
  }
  .wa-float svg { width: 26px; height: 26px; }
  .hero .sub,
  .feature-content p,
  .faq-a p,
  .faq-static p,
  .prose--guide p,
  .cta-content p,
  .section-head p {
    font-size: 0.94rem;
    line-height: 1.7;
  }
  .prose--guide h3 { font-size: 1.2rem; margin-top: 28px; }
  .guide-toc { margin-bottom: 8px; }
  .alert-callout { padding: 14px 16px; }
  .alert-callout p { font-size: 0.9rem; }
  .diag-layout { gap: 24px; }
  .footer-news { margin-bottom: 12px; }
  .footer-map { margin-bottom: 12px; }
}

/* ---------- Map placeholder ---------- */
.map-box { height: 320px; border-radius: 18px; background: linear-gradient(145deg, #1c4a3a, #16223b); border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); }
.map-layout { display: grid; grid-template-columns: minmax(260px, 340px) minmax(0, 1fr); gap: 28px; align-items: stretch; }
.map-info { display: flex; flex-direction: column; gap: 0; }
.map-info .contact-info-card:last-of-type { margin-bottom: 24px; }
.map-embed {
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.bg-alt { background: var(--bg-alt); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .cards-grid, .process-grid, .testi-track, .blog-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .cta-grid, .contact-grid, .profile-grid, .map-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --section-y: 16px; --section-head-gap: 24px; }
  .logo img,
  .logo picture img { height: 46px; max-width: min(180px, 52vw); }
  .nav-menu { position: fixed; top: 76px; left: 0; right: 0; background: var(--bg-deep); flex-direction: column;
    align-items: stretch; gap: 0; padding: 10px 16px 24px; border-bottom: 1px solid var(--border);
    transform: translateY(-130%); transition: transform 0.3s ease; max-height: calc(100vh - 76px); overflow-y: auto; }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu > li > a { padding: 14px 6px; border-bottom: 1px solid var(--border); }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; background: transparent; padding: 0 0 6px 14px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .hero-box { padding: 46px 22px; }
  .cards-grid, .process-grid, .testi-track, .blog-grid, .values-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 36px; }
  .testi-nav { display: none; }
  .cta-grid, .form-card, .hero-box { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Modern layer — refinamentos visuais (2026)
   ========================================================================== */

/* Fundo com leve textura/gradiente para profundidade */
body {
  background:
    radial-gradient(1200px 600px at 80% -200px, rgba(224,169,58,0.06), transparent 60%),
    radial-gradient(1000px 500px at -10% 10%, rgba(37,168,90,0.06), transparent 55%),
    var(--bg);
  background-attachment: fixed;
}

/* Header com sombra suave ao rolar (glass mais marcante) */
.site-header { transition: box-shadow .3s ease, background .3s ease; }
.site-header.scrolled { box-shadow: 0 10px 30px rgba(0,0,0,0.35); background: rgba(15,26,46,0.96); }

/* Botões: gradiente + brilho + foco acessível */
.btn { position: relative; letter-spacing: .01em; }
.btn-green { background: linear-gradient(135deg, #2bbd66, var(--green)); }
.btn-green:hover { background: linear-gradient(135deg, #2bbd66, var(--green-dark)); box-shadow: 0 14px 30px var(--green-glow); }
.btn-gold { background: linear-gradient(135deg, #f0bd55, var(--gold)); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Pills com leve brilho */
.pill { backdrop-filter: blur(4px); }

/* Cards: borda em gradiente no hover + glow */
.card { position: relative; background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(180deg, rgba(224,169,58,0.0), rgba(42,58,90,0.6)) border-box;
  border: 1px solid transparent; }
.card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(180deg, rgba(224,169,58,0.55), rgba(37,168,90,0.25)) border-box;
  box-shadow: 0 22px 48px rgba(0,0,0,0.4);
}
.card-icon { box-shadow: 0 8px 20px rgba(224,169,58,0.25); transition: transform .25s ease; }
.card:hover .card-icon { transform: scale(1.08) rotate(-3deg); }

/* Hero: título com leve gradiente no destaque dourado */
.hero h1 .gold {
  background: linear-gradient(120deg, #f3c463, var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Imagens dos blocos com leve realce */
.cta-visual, .feature-visual { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04); }

/* Steps: linha guia conectando os passos (desktop) */
.process-grid { position: relative; }
.step { transition: transform .2s ease, border-color .2s ease; }
.step:hover { transform: translateY(-4px); border-color: rgba(224,169,58,0.4); }

/* Testimonials: cartões com elevação no hover */
.testi { transition: transform .25s ease, box-shadow .25s ease; }
.testi:hover { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(0,0,0,0.28); }

/* Botão flutuante WhatsApp com pulso */
.wa-float { animation: waPulse 2.6s infinite; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,168,90,0.45); }
  70% { box-shadow: 0 0 0 16px rgba(37,168,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,168,90,0); }
}

/* Revelação suave ao entrar na viewport */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float { animation: none; }
}

/* Diferenciais (4 colunas) */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.diff-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: transform .2s ease, border-color .2s ease; }
.diff-card:hover { transform: translateY(-5px); border-color: rgba(224,169,58,0.4); }
.diff-card .card-icon { margin-bottom: 16px; }
.diff-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.diff-card p { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 980px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .diff-grid { grid-template-columns: 1fr; } }

/* Faixa de números */
.stats-band { background: linear-gradient(160deg, #13203a, #0f1a2e); border: 1px solid var(--border); border-radius: 22px; padding: 40px; }
.stats-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-band .num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--gold); }
.stats-band .lbl { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
@media (max-width: 760px) { .stats-band-grid { grid-template-columns: repeat(2, 1fr); } .stats-band { padding: 30px 22px; } }

/* FAQ */
.faq { max-width: 840px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; background: var(--card); overflow: hidden; transition: border-color .2s ease; }
.faq-item[open] { border-color: rgba(224,169,58,0.45); }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; line-height: 1; transition: transform .2s ease; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--muted); font-size: 0.95rem; }
.faq-item .faq-a p { margin-bottom: 12px; }
.faq-item .faq-a p:last-child { margin-bottom: 0; }
.faq-item .faq-a a { color: var(--green); font-weight: 600; }
.faq-item .faq-a a:hover { color: var(--gold); }
.faq-item .faq-a ul { list-style: disc; padding-left: 22px; margin: 8px 0 12px; }
.faq-item .faq-a li { margin-bottom: 6px; }

/* ---------- Alerta / destaque ---------- */
.alert-callout {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(224, 169, 58, 0.1);
  border: 1px solid rgba(224, 169, 58, 0.35);
}
.alert-callout p { margin: 0; color: var(--text); font-size: 0.95rem; line-height: 1.65; }
.alert-callout strong { color: var(--gold); }

/* Links de navegação com sublinhado animado */
.nav-menu > li > a { position: relative; }
.nav-menu > li > a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav-menu > li > a:hover::after, .nav-menu > li > a.active::after { width: 100%; }
@media (max-width: 760px) { .nav-menu > li > a::after { display: none; } }

/* CTAs fortes */
.cta-strong { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-strong .btn { min-width: 220px; justify-content: center; }
.hero-tagline { color: var(--gold) !important; margin-top: -4px; }

@media (max-width: 900px) { .footer-grid--wide { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid--wide { grid-template-columns: 1fr; } }

/* Avaliações Google — cards brancos estilo Google + carrossel */
.google-reviews { margin-top: 4px; }
.google-reviews-wrap { position: relative; padding: 0 48px; }
.google-reviews-viewport { overflow: hidden; }
.google-reviews-track { display: flex; will-change: transform; }
.google-review-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px 14px;
  color: #1f1f1f;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.gr-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.gr-card-user { display: flex; align-items: center; gap: 11px; min-width: 0; }
.gr-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: #fff; font-weight: 700;
  font-size: 0.95rem; font-family: var(--font-body);
}
.gr-avatar--photo { background: #e8eaed; overflow: hidden; padding: 0; }
.gr-avatar--photo img { width: 100%; height: 100%; object-fit: cover; }
.gr-name { font-weight: 600; font-size: 0.92rem; color: #202124; line-height: 1.3; }
.gr-date { font-size: 0.78rem; color: #5f6368; margin-top: 2px; }
.gr-google-g { width: 22px; height: 22px; flex-shrink: 0; }
.gr-rating-row { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.gr-stars { color: #fbbc04; font-size: 1rem; letter-spacing: 1px; line-height: 1; }
.gr-check { display: inline-flex; line-height: 0; }
.gr-text { flex: 1; font-size: 0.86rem; color: #3c4043; line-height: 1.55; margin: 0 0 14px; }
.gr-verified-badge {
  display: inline-flex; align-items: center; gap: 6px; align-self: center;
  background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9;
  border-radius: 20px; padding: 5px 14px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
}
.gr-verified-badge-icon {
  width: 16px; height: 16px; border-radius: 50%; background: #43a047; color: #fff;
  display: grid; place-items: center; font-size: 0.6rem; font-weight: 800;
}
.google-reviews-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green); color: #fff; border: none; cursor: pointer;
  display: grid; place-items: center; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: background .2s ease, opacity .2s ease; z-index: 2;
}
.google-reviews-nav:hover:not(:disabled) { background: var(--green-dark); }
.google-reviews-nav:disabled { opacity: 0.35; cursor: default; }
.google-reviews-nav.prev { left: 0; }
.google-reviews-nav.next { right: 0; }
@media (max-width: 760px) {
  .google-reviews-wrap { padding: 0 40px; }
  .google-reviews-nav { width: 34px; height: 34px; }
  .google-review-card { min-height: 240px; }
}
@media (max-width: 600px) {
  .google-reviews-wrap { padding: 0 36px; }
  .google-reviews-nav.prev { left: -4px; }
  .google-reviews-nav.next { right: -4px; }
}

/* Link perfil Google */
.google-profile-link { color: var(--green); font-weight: 600; }
.google-profile-link:hover { color: var(--gold); }
.google-profile-bar {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 20px;
  background: var(--card); border: 1px solid rgba(224,169,58,0.35); border-radius: var(--radius);
  padding: 18px 24px; margin-bottom: 28px; text-decoration: none; color: var(--text);
  transition: border-color .2s ease, transform .2s ease;
}
.google-profile-bar:hover { border-color: var(--gold); transform: translateY(-2px); }
.google-profile-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.google-profile-text { font-size: 0.95rem; color: var(--muted); }
.google-profile-text strong { color: var(--text); }
.google-profile-action { color: var(--green); font-weight: 600; font-size: 0.9rem; }
.google-cta { text-align: center; margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.google-cta .btn { display: inline-flex; align-items: center; gap: 10px; }

/* Foto cidade / escritório */
.feature-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; min-height: 320px; }
.feature-visual--city { min-height: 360px; overflow: hidden; border-radius: 16px; }
.hero-photo--city img { object-position: center center; }

/* ==========================================================================
   Layout editorial — menos caixas simétricas
   ========================================================================== */

.section-head--left {
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* Funil de conversão — páginas de inventário */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.pain-card {
  background: var(--navy-card, #1d2c49);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
}
.pain-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1;
}
.pain-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #fff;
}
.pain-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.feature-grid--team .feature-visual {
  min-height: 360px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}
.feature-grid--team .feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
#solucao.feature { padding: 72px 0; }
#quem-atende .feature-content { padding-top: 8px; }
.funnel-google { padding-top: 56px; }

/* Artigos do blog */
.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.blog-article-head { max-width: 760px; margin-bottom: 32px; }
.blog-article-head h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin: 12px 0 10px;
}
.blog-article-meta { color: var(--muted); font-size: 0.9rem; }
.blog-article-body {
  max-width: 760px;
  line-height: 1.75;
  color: #d4dceb;
}
.blog-article-body h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: #fff;
}
.blog-article-body p { margin-bottom: 16px; }
.blog-article-body ul {
  margin: 0 0 18px 1.2rem;
  color: var(--muted);
}
.blog-article-body li { margin-bottom: 8px; }
.blog-article-body a { color: var(--gold); }
.blog-article-service { margin-top: 28px; color: var(--muted); }

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; gap: 14px; }
  .pain-card { padding: 18px 16px; }
  .feature-grid--team { gap: 28px; }
  .feature-grid--team .feature-visual,
  .feature-grid--team .feature-visual img { min-height: 260px; }
}

/* Hero aberto */
.hero-box--open {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 28px 0 36px;
}
.hero-box--open::after { display: none; }
.hero-box--open .hero-photo {
  border: none;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  border-radius: 20px 20px 20px 4px;
}
.feature-visual--home {
  border: none;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  border-radius: 20px 4px 20px 20px;
}
.feature-content p { margin-bottom: 16px; line-height: 1.72; }

/* Áreas de atuação — lista editorial */
.cards-grid--services {
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 52px;
}
.cards-grid--services .card {
  background: transparent;
  border: none;
  border-left: 2px solid rgba(224, 169, 58, 0.4);
  border-radius: 0;
  padding: 2px 0 2px 22px;
  box-shadow: none !important;
  transform: none !important;
}
.cards-grid--services .card:hover {
  transform: none;
  background: transparent;
  border-color: transparent;
  border-left-color: var(--gold);
}
.cards-grid--services .card-icon {
  width: auto;
  height: auto;
  background: none;
  box-shadow: none;
  color: var(--gold);
  margin-bottom: 10px;
  border-radius: 0;
}
.cards-grid--services .card-icon svg { width: 22px; height: 22px; }
.cards-grid--services .card:hover .card-icon { transform: none; }
.cards-grid--services .card h3 { font-size: 1.12rem; }
.cards-grid--services .card p { margin-bottom: 12px; }
.cards-grid--services .card-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.cards-grid--services .card-list li {
  font-size: 0.76rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
}
.cards-grid--services .card-list li::before { display: none; }

/* Inventário — duas colunas leves */
.cards-grid--split {
  gap: 40px;
  align-items: start;
}
.cards-grid--split .card {
  background: transparent;
  border: none;
  border-top: 2px solid rgba(37, 168, 90, 0.45);
  border-radius: 0;
  padding: 22px 0 0;
  box-shadow: none !important;
}
.cards-grid--split .card:hover { transform: none; border-color: transparent; border-top-color: var(--green); }
.cards-grid--split .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 14px;
  box-shadow: none;
}

/* Cidades — faixa horizontal compacta */
.cities-row {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px 40px !important;
}
.cities-row .card--local {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 0 0 20px;
}
.cities-row .card--local:hover { transform: none; }
.cities-row .card-local-photo {
  width: 108px;
  height: 78px;
  flex-shrink: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}
.cities-row .card-local-body {
  padding: 0;
}
.cities-row .card-local-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cities-row .card-local-body p { font-size: 0.86rem; margin-bottom: 8px; }

/* Diferenciais — texto com traço lateral */
.diff-grid--open {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 64px;
}
.diff-grid--open .diff-card {
  background: transparent;
  border: none;
  border-left: 3px solid rgba(37, 168, 90, 0.5);
  border-radius: 0;
  padding: 0 0 0 18px;
}
.diff-grid--open .diff-card:hover { transform: none; border-color: transparent; border-left-color: var(--green); }
.diff-grid--open .diff-card .card-icon { display: none; }
.diff-grid--open .diff-card h3 { font-size: 1.05rem; }

/* Processo — fluxo horizontal sem caixas */
.process-grid--flow {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 20px;
  justify-content: space-between;
}
.process-grid--flow .step {
  flex: 1 1 200px;
  max-width: 260px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.process-grid--flow .step::after {
  content: "";
  position: absolute;
  top: 19px;
  left: calc(100% + 4px);
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(224, 169, 58, 0.5), transparent);
}
.process-grid--flow .step:last-child::after { display: none; }
.process-grid--flow .step-num {
  width: 34px;
  height: 34px;
  font-size: 0.95rem;
  border-radius: 50%;
  margin-bottom: 12px;
}
.process-grid--flow .step:hover { transform: none; }

/* Números — faixa simples */
.stats-band--open {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 28px 0;
}
.stats-band--open .num { font-size: 2.1rem; }

/* Casos reais — layout aberto */
.case-study-box--open {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  gap: 48px;
}
.case-study-box--open .case-study-photo {
  border: none;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
  border-radius: 18px 18px 18px 4px;
}
.case-study-box--open .case-print {
  background: transparent;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

/* Artigos — colunas leves */
.cards-grid--posts {
  gap: 32px;
}
.cards-grid--posts .card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
  border-radius: 0;
  padding: 22px 0 0;
  box-shadow: none !important;
}
.cards-grid--posts .card:hover { transform: none; border-top-color: var(--gold); }
.cards-grid--posts .card-icon { display: none; }
.cards-grid--posts .post-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* FAQ — acordeão limpo */
.faq--open .faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  margin-bottom: 0;
}
.faq--open .faq-item[open] { border-bottom-color: rgba(224, 169, 58, 0.35); }
.faq--open .faq-item summary { padding: 18px 0; }

/* CTA final — sem caixa gigante */
.cta-grid--open {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  gap: 44px;
}
.cta-grid--open .cta-visual {
  border-radius: 20px 4px 20px 20px;
  min-height: 320px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

/* Vídeo — menos centralizado em caixa */
#video .video-box { max-width: 400px; margin: 0; }
#video .video-player { border: none; border-radius: 16px 16px 16px 4px; overflow: hidden; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28); }
#video .video-hint { text-align: left; margin-top: 12px; }

/* Custo de adiar + vídeo */
.delay-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px 56px;
  align-items: start;
}
.delay-layout--video {
  grid-template-columns: 1fr minmax(260px, 400px);
  gap: 40px 48px;
  align-items: start;
}
.delay-content { min-width: 0; }
.delay-layout--video .delay-cta {
  margin-top: 28px;
  border-left: none;
  padding-left: 0;
  border-top: 2px solid rgba(224, 169, 58, 0.35);
  padding-top: 24px;
}
.delay-main h2 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  margin: 14px 0 18px;
}
.delay-main p { color: var(--muted); margin-bottom: 14px; line-height: 1.72; }
.delay-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
  padding-left: 0;
  list-style: none;
}
.delay-list li {
  color: var(--muted);
  font-size: 0.96rem;
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.delay-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.delay-note {
  color: var(--text) !important;
  font-weight: 500;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  margin-top: 8px !important;
  padding-top: 18px !important;
}
.delay-cta {
  padding-top: 8px;
  border-left: 2px solid rgba(224, 169, 58, 0.35);
  padding-left: 28px;
}
.delay-cta .pill { margin-bottom: 16px; }
.delay-cta p { color: var(--muted); margin-bottom: 12px; line-height: 1.72; font-size: 0.96rem; }
.delay-cta-lead { color: var(--text) !important; font-size: 1.08rem !important; margin-bottom: 8px !important; }
.delay-cta-lead strong { color: var(--gold); font-weight: 600; }
.delay-cta-sub { color: var(--text) !important; margin-bottom: 14px !important; }
.delay-cta .btn { margin-top: 8px; }
@media (max-width: 900px) {
  .delay-layout,
  .delay-layout--video { grid-template-columns: 1fr; gap: 32px; }
  .delay-cta,
  .delay-layout--video .delay-cta {
    border-left: none;
    border-top: 2px solid rgba(224, 169, 58, 0.35);
    padding-left: 0;
    padding-top: 28px;
  }
  #video .video-box { max-width: 100%; }
}

@media (max-width: 980px) {
  .cards-grid--services { grid-template-columns: 1fr; gap: 28px; }
  .diff-grid--open { grid-template-columns: 1fr; gap: 24px; }
  .process-grid--flow .step::after { display: none; }
  .process-grid--flow .step { max-width: none; flex: 1 1 100%; padding-left: 0; border-left: 2px solid var(--border); padding: 0 0 20px 18px; margin-left: 8px; }
  .cities-row { grid-template-columns: 1fr !important; }
}

@media (max-width: 760px) {
  .cards-grid--services .card-list { flex-direction: column; }
  .cards-grid--services .card-list li { background: transparent; padding: 0; }
  .cities-row .card--local { flex-direction: column; align-items: flex-start; }
  .cities-row .card-local-photo { width: 100%; height: 140px; }
}

/* Áreas de Atuação — home */
.areas-showcase-top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px 48px;
  align-items: end;
  margin-bottom: 40px;
}
.areas-showcase-aside {
  padding: 24px 26px;
  border-radius: 16px;
  border: 1px solid rgba(37, 168, 90, 0.25);
  background: linear-gradient(145deg, rgba(37, 168, 90, 0.08), rgba(29, 44, 73, 0.5));
}
.areas-showcase-aside__lead {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 8px;
}
.areas-showcase-aside p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 18px;
}
.areas-spotlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 40px;
  align-items: stretch;
  padding: 32px 34px;
  margin-bottom: 22px;
  border-radius: 20px;
  border: 1px solid rgba(224, 169, 58, 0.32);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(224, 169, 58, 0.12), transparent 60%),
    linear-gradient(160deg, rgba(29, 44, 73, 0.85), rgba(22, 34, 59, 0.95));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}
.areas-spotlight__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.areas-spotlight__main h3 {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0 0 12px;
}
.areas-spotlight__main p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 52ch;
}
.areas-spotlight__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.areas-spotlight__chip {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.areas-spotlight__chip:hover {
  border-color: var(--gold);
  background: rgba(224, 169, 58, 0.12);
}
.areas-spotlight__cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-left: 4px;
}
.areas-spotlight__cta:hover { text-decoration: underline; }
.areas-spotlight__metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-width: 160px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 32px;
}
.areas-spotlight__metrics li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.areas-spotlight__metrics strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.1;
}
.areas-spotlight__metrics span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}
.areas-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.areas-showcase-card {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 22px 22px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(29, 44, 73, 0.35);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.areas-showcase-card:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 169, 58, 0.45);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}
.areas-showcase-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 10px;
  color: var(--gold);
  background: rgba(224, 169, 58, 0.1);
}
.areas-showcase-card__icon svg { width: 22px; height: 22px; }
.areas-showcase-card h3 {
  font-size: 1.08rem;
  margin: 0 0 8px;
}
.areas-showcase-card p {
  flex: 1;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 14px;
}
.areas-showcase-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}
@media (max-width: 980px) {
  .areas-showcase-top { grid-template-columns: 1fr; align-items: start; }
  .areas-spotlight { grid-template-columns: 1fr; padding: 26px 24px; }
  .areas-spotlight__metrics {
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    padding-left: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 0;
  }
  .areas-spotlight__metrics li { min-width: 100px; }
  .areas-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .areas-showcase-grid { grid-template-columns: 1fr; }
  .areas-spotlight__nav { flex-direction: column; align-items: flex-start; }
  .areas-spotlight__cta { margin-left: 0; margin-top: 4px; }
}/* Centraliza o último card quando ele fica sozinho na última linha */
@media (min-width: 981px) {
  .blog-grid .post:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

/* Mantém o alinhamento normal em tablet e celular */
@media (max-width: 980px) {
  .blog-grid .post:last-child {
    grid-column: auto;
  }
}
