:root {
  --midnight: #071a2f;
  --midnight-2: #0d2643;
  --midnight-3: #15385f;
  --bronze-1: #f2c28a;
  --bronze-2: #c58d57;
  --bronze-3: #8f5c31;
  --offwhite: #f7f3ec;
  --mist: #c8bfb4;
  --card: rgba(9, 26, 47, 0.72);
  --line: rgba(242, 194, 138, 0.25);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(197, 141, 87, 0.12), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(242, 194, 138, 0.10), transparent 18%),
    linear-gradient(180deg, #060f1e 0%, #081c32 50%, #050f1c 100%);
  color: var(--offwhite);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: rgba(247, 243, 236, 0.80); line-height: 1.8; margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 100px 0; position: relative; }
.section-title {
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0.01em;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--bronze-1); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze-1));
}
.subtitle { font-size: 1.05rem; max-width: 680px; color: rgba(247,243,236,0.72); }

/* ── TOPBAR ── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(24px) saturate(1.4);
  background: rgba(5, 14, 28, 0.80);
  border-bottom: 1px solid rgba(242, 194, 138, 0.10);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo-img {
  width: 48px; height: 48px;
  object-fit: cover; object-position: center 22%;
  border-radius: 10px;
  border: 1px solid rgba(242,194,138,0.28);
}
.brand-copy strong {
  display: block; font-size: 0.96rem; letter-spacing: 0.10em; font-weight: 700;
  color: var(--offwhite);
}
.brand-copy span {
  display: block; font-size: 0.72rem; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--bronze-1);
}
.nav-links {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
}
.nav-links a {
  font-size: 0.88rem; color: rgba(247, 243, 236, 0.75); position: relative;
  letter-spacing: 0.04em;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  transform: scaleX(0); transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--bronze-1), transparent);
  transition: transform 0.35s ease;
}
.nav-links a:hover { color: var(--offwhite); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-family: inherit; font-size: 0.88rem;
  letter-spacing: 0.04em; cursor: pointer;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease, opacity 0.26s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28); }
.btn-primary {
  color: #07121f;
  background: linear-gradient(135deg, var(--bronze-1) 0%, var(--bronze-2) 60%, #f0d5a8 100%);
}
.btn-secondary {
  background: transparent;
  color: var(--offwhite);
  border-color: rgba(242, 194, 138, 0.30);
}
.btn-secondary:hover { border-color: rgba(242, 194, 138, 0.65); }
.btn-ghost {
  background: rgba(247, 243, 236, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--offwhite);
}

/* ── HERO – limpo e direto ── */
.hero {
  padding: 0;
  min-height: calc(100vh - 80px);
  display: flex; align-items: stretch;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  align-items: stretch;
}

/* LADO ESQUERDO – texto */
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 60px 72px 0;
}
.hero-greeting {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.28em;
  color: var(--bronze-1); margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero-greeting::before {
  content: ""; width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--bronze-1), transparent);
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 6vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--offwhite);
}
.hero-name .highlight {
  color: transparent;
  background: linear-gradient(135deg, var(--bronze-1), var(--bronze-2) 50%, #f0d9b5);
  -webkit-background-clip: text; background-clip: text;
}
.hero-role {
  font-size: 1.05rem; color: var(--mist); margin: 18px 0 36px;
  letter-spacing: 0.03em; line-height: 1.6;
}
.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--bronze-1), transparent);
  margin: 0 0 36px;
}

/* REDES SOCIAIS – hero */
.social-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--mist); margin-bottom: 16px;
}
.social-icons {
  display: flex; gap: 14px; margin-bottom: 44px;
}
.social-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(242, 194, 138, 0.08);
  border: 1px solid rgba(242, 194, 138, 0.22);
  transition: transform 0.26s ease, background 0.26s ease, border-color 0.26s ease;
}
.social-icon:hover {
  transform: translateY(-3px);
  background: rgba(242, 194, 138, 0.18);
  border-color: rgba(242, 194, 138, 0.60);
}
.social-icon svg { width: 22px; height: 22px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* LADO DIREITO – foto */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-photo {
  width: 100%; height: 100%; min-height: 640px;
  object-fit: cover;
  object-position: top center;
}
.hero-right::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(6, 15, 30, 0.55) 0%, transparent 50%),
              linear-gradient(180deg, transparent 60%, rgba(6, 15, 30, 0.3) 100%);
}
.hero-stat-badge {
  position: absolute; bottom: 36px; left: 36px; z-index: 2;
  background: rgba(6, 15, 30, 0.90);
  border: 1px solid rgba(242,194,138,0.22);
  border-radius: 20px; padding: 20px 24px;
  backdrop-filter: blur(12px);
}
.hero-stat-badge .stats-row {
  display: flex; gap: 28px;
}
.stat-item strong {
  display: block; font-size: 1.8rem; font-family: 'Cormorant Garamond', serif;
  color: var(--bronze-1); line-height: 1;
}
.stat-item span {
  display: block; font-size: 0.78rem; color: var(--mist); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ── SOBRE ── */
.panel-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: stretch; }
.glass {
  background: linear-gradient(160deg, rgba(12, 30, 54, 0.90), rgba(7, 18, 34, 0.85));
  border: 1px solid rgba(242, 194, 138, 0.10); border-radius: var(--radius-xl); box-shadow: var(--shadow);
}
.about-visual { overflow: hidden; min-height: 640px; }
.about-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-copy { padding: 48px; }
.about-copy h2 { margin-top: 8px; }
.signature-line {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 28px;
}
.signature-item {
  padding: 18px; border-radius: 16px;
  background: rgba(242, 194, 138, 0.04); border: 1px solid rgba(242, 194, 138, 0.10);
}
.signature-item strong { display: block; color: var(--bronze-1); margin-bottom: 6px; font-size: 0.9rem; }
.signature-item p { font-size: 0.88rem; margin: 0; }

/* ── ATUAÇÃO ── */
.cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card {
  position: relative; overflow: hidden; border-radius: 24px; padding: 32px;
  background: linear-gradient(160deg, rgba(12, 31, 55, 0.92), rgba(7, 20, 36, 0.88));
  border: 1px solid rgba(242, 194, 138, 0.10); box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(242, 194, 138, 0.28); }
.service-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(140deg, rgba(242, 194, 138, 0.07), transparent 40%);
}
.service-icon {
  width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(242, 194, 138, 0.18), rgba(197, 141, 87, 0.06));
  border: 1px solid rgba(242,194,138,0.14);
}
.service-icon svg { width: 32px; height: 32px; }
.service-card h3 { margin: 0 0 12px; font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; line-height: 1.1; }
.service-card p { font-size: 0.95rem; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.blog-card {
  position: relative; overflow: hidden; border-radius: 24px; padding: 0;
  background: linear-gradient(160deg, rgba(12, 31, 55, 0.92), rgba(7, 20, 36, 0.88));
  border: 1px solid rgba(242, 194, 138, 0.10); box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(242, 194, 138, 0.28); }
.blog-cover {
  height: 220px; position: relative; overflow: hidden; flex: 0 0 auto;
}
.blog-cover-art {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.blog-cover-art svg { width: 80px; height: 80px; opacity: 0.7; }
.blog-cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 12, 22, 0.92));
}
.blog-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.pill {
  padding: 6px 12px; border-radius: 999px; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--bronze-1); background: rgba(242, 194, 138, 0.07); border: 1px solid rgba(242, 194, 138, 0.16);
}
.blog-body h3 { margin: 0 0 10px; font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; line-height: 1.15; }
.blog-body p { font-size: 0.92rem; flex: 1; }
.text-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700;
  font-size: 0.88rem; color: var(--bronze-1); margin-top: 16px; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.text-link svg { transition: transform 0.3s ease; }
.text-link:hover svg { transform: translateX(4px); }

/* ── REDES SOCIAIS section ── */
.social-section-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px;
}
.social-link-card {
  position: relative; overflow: hidden; border-radius: 24px; padding: 32px 36px;
  background: linear-gradient(160deg, rgba(12, 31, 55, 0.92), rgba(7, 20, 36, 0.88));
  border: 1px solid rgba(242, 194, 138, 0.10); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.social-link-card:hover { transform: translateY(-4px); border-color: rgba(242, 194, 138, 0.30); }
.social-link-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(140deg, rgba(242, 194, 138, 0.05), transparent 40%);
}
.social-link-icon {
  width: 64px; height: 64px; flex: 0 0 64px;
  border-radius: 18px; display: grid; place-items: center;
  background: rgba(242, 194, 138, 0.08); border: 1px solid rgba(242,194,138,0.16);
}
.social-link-icon svg { width: 34px; height: 34px; }
.social-link-info { flex: 1; }
.social-link-info strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.social-link-info span { color: var(--mist); font-size: 0.88rem; }
.social-arrow {
  color: var(--bronze-1); font-size: 1.4rem; opacity: 0.6;
}

/* ── AVALIAÇÕES ── */
.reviews-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; align-items: start; }
.review-score-card {
  padding: 42px 38px; text-align: center; border-radius: 24px;
  background: linear-gradient(160deg, rgba(12, 31, 55, 0.92), rgba(7, 20, 36, 0.88));
  border: 1px solid rgba(242, 194, 138, 0.14); box-shadow: var(--shadow);
}
.big-score { font-size: 6rem; font-weight: 800; color: var(--bronze-1); line-height: 1; display: block; }
.score-stars { display: flex; gap: 6px; justify-content: center; margin: 12px 0 8px; }
.score-stars svg { width: 24px; height: 24px; }
.score-meta { color: var(--mist); font-size: 0.85rem; }
.score-link { margin-top: 28px; }
.reviews-cards { display: grid; gap: 14px; }
.review-item {
  padding: 22px 26px; border-radius: 20px;
  background: linear-gradient(160deg, rgba(12, 31, 55, 0.92), rgba(7, 20, 36, 0.88));
  border: 1px solid rgba(242, 194, 138, 0.10); box-shadow: var(--shadow);
}
.review-item-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px;
}
.reviewer-name { font-weight: 700; font-size: 0.98rem; }
.review-mini-stars { display: flex; gap: 3px; }
.review-mini-stars svg { width: 14px; height: 14px; }
.review-item p { font-size: 0.94rem; font-style: italic; margin: 0; }
.review-source { font-size: 0.78rem; color: var(--mist); margin-top: 8px; }

/* ── CONTATO ── */
.contact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.contact-card {
  position: relative; overflow: hidden; border-radius: 22px; padding: 28px;
  background: linear-gradient(160deg, rgba(12, 31, 55, 0.92), rgba(7, 20, 36, 0.88));
  border: 1px solid rgba(242, 194, 138, 0.10); box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.contact-card:hover { transform: translateY(-3px); }
.contact-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(140deg, rgba(242, 194, 138, 0.06), transparent 40%);
}
.contact-icon {
  width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(242, 194, 138, 0.16), rgba(197, 141, 87, 0.05));
  border: 1px solid rgba(242,194,138,0.14);
}
.contact-icon svg { width: 30px; height: 30px; }
.contact-card h3 { margin: 0 0 8px; font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; }
.contact-card p { font-size: 0.9rem; color: var(--mist); margin: 0 0 20px; }
.contact-card a.inline { color: var(--mist); }
.contact-card a.inline:hover { color: var(--bronze-1); }

.map-card {
  margin-top: 20px; overflow: hidden; border-radius: 24px;
  border: 1px solid rgba(242, 194, 138, 0.12); box-shadow: var(--shadow);
}
.map-card iframe { width: 100%; height: 460px; border: 0; display: block; }

.contact-strip {
  margin-top: 20px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px;
}
.strip-item {
  padding: 16px; border-radius: 16px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(242, 194, 138, 0.09);
  display: flex; gap: 12px; align-items: center;
}
.strip-item svg { width: 26px; height: 26px; flex: 0 0 auto; }
.strip-item strong { display: block; font-size: 0.82rem; color: var(--bronze-1); }
.strip-item span { display: block; color: var(--mist); font-size: 0.80rem; line-height: 1.4; }

/* ── FOOTER ── */
.footer {
  padding: 50px 0; border-top: 1px solid rgba(242, 194, 138, 0.08);
  background: rgba(3, 9, 18, 0.72);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 32px; align-items: start;
}
.footer-brand { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.footer-brand-logo {
  width: 48px; height: 48px; object-fit: cover; object-position: center 22%;
  border-radius: 10px; border: 1px solid rgba(242,194,138,0.22);
}
.footer h4 { margin: 0 0 14px; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.80rem; color: var(--bronze-1); }
.footer p, .footer a { color: rgba(247, 243, 236, 0.65); font-size: 0.92rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--bronze-1); }
.copyright { margin-top: 32px; font-size: 0.84rem; color: rgba(247, 243, 236, 0.42); border-top: 1px solid rgba(242,194,138,0.07); padding-top: 24px; }

/* ── FLOAT BUTTONS ── */
.float-stack {
  position: fixed; right: 22px; bottom: 22px; z-index: 80; display: grid; gap: 12px;
}
.float-btn {
  width: 66px; height: 66px; border-radius: 22px; border: 1px solid rgba(242, 194, 138, 0.18);
  display: grid; place-items: center; cursor: pointer; box-shadow: 0 20px 40px rgba(0,0,0,0.36);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.float-btn:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 28px 50px rgba(0,0,0,0.42); }
.float-btn.assistant {
  background: linear-gradient(160deg, #10365d, #071a2f);
}
.float-btn.whatsapp {
  background: linear-gradient(160deg, #143927, #0a1f14);
}

/* ── CHAT WIDGET ── */
.chat-widget {
  position: fixed; right: 22px; bottom: 170px; width: min(380px, calc(100vw - 32px)); z-index: 79;
  border-radius: 28px; overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(10, 28, 50, 0.99), rgba(6, 18, 30, 0.99));
  border: 1px solid rgba(242, 194, 138, 0.14);
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.97);
  transition: all 0.28s ease;
}
.chat-widget.is-open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-header {
  padding: 20px 24px; border-bottom: 1px solid rgba(242, 194, 138, 0.10);
  display: flex; align-items: center; justify-content: space-between;
}
.chat-header strong { display: block; font-size: 0.98rem; }
.chat-header span { color: var(--mist); font-size: 0.84rem; }
.chat-body { padding: 20px 24px 10px; }
.chat-bubble {
  padding: 14px 16px; border-radius: 18px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(242, 194, 138, 0.08);
  margin-bottom: 10px; color: rgba(247, 243, 236, 0.84); font-size: 0.93rem; line-height: 1.65;
}
.quick-actions { display: grid; gap: 9px; padding: 10px 24px 22px; }
.quick-btn {
  width: 100%; text-align: left; padding: 13px 14px; border-radius: 16px;
  border: 1px solid rgba(242, 194, 138, 0.10);
  background: rgba(255,255,255,0.02); color: var(--offwhite); font: inherit; cursor: pointer; font-size: 0.88rem;
}
.quick-btn:hover { border-color: rgba(242, 194, 138, 0.32); background: rgba(242,194,138,0.05); }

/* ── ARTIGOS (BLOG PAGES) ── */
.article-hero { padding: 72px 0 40px; }
.article-shell { display: grid; grid-template-columns: 0.74fr 0.26fr; gap: 22px; align-items: start; }
.article-main, .article-side {
  padding: 42px; border-radius: 28px;
  background: linear-gradient(160deg, rgba(10, 28, 50, 0.94), rgba(6, 18, 30, 0.92));
  border: 1px solid rgba(242, 194, 138, 0.12); box-shadow: var(--shadow);
}
.article-main h1 { margin: 10px 0 20px; font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 5vw, 4.6rem); line-height: 0.96; }
.article-main h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; margin: 40px 0 14px; color: var(--offwhite); }
.article-main ul { padding-left: 20px; color: rgba(247,243,236,0.82); line-height: 1.8; }
.article-main li { margin-bottom: 8px; }
.article-cover { margin: 28px 0; border-radius: 22px; overflow: hidden; }
.article-cover-art {
  width: 100%; height: 320px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 22px;
}
.side-list { display: grid; gap: 14px; }
.side-item { padding: 16px 18px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(242,194,138,0.09); }
.side-item strong { display: block; color: var(--bronze-1); margin-bottom: 6px; font-size: 0.90rem; }
.side-item p { margin: 0; font-size: 0.88rem; }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { min-height: 480px; }
  .hero-left { padding: 56px 0; }
  .panel-grid, .reviews-layout, .article-shell, .footer-grid { grid-template-columns: 1fr; }
  .contact-grid, .cards-3, .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .social-section-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { flex-wrap: wrap; justify-content: center; height: auto; padding: 14px 0; gap: 14px; }
  .nav-links { width: 100%; gap: 16px; font-size: 0.85rem; }
  .hero-left { padding: 48px 0 36px; }
  .hero-name { font-size: clamp(3rem, 12vw, 5rem); }
  .about-copy, .article-main, .article-side { padding: 24px; }
  .signature-line, .contact-grid, .cards-3, .blog-grid, .contact-strip { grid-template-columns: 1fr; }
  .float-stack { right: 14px; bottom: 14px; }
  .chat-widget { right: 12px; bottom: 162px; }
  .section { padding: 72px 0; }
  .hero-stat-badge { left: 16px; bottom: 16px; }
}

/* ── OVERRIDES ── */
/* Hero left background = midnight blue, no brown */
.hero-left {
  background: #060f1e;
}
.hero {
  background: #060f1e;
}

/* Mobile nav compacto */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav { justify-content: flex-start; }
}

/* Brand: show only TT logo image + text, no svg */
.brand-logo-img { display: block; }

/* Hero section force midnight blue everywhere */
.hero, .hero-left, body .hero { 
  background: #060f1e !important; 
}
.hero-left { 
  background: #060f1e !important;
  padding: 56px 40px 56px max(20px, calc((100vw - 1200px)/2 + 20px));
}

/* Footer logo = same as header */
.footer-brand-logo { display: block; }

/* Mobile header: only logo + name, no nav, no buttons */
@media (max-width: 900px) {
  .nav { height: auto; padding: 16px 0; justify-content: flex-start; }
  .hero-left { padding: 48px 20px 40px; }
  .hero-name { font-size: clamp(2.8rem, 11vw, 4.5rem); }
}

/* Garantir que Advocacia Criminal aparece sempre */
.brand-copy span { display: block !important; visibility: visible !important; opacity: 1 !important; }

/* Hero name mobile - caber na tela inteira */
@media (max-width: 900px) {
  .hero-name { font-size: clamp(2.2rem, 9vw, 3.8rem) !important; }
}

/* Logo transparente - sem borda nem fundo */
.brand-logo-img, .footer-brand-logo {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  width: 52px !important;
  height: 52px !important;
  object-fit: contain !important;
}

/* 1. Cabeçalho menor */
.topbar .nav { height: 64px; }
.brand-logo-img, .footer-brand-logo { width: 38px !important; height: 38px !important; }
.brand-copy strong { font-size: 0.82rem !important; letter-spacing: 0.08em; }
.brand-copy span { font-size: 0.64rem !important; letter-spacing: 0.16em; }
@media (max-width: 900px) {
  .topbar .nav { height: auto; padding: 10px 0; }
}

/* ── PADRONIZAÇÃO DE TÍTULOS COM INTERROGAÇÃO ── */
/* Garante que h1, h2, h3 com ? tenham alinhamento e tipografia uniformes */
h1, h2, h3, .section-title, .article-main h1, .article-main h2 {
  vertical-align: baseline;
  hanging-punctuation: none;
}

/* Padronização explícita do caractere ? nos títulos */
h1 ?, h2 ?, h3 ? { /* seletores de texto não funcionam em CSS — ver abaixo */ }

/* Fix para ponto final no hero: garante baseline alinhado */
.hero-role {
  vertical-align: baseline;
  line-height: 1.65;
}
.hero-role * {
  vertical-align: baseline;
  line-height: inherit;
}

/* Seção de avaliações: garante que score-card como <a> se comporte igual ao <div> */
a.review-score-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
a.review-score-card:hover {
  opacity: 0.92;
}
a.review-score-card:hover .btn {
  background: var(--gold-mid, #d4a96a);
}

/* Garantir clicabilidade em toda a seção de avaliações */
#score-card, #reviews-cards, #reviews-layout {
  position: relative;
  z-index: 1;
}

/* ── LISTA DE SERVIÇOS NOS CARDS ── */
.service-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted, rgba(255,255,255,0.78));
}
.service-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #f2c28a;
  font-size: 1.3rem;
  line-height: 1.2;
}

/* Texto introdutório sem bullet nos cards de serviço */
.service-intro {
  font-size: 0.92rem;
  color: rgba(242,194,138,0.85);
  margin: 8px 0 6px 0;
  font-style: italic;
}
