/* ============================================================
   ANGELO SANTOS ADVOGADOS — Institutional Site
   Dark navy + gold + green · editorial-modern
   ============================================================ */

:root {
  --bg:           #F1ECE2;
  --bg-2:         #E9E3D5;
  --surface:      #FBF8F1;
  --surface-2:    #F4EFE4;
  --surface-3:    #EEE7D8;
  --ink-section:  #14171C;
  --border:       #D9D1BE;
  --border-2:     #BBB2A0;
  --border-gold:  rgba(168,130,28,0.40);

  --text:         #14171C;
  --text-soft:    #3A3D44;
  --text-mute:    #6A6C73;
  --text-faint:   #9A9B9F;

  /* light tones for use on the dark ink sections */
  --on-ink:       #D8D2C4;
  --on-ink-soft:  #AAA496;
  --on-ink-faint: #7C776B;

  --gold:         #A8821C;
  --gold-2:       #C9A23A;
  --gold-soft:    rgba(168,130,28,0.12);
  --gold-glow:    rgba(168,130,28,0.28);

  --green:        #1E8A4A;
  --green-2:      #176E3B;
  --whats:        #1E8A4A;
  --whats-2:      #176E3B;

  --red:          #B22931;

  --display: "Libre Caslon Display", "Libre Caslon Text", Georgia, serif;
  --serif:   "Source Serif 4", Georgia, serif;
  --sans:    "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;

  --container: 1240px;
  --container-narrow: 980px;
  --radius: 14px;
  --radius-sm: 8px;

  --shadow-lift: 0 22px 50px -28px rgba(40,30,10,0.40), 0 4px 14px -10px rgba(40,30,10,0.20);
  --shadow-glow: 0 0 0 1px rgba(168,130,28,0.18), 0 22px 48px -18px rgba(168,130,28,0.18);

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Global background ambience: warm paper with subtle grain */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 85% -10%, var(--gold-soft), transparent 60%),
    linear-gradient(180deg, #F3EEE4 0%, #EEE8DB 100%);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background-image:
    radial-gradient(rgba(60,40,10,0.028) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.6;
  pointer-events: none;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.005em;
  line-height: 1.05;
  margin: 14px 0 16px;
  color: var(--text);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 640px;
}

/* ============================================================
   TOP STRIP + NAV
   ============================================================ */
.top-strip {
  background: var(--ink-section);
  border-bottom: 1px solid #23262d;
  font-size: 12.5px;
  color: var(--on-ink-soft);
}
.top-strip .inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 28px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 18px;
}
.top-strip .items { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.top-strip .items span { display: inline-flex; gap: 6px; align-items: center; }
.top-strip .items svg { width: 12px; height: 12px; opacity: 0.7; }
.top-strip .oab { color: var(--gold); letter-spacing: 0.06em; font-weight: 500; }

.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(241,236,226,0.82);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(241,236,226,0.95);
  border-bottom-color: var(--border-2);
  box-shadow: 0 1px 0 var(--border-2), 0 10px 30px -20px rgba(40,30,10,0.3);
}
.nav .inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 28px;
  gap: 24px;
}
.nav .brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav .brand img {
  height: 44px; width: auto;
  filter: brightness(0);
  opacity: 0.92;
  transition: opacity 0.3s var(--ease);
}
.nav .brand:hover img { opacity: 1; }
.nav .brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav .brand-text .name {
  font-family: var(--display);
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.005em;
}
.nav .brand-text .sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 4px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .blog-link { color: var(--gold); }
.nav-links .blog-link::after { background: var(--gold); transform: scaleX(0.5); }

.nav-cta {
  display: inline-flex; gap: 9px; align-items: center;
  padding: 12px 20px;
  background: var(--whats);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 6px 18px -6px rgba(37,211,102,0.55);
}
.nav-cta:hover {
  background: var(--whats-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(37,211,102,0.65);
}
.nav-cta svg { width: 16px; height: 16px; }

.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border-2);
  align-items: center; justify-content: center;
  background: var(--surface);
}
.nav-burger svg { width: 20px; height: 20px; color: var(--text); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0;
  background: rgba(241,236,226,0.98);
  backdrop-filter: blur(16px);
  z-index: 100;
  display: flex; flex-direction: column;
  padding: 28px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-out);
  visibility: hidden;
}
.mobile-drawer.open { transform: translateY(0); visibility: visible; }
.mobile-drawer .close {
  align-self: flex-end;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
}
.mobile-drawer .close svg { width: 22px; height: 22px; }
.mobile-drawer ul { list-style: none; padding: 0; margin: 40px 0 0; }
.mobile-drawer li { border-bottom: 1px solid var(--border); }
.mobile-drawer a {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  padding: 18px 0;
  color: var(--text);
}
.mobile-drawer .blog { color: var(--gold); }
.mobile-drawer .drawer-cta {
  margin-top: 36px;
  display: inline-flex; gap: 10px; align-items: center;
  padding: 16px 26px;
  background: var(--whats);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  align-self: flex-start;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow { animation: fadeUp 0.8s 0.1s var(--ease-out) both; }
.hero-copy h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 18px 0 22px;
  text-wrap: balance;
  animation: fadeUp 0.9s 0.2s var(--ease-out) both;
}
.hero-copy h1 .accent {
  font-style: italic;
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero-copy h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 6px;
  background: var(--gold);
  opacity: 0.18;
  z-index: -1;
}
.hero-copy .lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 560px;
  animation: fadeUp 1s 0.35s var(--ease-out) both;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  animation: fadeUp 1.05s 0.45s var(--ease-out) both;
}
.hero-bullets li {
  display: flex; gap: 10px; align-items: center;
  font-size: 14.5px;
  color: var(--text-soft);
}
.hero-bullets .check {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--gold-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-bullets .check svg { width: 12px; height: 12px; color: var(--gold); }

.hero-ctas {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  animation: fadeUp 1.1s 0.55s var(--ease-out) both;
}
.btn {
  display: inline-flex; gap: 10px; align-items: center;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--whats);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5);
}
.btn-primary:hover {
  background: var(--whats-2);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(37,211,102,0.65);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}
.btn-gold {
  background: var(--gold);
  color: #1a1208;
}
.btn-gold:hover {
  background: #e2b465;
  transform: translateY(-2px);
}

/* Hero photo */
.hero-photo {
  position: relative;
  justify-self: end;
  width: 100%; max-width: 460px;
  animation: scaleIn 1.2s 0.3s var(--ease-out) both;
}
.hero-photo .frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  background: #E4DCCB;
  box-shadow: var(--shadow-lift), 0 0 0 1px var(--border-2);
}
.hero-photo .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.7s var(--ease-out);
}
.hero-photo:hover .frame img { transform: scale(1.04); }
/* Gold corner accents */
.hero-photo .corner {
  position: absolute;
  width: 36px; height: 36px;
  border: 2px solid var(--gold);
  pointer-events: none;
}
.hero-photo .corner.tl { top: -10px; left: -10px; border-right: 0; border-bottom: 0; }
.hero-photo .corner.br { bottom: -10px; right: -10px; border-left: 0; border-top: 0; }
/* Floating credentials chip */
.hero-chip {
  position: absolute;
  bottom: -24px; left: -28px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lift);
  animation: floatChip 4s ease-in-out infinite;
}
.hero-chip .dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(30,179,96,0.2);
  animation: pulseDot 2s ease-in-out infinite;
}
.hero-chip .label { font-size: 11px; color: var(--text-mute); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-chip .value { font-size: 15px; color: var(--text); font-weight: 600; margin-top: 1px; }
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30,179,96,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(30,179,96,0); }
}
.hero-badge {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  background: var(--gold);
  color: #1a1208;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 9px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.55);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 38px 0;
}
.stats .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -20px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 50px;
  background: var(--border);
}
.stat .num {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}
.stat .num small {
  font-size: 0.55em;
  color: var(--gold-2);
  margin-left: 2px;
}
.stat .label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   AREAS DE ATUACAO
   ============================================================ */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow { justify-content: center; }
.section-header .eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.area-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.area-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.area-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--surface-2);
}
.area-card:hover::before { transform: scaleX(1); }
.area-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-soft);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background 0.3s var(--ease);
}
.area-card:hover .icon { background: rgba(212,166,87,0.22); }
.area-card .icon svg { width: 22px; height: 22px; color: var(--gold); }
.area-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 21px;
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: 0.005em;
}
.area-card p {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.55;
  margin: 0 0 18px;
}
.area-card .more {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; gap: 6px; align-items: center;
  transition: gap 0.25s var(--ease);
}
.area-card:hover .more { gap: 10px; }
.area-card .more svg { width: 12px; height: 12px; }

/* ============================================================
   SOBRE / TRAJECTORY
   ============================================================ */
.about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.about .grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  background: #E4DCCB;
  box-shadow: var(--shadow-lift);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 16%;
}
.about-photo .overlay {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  background: rgba(251,248,241,0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
}
.about-photo .overlay .quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.4;
}
.about-photo .overlay .who {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}

.about-copy h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 16px 0 22px;
}
.about-copy h2 em { font-style: italic; color: var(--gold); }
.about-copy p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 16px;
}
.about-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-features li {
  display: flex; gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.about-features .ico {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gold-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.about-features .ico svg { width: 16px; height: 16px; color: var(--gold); }
.about-features strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.about-features span { font-size: 13px; color: var(--text-mute); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews .review-summary {
  text-align: center;
  margin-bottom: 36px;
  display: flex; align-items: center; gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.review-summary .score {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  font-weight: 400;
}
.review-summary .stars-row { display: flex; gap: 2px; margin: 6px 0 4px; }
.review-summary .stars-row svg { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }
.review-summary .meta { font-size: 13px; color: var(--text-mute); letter-spacing: 0.04em; text-transform: uppercase; }
.review-summary .google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  font-size: 13px;
}
.google-badge .g-logo {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  color: #4285F4;
  font-family: Arial;
}

.review-slider {
  position: relative;
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 10px;
}
.review-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 16px 4px;
  -webkit-overflow-scrolling: touch;
}
.review-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.35s var(--ease-out);
}
.review-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 15px; }
.review-date { font-size: 12px; color: var(--text-mute); margin-top: 2px; }
.review-g {
  margin-left: auto;
  width: 24px; height: 24px;
  border-radius: 999px;
  background: #fff;
  display: grid; place-items: center;
  font-family: Arial;
  font-weight: 700;
  color: #4285F4;
  font-size: 14px;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-stars svg { width: 14px; height: 14px; color: var(--gold); fill: var(--gold); }
.review-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-soft);
  font-family: var(--serif);
  position: relative;
  padding-left: 14px;
}
.review-text::before {
  content: "“";
  position: absolute;
  left: -6px; top: -20px;
  font-family: var(--display);
  font-size: 64px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.review-arrows {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 28px;
}
.review-arrows button {
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  background: var(--surface);
  display: grid; place-items: center;
  transition: all 0.25s var(--ease);
}
.review-arrows button:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold);
}
.review-arrows svg { width: 18px; height: 18px; }

/* ============================================================
   LOCATION + MAPS
   ============================================================ */
.location { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.location .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-2);
  background: var(--surface-2);
  min-height: 460px;
  box-shadow: var(--shadow-lift);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 460px; border: 0; }
.address-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.address-card .pin {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gold-soft);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.address-card .pin svg { width: 26px; height: 26px; color: var(--gold); }
.address-card h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 16px;
}
.address-rows { margin: 0 0 22px; padding: 0; list-style: none; }
.address-rows li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 12px; align-items: flex-start;
}
.address-rows li:last-child { border-bottom: 0; }
.address-rows svg { width: 16px; height: 16px; color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.address-rows .key { font-size: 12px; color: var(--text-mute); letter-spacing: 0.05em; text-transform: uppercase; }
.address-rows .val { font-size: 15px; color: var(--text); margin-top: 2px; }
.address-card .btn-gold { align-self: flex-start; margin-top: 8px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s var(--ease);
}
.faq-item.open { border-bottom-color: var(--border-gold); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.005em;
  line-height: 1.3;
  transition: color 0.25s var(--ease);
}
.faq-item:hover .faq-q { color: var(--gold); }
.faq-toggle {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  display: grid; place-items: center;
  position: relative;
  transition: all 0.3s var(--ease);
}
.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.faq-toggle::before { width: 14px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 14px; }
.faq-item.open .faq-toggle {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1208;
}
.faq-item.open .faq-toggle::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a .inner {
  padding: 0 0 26px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 720px;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-preview { position: relative; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.post-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  background: var(--surface-2);
}
.post-card .cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 10px;
  background: var(--gold-soft);
  border-radius: 4px;
  align-self: flex-start;
}
.post-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin: 16px 0 12px;
  color: var(--text);
  text-wrap: balance;
}
.post-card p {
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-mute);
  margin: 0 0 22px;
  flex: 1;
}
.post-card .meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--text-faint);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.post-card .meta .read {
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex; gap: 6px; align-items: center;
}
.post-card .meta svg { width: 11px; height: 11px; }
.blog-cta { text-align: center; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 80px 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(201,162,58,0.22), transparent 60%),
    var(--ink-section);
  border-top: 1px solid var(--gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-band h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin: 16px auto 16px;
  max-width: 780px;
  text-wrap: balance;
  color: #F3EEE4;
}
.cta-band h2 em { font-style: italic; color: var(--gold-2); }
.cta-band p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--on-ink);
  max-width: 600px;
  margin: 0 auto 32px;
}
.cta-band .row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.cta-band .btn-ghost {
  color: #F3EEE4;
  border-color: rgba(255,255,255,0.22);
}
.cta-band .btn-ghost:hover {
  color: var(--gold-2);
  border-color: var(--gold-2);
  background: rgba(201,162,58,0.10);
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--ink-section);
  border-top: 1px solid var(--gold);
  padding: 70px 0 26px;
  color: var(--on-ink-soft);
}
.foot .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid #2a2d34;
}
.foot .brand-block img { height: 64px; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 22px; }
.foot .brand-block p {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 320px;
}
.foot .brand-block .oab {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
}
.foot h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 11px; }
.foot li a {
  font-size: 14px;
  color: var(--on-ink-soft);
  transition: color 0.2s var(--ease);
}
.foot li a:hover { color: var(--gold-2); }
.foot .contact-row { display: flex; gap: 10px; align-items: flex-start; }
.foot .contact-row svg { width: 14px; height: 14px; color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.foot .contact-row .v { font-size: 14px; color: var(--on-ink); line-height: 1.5; }
.foot .bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--on-ink-faint);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.fab-whats {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 80;
  width: 60px; height: 60px;
  border-radius: 999px;
  background: var(--whats);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -6px rgba(30,138,74,0.55);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fab-whats::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 999px;
  border: 2px solid var(--whats);
  opacity: 0.5;
  animation: ringPulse 2.4s ease-out infinite;
}
.fab-whats:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px -6px rgba(30,138,74,0.7);
}
.fab-whats svg { width: 28px; height: 28px; color: #fff; }
@keyframes ringPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal[data-delay="400"] { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-copy .eyebrow, .hero-copy h1, .hero-copy .lede,
  .hero-bullets, .hero-ctas, .hero-photo {
    opacity: 1 !important; transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE — Tablet / Mobile
   ============================================================ */

/* --- ≤ 1024px (tablet) --- */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid .area-card:nth-child(4),
  .areas-grid .area-card:nth-child(5) { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .post-card:last-child { grid-column: span 2; }
  .review-card { flex: 0 0 calc(50% - 10px); }
  .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .stat + .stat::before { display: none; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .container, .container-narrow { padding: 0 22px; }
  .top-strip .inner { padding: 9px 22px; }
  .nav .inner { padding: 14px 22px; }
}

/* --- ≤ 860px (smartphone grande / tablet em retrato) --- */
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; gap: 60px; }
  .hero-photo { max-width: 380px; justify-self: center; }
  .about .grid { grid-template-columns: 1fr; gap: 50px; }
  .about-photo { max-width: 460px; margin: 0 auto; }
  .location .grid { grid-template-columns: 1fr; gap: 24px; }
  .top-strip .items { gap: 14px; }
  .top-strip .items span:not(.oab) { display: none; }
  .map-frame, .map-frame iframe { min-height: 360px; }
}

/* --- ≤ 640px (smartphone) --- */
@media (max-width: 640px) {
  /* Layout base */
  .container, .container-narrow { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(26px, 6.4vw, 36px); margin: 10px 0 14px; }
  .section-lede { font-size: 16px; line-height: 1.55; }
  .eyebrow { font-size: 10.5px; letter-spacing: 0.16em; gap: 8px; }
  .eyebrow::before { width: 20px; }

  /* Top strip */
  .top-strip { font-size: 11.5px; }
  .top-strip .inner { padding: 8px 16px; gap: 10px; }

  /* Nav */
  .nav .inner { padding: 12px 16px; gap: 12px; }
  .nav .brand img { height: 36px; }
  .nav-burger { width: 38px; height: 38px; }
  .nav-burger svg { width: 18px; height: 18px; }

  /* Mobile drawer */
  .mobile-drawer { padding: 20px 18px; }
  .mobile-drawer ul { margin: 28px 0 0; }
  .mobile-drawer a { font-size: 22px; padding: 16px 0; }
  .mobile-drawer .drawer-cta { margin-top: 28px; padding: 14px 22px; align-self: stretch; justify-content: center; }

  /* Hero */
  .hero { padding: 36px 0 90px; }
  .hero .container { gap: 50px; }
  .hero-copy .eyebrow { justify-content: flex-start; }
  .hero-copy h1 {
    font-size: clamp(28px, 8.6vw, 40px);
    line-height: 1.08;
    margin: 14px 0 16px;
  }
  .hero-copy h1 .accent::after { bottom: 2px; height: 4px; }
  .hero-copy .lede { font-size: 16.5px; line-height: 1.55; }
  .hero-bullets {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0;
  }
  .hero-bullets li { font-size: 14px; }
  .hero-ctas { gap: 10px; flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 14.5px; }

  .hero-photo { max-width: 320px; }
  .hero-photo .corner { width: 24px; height: 24px; }
  .hero-photo .corner.tl { top: -6px; left: -6px; }
  .hero-photo .corner.br { bottom: -6px; right: -6px; }
  .hero-badge {
    top: 10px; right: 10px;
    font-size: 10px;
    padding: 6px 10px;
    letter-spacing: 0.1em;
  }
  .hero-chip {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: -28px;
    padding: 10px 14px;
    gap: 10px;
    border-radius: 12px;
  }
  .hero-chip .label { font-size: 9.5px; }
  .hero-chip .value { font-size: 13px; }

  /* Stats */
  .stats .container { padding: 0 12px; }
  .stats .grid { gap: 18px 12px; }
  .stat { padding: 0; }
  .stat .num { font-size: 30px; }
  .stat .label { font-size: 11.5px; letter-spacing: 0.03em; }

  /* Áreas de atuação */
  .areas-grid { grid-template-columns: 1fr; gap: 14px; }
  .areas-grid .area-card:nth-child(n) { grid-column: span 1; }
  .area-card { padding: 22px 18px; }
  .area-card .icon { width: 42px; height: 42px; margin-bottom: 16px; }
  .area-card h3 { font-size: 19px; }
  .area-card p { font-size: 14px; margin-bottom: 14px; }

  /* Sobre */
  .about-photo { max-width: 100%; }
  .about .overlay { padding: 18px 20px; }
  .about .quote { font-size: 15px; }
  .about-features { grid-template-columns: 1fr; gap: 14px; }
  .about-features li { padding: 12px; }
  .about-features .ico { width: 36px; height: 36px; }

  /* Reviews */
  .reviews .review-summary {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  .review-summary .score { font-size: 44px; }
  .review-summary .google-badge { font-size: 12.5px; padding: 9px 16px; }
  .review-slider { padding: 0; }
  .review-card { flex: 0 0 calc(100% - 4px); padding: 20px 18px; }
  .review-avatar { width: 38px; height: 38px; font-size: 14px; }
  .review-name { font-size: 14.5px; }
  .review-text { font-size: 14px; }
  .review-arrows { gap: 14px; margin-top: 20px; }
  .review-arrows button { width: 42px; height: 42px; }

  /* Localização */
  .map-frame, .map-frame iframe { min-height: 280px; }
  .address-card { padding: 24px 20px; }
  .address-card .pin { width: 48px; height: 48px; margin-bottom: 16px; }
  .address-card h3 { font-size: 24px; }
  .address-rows li { padding: 12px 0; }
  .address-rows .val { font-size: 14.5px; }

  /* FAQ */
  .faq-q {
    gap: 16px;
    padding: 18px 0;
    font-size: 16.5px;
    line-height: 1.35;
  }
  .faq-toggle { width: 30px; height: 30px; }
  .faq-toggle::before { width: 12px; }
  .faq-toggle::after { height: 12px; }
  .faq-a .inner { font-size: 15px; line-height: 1.65; padding-bottom: 22px; }

  /* Blog preview */
  .blog-grid { grid-template-columns: 1fr; gap: 14px; }
  .blog-grid .post-card:last-child { grid-column: span 1; }
  .post-card { padding: 22px 20px; }
  .post-card h3 { font-size: 19px; }
  .post-card p { font-size: 14px; margin-bottom: 16px; }

  /* CTA band */
  .cta-band { padding: 56px 0; }
  .cta-band h2 { font-size: clamp(24px, 7vw, 34px); margin: 12px auto 14px; }
  .cta-band p { font-size: 16px; margin-bottom: 24px; }
  .cta-band .row { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-band .row .btn { width: 100%; justify-content: center; }

  /* Footer */
  .foot { padding: 50px 0 24px; }
  .foot .grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }
  .foot .brand-block { grid-column: span 1; }
  .foot .brand-block img { height: 52px; margin-bottom: 18px; }
  .foot .brand-block p { font-size: 14px; max-width: 100%; }
  .foot h4 { margin-bottom: 14px; }
  .foot .bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 11.5px;
    padding-top: 20px;
  }

  /* WhatsApp flutuante */
  .fab-whats {
    width: 54px; height: 54px;
    bottom: 16px; right: 16px;
  }
  .fab-whats svg { width: 24px; height: 24px; }
}

/* --- ≤ 420px (smartphone pequeno - iPhone SE etc) --- */
@media (max-width: 420px) {
  .container, .container-narrow { padding: 0 14px; }
  .top-strip .inner { padding: 7px 14px; }
  .nav .inner { padding: 10px 14px; }
  .nav .brand img { height: 32px; }
  .section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }
  .hero { padding: 28px 0 82px; }
  .hero-copy h1 { font-size: 26px; }
  .hero-copy .lede { font-size: 15.5px; }
  .stats .grid { grid-template-columns: 1fr 1fr; gap: 14px 10px; }
  .stat .num { font-size: 26px; }
  .stat .label { font-size: 11px; }
  .area-card h3 { font-size: 18px; }
  .section-title { font-size: 24px; }
  .review-summary .score { font-size: 38px; }
  .cta-band { padding: 48px 0; }
  .cta-band h2 { font-size: 24px; }
}
