/* ============================================================
   CAMARGO SOLUÇÕES JURÍDICAS — Design System
   Paleta: #b09771 (dourado) | #57161f (bordô)
   Tipografia: Playfair Display (títulos) + Inter (corpo)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #b09771;
  --gold-light:  #d4c5a9;
  --gold-pale:   #f0ead8;
  --bordeaux:    #57161f;
  --bordeaux-dk: #3e1017;
  --bordeaux-lt: #7a2033;
  --bg:          #faf8f5;
  --bg-alt:      #f3efe8;
  --white:       #ffffff;
  --text:        #1c1c1c;
  --text-mid:    #4a4a4a;
  --text-light:  #7a7a7a;
  --border:      #e4ddd0;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 6px 24px rgba(0,0,0,.09);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.12);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --max-w:       1200px;
  --section-py:  96px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Acessibilidade: skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--bordeaux);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  z-index: 9999;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- TIPOGRAFIA ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { color: var(--text-mid); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ---------- UTILITÁRIOS ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: var(--section-py) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bordeaux-dk); }
.section--white { background: var(--white); }

.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.label::before { content: '—  '; }

.section-heading { margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: .75rem; }
.section-heading p { font-size: 1.0625rem; max-width: 580px; }
.section-heading--center { text-align: center; }
.section-heading--center p { margin: 0 auto; }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 50px;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--bordeaux);
  color: var(--white);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--bordeaux-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(87,22,31,.3);
  outline: none;
}
.btn--outline {
  background: transparent;
  color: var(--bordeaux);
  border: 2px solid var(--bordeaux);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--bordeaux);
  color: var(--white);
  transform: translateY(-2px);
  outline: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--bordeaux);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176,151,113,.4);
  outline: none;
}
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(255,255,255,.22);
  outline: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.25rem 0;
  background: rgba(87,22,31,.72);
  backdrop-filter: blur(4px);
}
.header--scrolled {
  background: rgba(250,248,245,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: .75rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition);
}
.header--scrolled .header__logo img { height: 42px; filter: none; }
.header--scrolled .nav__link { color: var(--text); }
.header:not(.header--scrolled) .header__logo img { filter: drop-shadow(0 1px 3px rgba(0,0,0,.4)); }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav__link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: .5rem .875rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav__link:hover, .nav__link:focus-visible {
  color: var(--bordeaux);
  outline: none;
}
.nav__link:hover::after { left: .875rem; right: .875rem; }
.nav__cta { margin-left: .75rem; padding: .625rem 1.375rem; font-size: .875rem; }

/* Menu hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  aria-label: "Menu";
}
.nav-toggle:hover, .nav-toggle:focus-visible {
  background: var(--gold-pale);
  outline: none;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,248,245,.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.is-open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav__link {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--bordeaux); }
.mobile-nav__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; border-radius: 50%;
  transition: background var(--transition);
}
.mobile-nav__close:hover { background: var(--border); }
.mobile-nav__close svg { width: 22px; height: 22px; color: var(--text); }

/* ---------- HERO PARALLAX ---------- */
.hero--parallax {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url(../img/izabela-4533.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: right center;
  padding-top: 80px;
}
.hero__mobile-photo { display: none; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(87,22,31,.97) 0%, rgba(87,22,31,.93) 42%, rgba(87,22,31,.55) 62%, rgba(14,10,8,.0) 100%);
  z-index: 0;
}
.hero--parallax .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 7rem 0;
  max-width: 600px;
  grid-column: 1;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero__eyebrow-line { width: 32px; height: 1px; background: var(--gold-light); }
.hero__title {
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero__title em {
  font-style: normal;
  color: var(--gold-light);
}
.hero__lead {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.hero__trust-item strong {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
}
.hero__trust-item span {
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
}
.hero__trust-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.25);
}

/* ---------- DIFERENCIAIS ---------- */
.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.diferencial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.diferencial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  border-radius: 0 0 4px 4px;
  transition: height var(--transition);
}
.diferencial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}
.diferencial-card:hover::before { height: 60px; }
.diferencial-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.diferencial-card__icon svg { width: 26px; height: 26px; color: var(--gold); }
.diferencial-card h3 { font-size: 1.0625rem; margin-bottom: .625rem; }
.diferencial-card p { font-size: .9375rem; line-height: 1.7; text-align: justify; }

/* ---------- SOBRE ---------- */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
/* Versão foto única */
.sobre__images--single {
  position: relative;
  height: auto;
}
.sobre__img-main--solo {
  position: static;
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 85%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.sobre__images {
  position: relative;
  height: 620px;
}
.sobre__img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.sobre__img-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-alt);
}
.sobre__quote {
  position: absolute;
  bottom: -2rem; left: 1rem;
  background: var(--bordeaux);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  max-width: 280px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.sobre__quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .875rem;
  color: var(--white);
  line-height: 1.6;
}
.sobre__quote-author {
  display: block;
  margin-top: .625rem;
  font-size: .75rem;
  opacity: .7;
}
.sobre__content .label { margin-bottom: 1rem; }
.sobre__content h2 { margin-bottom: 1.5rem; }
.sobre__content p { margin-bottom: 1rem; font-size: 1rem; text-align: justify; }
.sobre__oab {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding: .75rem 1.125rem;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--text);
}
.sobre__oab svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.sobre__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- ÁREAS DE ATUAÇÃO ---------- */
.areas__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
.areas__intro-actions { display: flex; justify-content: flex-end; align-items: flex-end; }

.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.area-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.area-card__img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.area-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.area-card:hover .area-card__img-wrap img { transform: scale(1.05); }
.area-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(87,22,31,.6) 100%);
}
.area-card__body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.area-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.area-card__icon svg { width: 22px; height: 22px; color: var(--gold); }
.area-card h3 { font-size: 1.125rem; margin-bottom: .75rem; }
.area-card p { font-size: .9375rem; line-height: 1.7; flex: 1; }
.area-card__topics {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
}
.area-card__tag {
  font-size: .75rem;
  font-weight: 500;
  padding: .3rem .7rem;
  border-radius: 50px;
  background: var(--gold-pale);
  color: var(--text);
}

/* Área em destaque — mesmo tamanho que os demais */
.area-card--featured {
  grid-column: span 1;
  flex-direction: column;
}
.area-card--featured .area-card__img-wrap {
  height: 200px;
  min-width: unset;
  flex-shrink: 1;
}
.area-card--featured .area-card__img-wrap img { height: 100%; }

/* ---------- ZONA LOGO (blog + FAQ) ---------- */
.logo-region {
  position: relative;
}
.logo-region::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../img/logo-camargo.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 560px auto;
  opacity: .055;
  filter: saturate(0);
  pointer-events: none;
  z-index: 999;
}

/* ---------- FAIXA LOGO RODAPÉ ---------- */
.logo-band--dark {
  position: relative;
  padding: 6rem 0;
  background: var(--bordeaux-dk);
  overflow: hidden;
}
.logo-band--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(../img/logo-camargo.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 560px auto;
  filter: brightness(0) invert(1);
  opacity: .06;
  pointer-events: none;
}
.logo-band__inner { display: none; }

/* ---------- DEPOIMENTOS ---------- */
.depoimentos {
  background: var(--bordeaux-dk);
  position: relative;
  overflow: hidden;
}
.depoimentos::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 20rem;
  color: rgba(255,255,255,.04);
  position: absolute;
  top: -4rem; left: 2rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.depoimentos .section-heading h2,
.depoimentos .section-heading .label { color: var(--gold-light); }
.depoimentos .section-heading p { color: rgba(255,255,255,.65); }
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.depoimento-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background var(--transition);
  backdrop-filter: blur(8px);
}
.depoimento-card:hover { background: rgba(255,255,255,.11); }
.depoimento-card__stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1.25rem;
}
.depoimento-card__stars svg { width: 18px; height: 18px; fill: var(--gold); color: var(--gold); }
.depoimento-card__text {
  font-size: .9375rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.depoimento-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--bordeaux);
}
.depoimento-card__author-name {
  display: block;
  font-weight: 600;
  font-size: .9375rem;
  color: var(--white);
}
.depoimento-card__author-area {
  font-size: .8125rem;
  color: var(--gold-light);
}
.depoimentos__aviso {
  margin-top: 2rem;
  text-align: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
}

/* ---------- BLOG ---------- */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-card__img {
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
  width: 100%;
}
.blog-card:hover .blog-card__img { transform: scale(1.05); }
.blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.blog-card__cat {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bordeaux);
  background: rgba(87,22,31,.08);
  padding: .25rem .625rem;
  border-radius: 50px;
}
.blog-card__date { font-size: .8125rem; color: var(--text-light); }
.blog-card h3 {
  font-size: 1.0625rem;
  margin-bottom: .75rem;
  line-height: 1.4;
  color: var(--text);
}
.blog-card p { font-size: .9375rem; flex: 1; }
.blog-card__footer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--bordeaux);
  transition: gap var(--transition);
}
.blog-card:hover .blog-card__footer { gap: .625rem; }
.blog-card__footer svg { width: 16px; height: 16px; }
.blog__aviso {
  padding: 1rem 1.25rem;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
}
.blog__cta-wrap { text-align: center; }

/* ---------- FAQ ---------- */
.faq__grid {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq-btn:hover, .faq-btn:focus-visible { color: var(--bordeaux); outline: none; }
.faq-btn__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.faq-btn__icon svg { width: 16px; height: 16px; color: var(--text-mid); transition: transform var(--transition); }
.faq-btn[aria-expanded="true"] .faq-btn__icon {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
}
.faq-btn[aria-expanded="true"] .faq-btn__icon svg {
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer.is-open { max-height: 400px; }
.faq-answer__inner {
  padding-bottom: 1.5rem;
  font-size: .9375rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ---------- CONTATO ---------- */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contato__info .label { margin-bottom: 1rem; }
.contato__info h2 { margin-bottom: 1.25rem; }
.contato__info p { margin-bottom: 2rem; }
.contato__items { display: flex; flex-direction: column; gap: 1.25rem; }
.contato__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contato__item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contato__item-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contato__item-text strong { display: block; font-size: .9375rem; margin-bottom: .25rem; }
.contato__item-text span,
.contato__item-text a { font-size: .9375rem; color: var(--text-mid); }
.contato__item-text a:hover { color: var(--bordeaux); }
.contato__socials {
  display: flex;
  gap: .875rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.contato__social-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.contato__social-btn:hover { border-color: var(--gold); color: var(--bordeaux); background: var(--gold-pale); }
.contato__social-btn svg { width: 18px; height: 18px; }

/* Formulário */
.contato__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contato__form h3 { margin-bottom: .5rem; }
.contato__form > p { font-size: .9375rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,151,113,.15);
}
.form-group input.is-error,
.form-group select.is-error,
.form-group textarea.is-error { border-color: #c0392b; }
.form-group__error {
  display: none;
  font-size: .8125rem;
  color: #c0392b;
  margin-top: .375rem;
}
.form-group.has-error .form-group__error { display: block; }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-notice {
  font-size: .8125rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.form-notice a { color: var(--bordeaux); text-decoration: underline; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--bordeaux);
  cursor: pointer;
}
.form-check label {
  font-size: .8125rem;
  color: var(--text-mid);
  cursor: pointer;
  line-height: 1.5;
}
.form-check a { color: var(--bordeaux); text-decoration: underline; }
.form-btn { width: 100%; justify-content: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.is-visible { display: block; }
.form-success svg { width: 52px; height: 52px; color: #27ae60; margin: 0 auto 1rem; }
.form-success h4 { font-size: 1.25rem; margin-bottom: .5rem; }
.form-success p { font-size: .9375rem; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: .875rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: .875rem 1.375rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-weight: 600;
  font-size: .9375rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: float-in .6s ease .5s both;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}
.whatsapp-float svg { width: 24px; height: 24px; flex-shrink: 0; }
@keyframes float-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bordeaux-dk);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer__logo { height: 72px; width: auto; align-self: flex-start; filter: brightness(0) saturate(100%) invert(70%) sepia(45%) saturate(500%) hue-rotate(5deg) brightness(95%); opacity: 1; }
.footer__brand p { font-size: .9375rem; line-height: 1.75; }
.footer__oab {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}
.footer__col h4 {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: .625rem; }
.footer__links a {
  font-size: .9375rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold-light); }
.footer__contact { display: flex; flex-direction: column; gap: .875rem; }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.footer__contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item span { font-size: .9375rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.footer__contact-item a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--gold-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: .8125rem; color: rgba(255,255,255,.4); }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ---------- SEÇÃO CTA ---------- */
.cta-section {
  background: var(--bordeaux);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.cta-section__content .label { color: rgba(255,255,255,.6); }
.cta-section__content .label::before { content: ''; }
.cta-section h2 { color: var(--white); max-width: 560px; }
.cta-section__actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---------- SCROLL ANIMATIONS ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }
}

/* ---------- RESPONSIVIDADE ---------- */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .hero--parallax { background-attachment: scroll; background-image: none; height: 100vh; }
  .hero__mobile-photo {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100vh;
    object-fit: cover;
    object-position: 60% 20%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
  }
  .hero__overlay { background: linear-gradient(90deg, rgba(87,22,31,.99) 0%, rgba(87,22,31,.96) 32%, rgba(87,22,31,.55) 52%, rgba(87,22,31,.10) 72%, transparent 90%); }
  .hero__content { padding: 7rem 0 5rem; max-width: 100%; grid-column: 1 / -1; }
  .hero--parallax .container { grid-template-columns: 1fr; }
  .diferenciais__grid { grid-template-columns: 1fr 1fr; }
  .sobre__grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre__images { height: 420px; order: -1; }
  .areas__intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .areas__intro-actions { justify-content: flex-start; }
  .areas__grid { grid-template-columns: 1fr 1fr; }
  .area-card--featured { grid-column: span 1; flex-direction: column; }
  .area-card--featured .area-card__img-wrap { height: 200px; }
  .depoimentos__grid { grid-template-columns: 1fr 1fr; }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .contato__grid { grid-template-columns: 1fr; gap: 3rem; }
  .cta-section__inner { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .diferenciais__grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr; }
  .depoimentos__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__trust { flex-wrap: wrap; gap: 1rem; }
  .sobre__images--single { height: auto; }
  .sobre__img-main--solo { height: 380px; }
  .sobre__images { height: 340px; }
  .sobre__img-main { width: 85%; height: 300px; }
  .sobre__img-sec { width: 50%; height: 220px; }
  .sobre__quote { bottom: -1.5rem; left: .5rem; max-width: 220px; font-size: .8125rem; }
  .logo-band__mark { height: 90px; }
}

@media (max-width: 480px) {
  :root { --section-py: 48px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 1rem; border-radius: 50%; }
  .cta-section__actions { flex-direction: column; width: 100%; }
  .cta-section__actions .btn { width: 100%; justify-content: center; }
}

/* ---------- FOCUS VISIBLE GLOBAL ---------- */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- PÁGINA LEGAL ---------- */
.legal-page { padding-top: 120px; padding-bottom: var(--section-py); }
.legal-page h1 { margin-bottom: .5rem; }
.legal-page .legal-date { color: var(--text-light); font-size: .875rem; margin-bottom: 3rem; }
.legal-page h2 { font-size: 1.375rem; margin: 2.5rem 0 .875rem; color: var(--bordeaux); }
.legal-page p { margin-bottom: 1rem; font-size: 1rem; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.legal-page ul li { margin-bottom: .5rem; color: var(--text-mid); font-size: 1rem; }
.legal-page a { color: var(--bordeaux); text-decoration: underline; }
.legal-page__toc {
  background: var(--bg-alt);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2.5rem;
}
.legal-page__toc h3 { font-size: 1rem; margin-bottom: .875rem; }
.legal-page__toc ol { padding-left: 1.25rem; }
.legal-page__toc li { margin-bottom: .375rem; }
.legal-page__toc a { color: var(--bordeaux); font-size: .9375rem; }
