/* ===========================
   Ohana Advocacia Assertiva — LP Trabalhista
   Paleta: #580E0E (bordô) + #B89968 (dourado) + branco/creme
   =========================== */

:root {
  --bordo: #580E0E;
  --bordo-dark: #3D0808;
  --bordo-soft: #7A2424;
  --gold: #B89968;
  --gold-light: #D4B888;
  --gold-dark: #97784E;
  --cream: #F8F4EE;
  --paper: #FBF9F5;
  --ink: #1A1714;
  --ink-soft: #4A4640;
  --line: #E5DDD0;
  --line-strong: #C7B89A;
  --whats: #25D366;
  --whats-dark: #1FB855;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --max-w: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  --header-h: 96px;
  --header-h-scrolled: 64px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ----- HEADER ----- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 249, 245, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}

.site-header.scrolled {
  background: rgba(251, 249, 245, 0.96);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
  height: var(--header-h);
  transition: height .35s cubic-bezier(.4,0,.2,1);
}

.site-header.scrolled .header-inner {
  height: var(--header-h-scrolled);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 64px;
  width: auto;
  transition: height .35s cubic-bezier(.4,0,.2,1), filter .35s;
}

.site-header.scrolled .brand-logo {
  height: 40px;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
  margin-left: auto;
  margin-right: clamp(12px, 2vw, 28px);
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--bordo);
  transition: width .3s ease;
}

.site-nav a:hover { color: var(--bordo); }
.site-nav a:hover::after { width: 100%; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}

/* Botões verdes (estilo WhatsApp) — todos os CTAs de contato */
.btn-wa {
  background: var(--whats);
  color: #fff;
  padding: 16px 28px;
  letter-spacing: 0.04em;
}

.btn-wa:hover {
  background: var(--whats-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
}

.btn-wa .btn-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-wa .btn-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.btn-header {
  padding: 10px 16px 10px 14px;
  font-size: 12px;
  background: var(--whats);
  color: #fff;
  letter-spacing: 0.05em;
}

.btn-header:hover {
  background: var(--whats-dark);
  transform: translateY(-1px);
}

.btn-header .btn-icon {
  width: 16px;
  height: 16px;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 14px 0;
  letter-spacing: 0.08em;
}
.btn-ghost:hover {
  color: var(--bordo);
  border-bottom-color: var(--bordo);
}

/* ----- NAV TOGGLE (mobile) ----- */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1.5px;
  background: var(--ink);
  transition: all .3s;
}
.nav-toggle span:nth-child(1) { top: 9px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 21px; }

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ----- HERO ----- */
.hero {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 153, 104, 0.08), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(88, 14, 14, 0.04), transparent 50%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-bottom: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 30px;
}

.eyebrow-line {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-light {
  color: var(--gold-light);
}
.eyebrow-light .eyebrow-line { background: var(--gold-light); }

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--bordo);
  font-weight: 500;
}

.hero-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 480px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta strong {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.hero-meta span {
  font-size: 14px;
  color: var(--ink);
  font-weight: 400;
}

/* Hero image */
.hero-image {
  position: relative;
}

.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream);
  overflow: hidden;
}

.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(26, 23, 20, 0.15) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 8s ease-out;
}

.hero:hover .hero-photo-wrap img { transform: scale(1.04); }

.hero-card {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--paper);
  padding: 22px 26px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 240px;
  box-shadow: 0 24px 60px rgba(26, 23, 20, 0.08);
  z-index: 3;
}

.hero-card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.hero-card strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}

.hero-card-oab {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Hero marquee */
.hero-marquee {
  background: var(--bordo);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}

.hero-marquee::before,
.hero-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.hero-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bordo), transparent);
}
.hero-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bordo), transparent);
}

.marquee-track {
  display: flex;
  gap: 28px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--paper);
  font-weight: 500;
  width: max-content;
}

.marquee-track span {
  flex: 0 0 auto;
}

.marquee-track span:nth-child(odd) {
  color: var(--gold-light);
  font-family: var(--serif);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- SECTION BASE ----- */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 500;
}

.section-num::before {
  content: '— ';
  color: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--bordo);
}

.section-lead {
  font-size: clamp(16px, 1.15vw, 18px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 640px;
}

/* ----- ÁREAS ----- */
.areas {
  background: var(--paper);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.area-card {
  background: var(--paper);
  padding: clamp(32px, 3.5vw, 48px);
  position: relative;
  transition: all .35s ease;
}

.area-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 0;
  height: 2px;
  background: var(--bordo);
  transition: width .4s ease;
}

.area-card:hover {
  background: var(--cream);
  transform: translateY(-2px);
}
.area-card:hover::before {
  width: 100%;
}

.area-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 20px;
}

.area-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  color: var(--bordo);
  margin-bottom: 18px;
  letter-spacing: -0.005em;
}

.area-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ----- RESPONSÁVEL ----- */
.responsavel {
  background: var(--cream);
  position: relative;
}

.responsavel-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.responsavel-photo {
  position: relative;
}

.responsavel-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(20%) contrast(1.02);
  transition: filter .6s ease;
}

.responsavel-photo:hover img {
  filter: grayscale(0%) contrast(1);
}

.responsavel-frame {
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid var(--gold);
  z-index: -1;
  pointer-events: none;
}

.responsavel-text .section-num { margin-bottom: 16px; }
.responsavel-text .section-title { margin-bottom: 28px; }

.responsavel-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--bordo);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}

.responsavel-oab {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
  font-weight: 500;
}

.responsavel-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 540px;
}

.responsavel-text .btn { margin-top: 16px; }

/* ----- ESCRITÓRIO ----- */
.escritorio { background: var(--paper); }

.escritorio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.escritorio-card {
  background: var(--cream);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}

.escritorio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(26, 23, 20, 0.06);
}

.card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--gold-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.escritorio-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  color: var(--bordo);
  margin-bottom: 18px;
}

.escritorio-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.socios-list { display: flex; flex-direction: column; gap: 16px; }

.socios-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.socios-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.socios-list strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.socios-list span {
  font-size: 12px;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
}

/* ----- PARA QUEM ÉS ----- */
.para-quem {
  background: var(--bordo);
  color: var(--paper);
}

.para-quem .section-num { color: var(--gold-light); }
.para-quem .section-num::before { color: var(--gold-light); }
.para-quem .section-title { color: var(--paper); }
.para-quem .section-title em { color: var(--gold-light); }
.para-quem .section-lead { color: rgba(248, 244, 238, 0.78); }

.para-quem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pq-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: flex-start;
  padding-right: 32px;
}

.pq-item:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 60px;
}

.pq-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--gold-light);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.pq-item:hover .pq-mark { transform: translateX(6px); }

.pq-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--paper);
  font-weight: 300;
}

/* ----- MÉTODO ----- */
.metodo { background: var(--paper); }

.metodo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-left: 1px solid var(--line);
}

.metodo-step {
  padding: 32px clamp(20px, 2.5vw, 36px);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background .3s ease;
  position: relative;
}

.metodo-step:hover { background: var(--cream); }

.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.metodo-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--bordo);
  margin-bottom: 14px;
  line-height: 1.2;
}

.metodo-step p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ----- FAQ ----- */
.faq { background: var(--cream); }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background .3s ease;
}

.faq-item[open] { background: var(--paper); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink);
  transition: color .25s ease;
  position: relative;
  padding-right: 56px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--bordo);
  transition: transform .35s ease, content .3s;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '—';
  font-size: 22px;
}

.faq-item:hover summary { color: var(--bordo); }

.faq-body {
  padding: 0 0 28px;
  max-width: 880px;
}

.faq-body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ----- LOCALIZAÇÃO ----- */
.localizacao { background: var(--paper); }

.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.localizacao-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-block {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.info-block:last-of-type { border-bottom: 0; }

.info-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: block;
}

.info-block p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
}

.info-block a {
  color: var(--bordo);
  text-decoration: none;
  transition: color .2s;
}

.info-block a:hover { color: var(--gold-dark); }

.localizacao-mapa {
  background: var(--cream);
  min-height: 440px;
  position: relative;
  overflow: hidden;
}

.localizacao-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  filter: grayscale(40%) contrast(1.05);
  transition: filter .4s ease;
}

.localizacao-mapa:hover iframe { filter: grayscale(0); }

/* ----- CTA FINAL ----- */
.cta-final {
  background:
    radial-gradient(circle at 70% 20%, rgba(184, 153, 104, 0.15), transparent 50%),
    var(--bordo);
  color: var(--paper);
  text-align: center;
  padding: clamp(80px, 9vw, 130px) 0;
}

.cta-final-inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta-final h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--paper);
}

.cta-final h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-final p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: rgba(248, 244, 238, 0.85);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- FOOTER ----- */
.site-footer {
  background: var(--ink);
  color: rgba(248, 244, 238, 0.7);
  padding: 80px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
  background: var(--paper);
  padding: 10px 14px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(248, 244, 238, 0.55);
}

.footer-col-title {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(248, 244, 238, 0.7);
  transition: color .2s;
  padding: 2px 0;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-address {
  font-size: 13px;
  color: rgba(248, 244, 238, 0.5);
  margin-top: 8px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.65;
  color: rgba(248, 244, 238, 0.45);
  max-width: 100%;
}

.footer-credit {
  font-size: 12px;
  color: rgba(248, 244, 238, 0.55);
}

.footer-credit a {
  color: var(--gold-light);
  transition: color .2s;
}

.footer-credit a:hover { color: var(--paper); }

/* ----- WHATSAPP FLUTUANTE ----- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: var(--whats);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: all .3s ease;
}

.wa-float:hover {
  background: var(--whats-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}

.wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

/* ----- REVEAL ANIMATIONS ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16,.6,.3,1), transform .8s cubic-bezier(.16,.6,.3,1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .responsavel-grid { grid-template-columns: 1fr; }
  .responsavel-frame { display: none; }
  .localizacao-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; --header-h-scrolled: 52px; }

  .brand-logo { height: 40px; }
  .site-header.scrolled .brand-logo { height: 32px; }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0; right: 0;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    padding: calc(var(--header-h) + 30px) var(--gutter) 50px;
    transform: translateY(-100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    margin: 0;
    gap: 20px;
    align-items: flex-start;
    visibility: hidden;
    overflow-y: auto;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    visibility: visible;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a { font-size: 18px; padding: 6px 0; }

  .nav-toggle { display: block; }

  .btn-header { display: none; }

  .hero { padding-top: calc(var(--header-h) + 32px); }
  .hero-grid { padding-bottom: 60px; }
  .hero-title { font-size: clamp(36px, 9vw, 52px); }
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-card { left: 0; bottom: -24px; }

  .marquee-track { font-size: 18px; gap: 18px; }

  .para-quem-list { grid-template-columns: 1fr; }

  .pq-item {
    border-right: 0 !important;
    padding-right: 0 !important;
  }

  .areas-grid,
  .escritorio-grid,
  .metodo-steps {
    grid-template-columns: 1fr;
  }

  .metodo-steps { border-left: 0; }
  .metodo-step { border-top: 0; }
  .metodo-step:first-child { border-top: 1px solid var(--line); }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }

  .wa-float {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px 12px 14px;
    font-size: 13px;
  }

  .wa-text { display: inline; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; }
  .wa-text { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .wa-icon { width: 24px; height: 24px; }
}

/* ----- PRINT (defensivo) ----- */
@media print {
  .site-header, .wa-float, .nav-toggle { display: none; }
}
