/* =========================================================
   Bastos & Prado Advocacia — Site-2
   Linguagem visual inspirada em escritórios de grande porte:
   navy profundo + dourado, tipografia forte, cards escuros.
   ========================================================= */

:root {
  --navy-950: #05070d;
  --navy-900: #0b0f1a;
  --navy-800: #131a2b;
  --navy-700: #1c2440;

  --gold-400: #e8cd85;
  --gold-500: #d4af37;
  --gold-600: #b9862e;
  --gold-700: #8a6a24;

  --gray-50: #f7f5f0;
  --gray-100: #eee9e0;
  --gray-200: #ded6c6;
  --gray-400: #9c9484;
  --gray-500: #736c5e;
  --gray-700: #453f34;
  --ink: #16130d;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(10, 8, 4, 0.08);
  --shadow-md: 0 12px 32px rgba(10, 8, 4, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 8, 4, 0.20);

  --container: 1160px;
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  margin-top: 10px;
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: 14px;
  color: var(--gray-500);
  font-size: 1.02rem;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

/* CTA fantasma dourado — usado no cabeçalho (fundo escuro) */
.btn-primary {
  background: rgba(212, 175, 55, 0.10);
  color: var(--gold-400);
  border-color: rgba(212, 175, 55, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-500);
  color: var(--gold-500);
}

/* CTA sólido dourado — conversão principal, funciona em qualquer fundo */
.btn-gold {
  background: linear-gradient(120deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--gold-500); }

/* Contorno para uso sobre fundos claros (cards, formulário) */
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--gray-200);
}
.btn-outline:hover { border-color: var(--navy-900); }

/* Contorno para uso sobre fundos escuros (hero, banners) */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover { border-color: var(--white); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #1ebd5a; }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 13, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 40px; height: 40px; object-fit: contain; }
.footer-brand img { object-fit: contain; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
}
.brand-text span {
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-desktop a:hover { color: var(--white); }
.nav-desktop a:hover::after { transform: scaleX(1); }
.nav-desktop a.active { color: var(--gold-500); }
.nav-desktop a.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy-900);
}
.nav-mobile a {
  padding: 12px 4px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile a.active { color: var(--gold-500); }
.nav-mobile .btn { margin-top: 12px; }
body.nav-open .nav-mobile { display: flex; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); top: 0; }
body.nav-open .nav-toggle span::after { transform: rotate(-45deg); top: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
  background:
    radial-gradient(circle at 15% 0%, rgba(212,175,55,0.16) 0%, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(212,175,55,0.12) 0%, transparent 50%),
    linear-gradient(110deg, rgba(5,7,13,0.94) 15%, rgba(5,7,13,0.82) 45%, rgba(5,7,13,0.62) 100%),
    url("../img/photos/adart00090-lawyer-7123799_1920-flip.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero .eyebrow { color: var(--gold-400); }
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  letter-spacing: -0.02em;
  margin-top: 16px;
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-500);
}
.hero-sub {
  margin-top: 20px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-badges {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 22px;
  margin-top: 44px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hero-badges::-webkit-scrollbar { display: none; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  white-space: nowrap;
  flex: none;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 0;
  background: var(--gold-500);
  flex: none;
}

/* Painel flutuante "Áreas em destaque" */
.hero-visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 400px;
  padding: 34px 22px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: transparent;
  z-index: -1;
}
.hero-visual::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 4%;
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: var(--gold-400);
  opacity: 0.7;
  animation: heroFloat 5s ease-in-out infinite;
}

.hero-panel {
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
}
.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.hero-panel-head span:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--navy-900);
}
.hero-panel-badge {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-700);
  background: rgba(212, 175, 55, 0.16);
  padding: 5px 10px;
  border-radius: 0;
}
.hero-panel-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-panel-list li {
  display: grid;
  grid-template-columns: 38px 1fr 56px;
  align-items: center;
  gap: 12px;
}
.hero-panel-icon {
  width: 38px;
  height: 38px;
  border-radius: 0;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.hero-panel-icon img { width: 18px; height: 18px; filter: invert(1); }
.hero-panel-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
}
.hero-panel-meter {
  height: 5px;
  border-radius: 0;
  background: var(--gray-100);
  overflow: hidden;
}
.hero-panel-meter i {
  display: block;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
}

.hero-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 0;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  animation: heroFloat 4.5s ease-in-out infinite;
}
.hero-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-900);
  line-height: 1.1;
}
.hero-chip span {
  font-size: 0.72rem;
  color: var(--gray-500);
}
.hero-chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.hero-chip-icon img {
  width: 17px;
  height: 17px;
  filter: invert(78%) sepia(46%) saturate(700%) hue-rotate(357deg) brightness(103%);
}
.chip-top {
  top: 4px;
  right: -14px;
  animation-delay: 0s;
}
.chip-bottom {
  bottom: 8px;
  left: -18px;
  animation-delay: 1.2s;
  animation-direction: reverse;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-chip, .hero-visual::after { animation: none; }
}

/* ---------- Foto de atendimento (home) ---------- */
.photo-band { padding: 96px 0; background: var(--white); }
.photo-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.photo-band-media {
  position: relative;
}
.photo-band-media::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-500);
  z-index: 0;
}
.photo-band-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 1px solid var(--gray-100);
}
.photo-band-text p { color: var(--gray-500); margin-top: 16px; font-size: 1.02rem; }
.photo-band-text h2 { margin-top: 10px; font-size: clamp(1.6rem, 2.2vw, 2.1rem); letter-spacing: -0.01em; }
.photo-band-text .btn { margin-top: 28px; }

/* ---------- Carrossel "Áreas em destaque" (home) ---------- */
.areas-teaser { padding: 96px 0; background: var(--gray-50); }
.areas-teaser-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.areas-teaser-head .section-head { margin-bottom: 0; }
.carousel-controls { display: flex; gap: 10px; flex: none; }
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 1px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  transition: 0.15s ease;
  flex: none;
}
.carousel-btn:hover { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }
.carousel-btn svg { width: 18px; height: 18px; }

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }

.teaser-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: #000;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 0;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.teaser-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.teaser-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
}
.teaser-card:hover::before { transform: scaleX(1); }
.teaser-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: rgba(212, 175, 55, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
}
.teaser-icon img {
  width: 24px;
  height: 24px;
  filter: invert(78%) sepia(46%) saturate(700%) hue-rotate(357deg) brightness(103%);
}
.teaser-card h3 { color: var(--white); font-size: 1.02rem; margin-bottom: 8px; }
.teaser-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.teaser-more {
  margin-top: 36px;
  text-align: center;
}

/* ---------- Áreas de atuação ---------- */
.areas { padding: 96px 0; background: var(--gray-50); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--navy-800), var(--navy-950));
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 0;
  padding: 30px 26px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.area-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.5);
}
.area-card:hover::before { transform: scaleX(1); }
.area-icon {
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: rgba(212, 175, 55, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.area-card:hover .area-icon {
  background: var(--gold-500);
  transform: scale(1.06);
}
.area-icon img {
  width: 26px;
  height: 26px;
  filter: invert(78%) sepia(46%) saturate(700%) hue-rotate(357deg) brightness(103%);
}
.area-card:hover .area-icon img { filter: invert(9%) sepia(28%) saturate(1200%) hue-rotate(190deg) brightness(95%); }
.area-card h3 {
  font-size: 1.06rem;
  margin-bottom: 10px;
  color: var(--white);
}
.area-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
  flex: 1;
}
.area-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.area-link .arrow {
  flex: none;
  transition: transform 0.2s ease;
}
.area-card:hover .area-link { color: var(--gold-400); }
.area-card:hover .area-link .arrow { transform: translateX(4px); }
.area-link:focus-visible,
.area-link:hover { color: var(--gold-400); }

/* ---------- Diferenciais ---------- */
.diferenciais {
  padding: 96px 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(212,175,55,0.16) 0%, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(212,175,55,0.12) 0%, transparent 50%),
    linear-gradient(110deg, rgba(5,7,13,0.94) 15%, rgba(5,7,13,0.82) 45%, rgba(5,7,13,0.62) 100%),
    url("../img/photos/hero-bg.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.diferenciais::before {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(212,175,55,0.16) 0%, transparent 70%);
  top: -220px; right: -160px;
}
.diferenciais .section-head h1,
.diferenciais .section-head h2,
.diferenciais .section-head .eyebrow { color: var(--white); }
.diferenciais .section-head p { color: rgba(255,255,255,0.65); }
.diferenciais .eyebrow { color: var(--gold-400); }

.dif-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.dif-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.16);
  border-radius: 0;
  padding: 28px 24px;
}
.dif-icon {
  width: 46px; height: 46px;
  border-radius: 0;
  background: rgba(212, 175, 55, 0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.dif-icon img { width: 24px; height: 24px; filter: invert(78%) sepia(46%) saturate(700%) hue-rotate(357deg) brightness(103%); }
.dif-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.dif-card p { color: rgba(255,255,255,0.62); font-size: 0.9rem; }

/* ---------- Sobre ---------- */
.sobre { padding: 96px 0; background: var(--gray-50); }
.sobre .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.sobre-visual {
  position: relative;
  min-height: 360px;
}
.sobre-visual::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-500);
  z-index: 0;
}
.sobre-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 1px solid var(--gray-100);
}
.sobre-text p { color: var(--gray-500); margin-top: 16px; font-size: 1.02rem; }
.sobre-text p:first-of-type { margin-top: 18px; }
.sobre-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sobre-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--navy-800);
}
.sobre-list li .check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 0;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}


/* ---------- Depoimentos ---------- */
.depoimentos { padding: 96px 0; background: var(--gray-50); }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dep-card {
  background: linear-gradient(165deg, var(--navy-800), var(--navy-950));
  border-radius: 0;
  padding: 30px 26px;
  border: 1px solid rgba(212,175,55,0.16);
}
.dep-stars { color: var(--gold-500); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 16px; }
.dep-card p.quote {
  color: rgba(255,255,255,0.8);
  font-size: 0.98rem;
  line-height: 1.65;
}
.dep-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.dep-avatar {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 0;
  border: 1px solid rgba(212, 175, 55, 0.4);
  object-fit: cover;
  display: block;
}
.dep-person strong { display: block; font-size: 0.9rem; color: var(--white); }
.dep-person span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ---------- CTA banner ---------- */
.cta-banner {
  margin: 0;
  padding: 56px 24px;
  background: linear-gradient(120deg, var(--gold-600), #000 65%);
}
.cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  color: var(--white);
}
.cta-inner h2 { color: var(--white); font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.cta-inner p { color: rgba(255,255,255,0.8); margin-top: 10px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Contato ---------- */
.contato { padding: 96px 0; background: var(--gray-50); }
.contato .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.office-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 0;
  padding: 28px 26px;
  margin-top: 30px;
  box-shadow: var(--shadow-sm);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-item .ic {
  width: 42px; height: 42px;
  border-radius: 0;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.contact-info-item .ic img {
  width: 20px; height: 20px;
}
.contact-info-item strong { display: block; font-size: 0.94rem; color: var(--navy-900); }
.contact-info-item span { font-size: 0.88rem; color: var(--gray-500); }

.social-row { display: flex; gap: 10px; margin-top: 30px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 0;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  transition: 0.15s ease;
}
.social-row a img { width: 17px; height: 17px; }
.social-row a:hover { background: var(--navy-900); border-color: var(--navy-900); }
.social-row a:hover img { filter: invert(1); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 0;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--navy-800); }
.field select,
.field input,
.field textarea {
  border: 1px solid var(--gray-200);
  border-radius: 0;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}
.field select:focus,
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-700);
  border-radius: 0;
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.form-success.show { display: flex; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand strong { color: var(--white); font-family: var(--font-display); font-size: 1.05rem; }
.footer p.desc { font-size: 0.9rem; max-width: 280px; }
.footer h4 {
  color: var(--white);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 18px;
}
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 0.9rem; }
.footer ul a:hover { color: var(--gold-500); }
.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

/* ---------- Página de área individual ---------- */
.area-detail { padding: 56px 0 96px; background: var(--white); }
.area-breadcrumb {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.area-breadcrumb a { color: var(--gold-700); font-weight: 600; }
.area-detail .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.area-detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 0;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.area-detail-icon img { width: 30px; height: 30px; filter: invert(1); }
.area-detail h1 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.area-detail-lead {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 36px;
}
.area-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.area-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--navy-800);
}
.area-benefits li .check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 0;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}
.area-side-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 0;
  padding: 30px 26px;
  position: sticky;
  top: 100px;
}
.area-side-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.area-side-card .profile {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 26px;
  line-height: 1.55;
}
.area-side-card .btn { width: 100%; }
.area-side-note {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--gray-400);
  text-align: center;
}
.area-related {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}
.area-related h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--navy-900);
  margin-bottom: 16px;
}
.area-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-related-grid a {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 0;
  border: 1px solid var(--gray-200);
  color: var(--navy-800);
  transition: 0.15s ease;
}
.area-related-grid a:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  border-radius: 0;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform 0.15s ease;
}
.whats-float img { width: 28px; height: 28px; filter: invert(1); }
.whats-float:hover { transform: scale(1.06); }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* Entrada escalonada dos textos do hero (home) */
.hero-copy [data-reveal]:nth-child(1) { transition-delay: 0s; }
.hero-copy [data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.hero-copy [data-reveal]:nth-child(3) { transition-delay: 0.24s; }
.hero-copy [data-reveal]:nth-child(4) { transition-delay: 0.36s; }
.hero-copy [data-reveal]:nth-child(5) { transition-delay: 0.48s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid { grid-template-columns: 1fr; }
  .sobre .container,
  .contato .container,
  .photo-band .container { grid-template-columns: 1fr; }
  .photo-band-media { margin-top: 18px; }
  .sobre-visual { min-height: 260px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-detail .container { grid-template-columns: 1fr; }
  .area-side-card { position: static; }
}

@media (max-width: 760px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary.desktop-only { display: none; }
  .areas-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .section-head { margin-bottom: 32px; }
  .areas, .diferenciais, .sobre, .depoimentos, .contato, .areas-teaser, .photo-band { padding: 64px 0; }
  .hero { padding: 64px 0 80px; }
  .cta-banner { margin: 0; padding: 40px 24px; }
  .area-detail { padding: 40px 0 64px; }
  .areas-teaser-head { align-items: flex-start; }
}
