/* ==========================================================================
   FSO Advogados — Freitas Souza & Oliveira
   Identidade premium: navy dominante + cream (#f4e3d2) + laranja pontual
   Tipografia: Outfit (variação de peso)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy-950: #0e1326;
  --navy-900: #141a30;
  --navy-850: #182042;
  --navy-800: #1e2748;
  --navy-700: #29335b;
  --navy-600: #3a4670;

  --cream: #f4e3d2;
  /* texto claro sobre escuro + acentos quentes */
  --cream-deep: #e9d5bf;
  --cream-page: #f5e8da;
  /* fundo claro premium (substitui o branco) */
  --cream-card: #fcf6ee;
  /* cards sobre o fundo cream */
  --cream-line: #e3d3bf;

  --orange: #f47b20;
  /* uso pontual */
  --orange-soft: rgba(244, 123, 32, 0.14);

  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe5b;

  --ink: #16203b;
  /* texto principal sobre cream */
  --text: #4a4739;
  /* corpo sobre cream */
  --muted: #837a68;
  /* auxiliar sobre cream */
  --on-navy: rgba(244, 227, 210, 0.72);
  --on-navy-strong: #f4e3d2;

  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(14, 19, 38, 0.06);
  --shadow-md: 0 14px 40px rgba(14, 19, 38, 0.1);
  --shadow-lg: 0 26px 70px rgba(14, 19, 38, 0.22);

  --header-h: 78px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream-page);
  padding-top: var(--header-h);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--ink);
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}

/* Traço laranja pontual usado nos eyebrows */
.eyebrow-dash {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  vertical-align: middle;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 0.9em 1.8em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background-color 0.25s, color 0.25s, transform 0.15s, box-shadow 0.25s, border-color 0.25s;
  text-align: center;
}

.btn:active {
  transform: scale(0.98);
}

/* Cream sobre fundos escuros */
.btn--cream {
  background: var(--cream);
  color: var(--navy-900);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.btn--cream:hover {
  background: #fff;
  box-shadow: 0 14px 34px rgba(244, 123, 32, 0.28);
}

/* Navy sobre fundos claros */
.btn--navy {
  background: var(--navy-900);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}

.btn--navy:hover {
  background: var(--navy-800);
  box-shadow: 0 10px 26px rgba(20, 26, 48, 0.28);
}

/* Contorno claro sobre fundos escuros */
.btn--outline {
  color: var(--cream);
  border-color: rgba(244, 227, 210, 0.4);
  background: rgba(244, 227, 210, 0.02);
  backdrop-filter: blur(2px);
}

.btn--outline:hover {
  border-color: var(--cream);
  background: rgba(244, 227, 210, 0.08);
}

.btn--sm {
  font-size: 0.84rem;
  padding: 0.68em 1.35em;
}

.btn--lg {
  font-size: 1rem;
  padding: 1.05em 2.1em;
}

.btn--block {
  width: 100%;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(245, 232, 218, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: box-shadow 0.3s, border-color 0.3s, background-color 0.3s;
}

.header.is-scrolled {
  background: rgba(245, 232, 218, 0.92);
  border-color: var(--cream-line);
  box-shadow: 0 4px 24px rgba(14, 19, 38, 0.08);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Placa do logo: cartão branco que desce um pouco abaixo do header */
.header__brand {
  position: relative;
  align-self: flex-start;
  display: flex;
  align-items: center;
  background: #fcfdff;
  border: 3px solid var(--ink);
  border-top: none;
  border-radius: 0 0 18px 18px;
  padding: 20px 30px 22px;
  box-shadow: 0 12px 28px rgba(14, 19, 38, 0.12);
}

.header__brand img {
  width: auto;
  height: 54px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}

.header__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.header__menu a:hover::after {
  transform: scaleX(1);
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
}

.header__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.header__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  background: var(--navy-950);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/equipe-corporativo-reuniao.jpg");
  background-size: cover;
  background-position: 32% center;
  transform: scale(1.12);
  filter: saturate(1.05) blur(5px);
}

/* Overlay premium: escurece o conjunto e reforça a esquerda p/ o texto respirar */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, var(--navy-950) 22%, rgba(14, 19, 38, 0.88) 52%, rgba(14, 19, 38, 0.74) 100%),
    radial-gradient(900px 480px at 90% 6%, rgba(244, 123, 32, 0.16), transparent 60%);
}

/* Vinheta inferior para transição suave */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  z-index: -1;
  background: linear-gradient(to top, rgba(14, 19, 38, 0.6), transparent);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  padding-block: clamp(64px, 9vw, 112px);
  /* max-width: 820px; */
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 26px;
}

.hero__title {
  font-weight: 600;
  font-size: clamp(2.2rem, 5.2vw, 3.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.hero__title span {
  position: relative;
  color: var(--cream);
  white-space: nowrap;
}

.hero__title span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.09em;
  background: var(--orange);
  border-radius: 3px;
}

.hero__lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 300;
  color: var(--on-navy);
  max-width: 600px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(244, 227, 210, 0.16);
  padding-top: 32px;
  max-width: 760px;
}

.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__stats strong {
  font-size: 2.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stats span {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--on-navy);
  line-height: 1.35;
}

/* ---------- Seções (base) ---------- */
.section {
  padding-block: clamp(66px, 9vw, 116px);
}

.section__head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}

.section__eyebrow--light {
  color: var(--cream);
}

.section__title {
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__title em {
  font-style: normal;
  font-weight: 300;
}

.section__title--light {
  color: #fff;
}

.section__title--light em {
  color: var(--cream);
}

.section__lead {
  font-size: 1.06rem;
  font-weight: 300;
  color: var(--muted);
}

/* ---------- Áreas de Atuação ---------- */
.areas {
  background: var(--cream-page);
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
}

.area-card {
  background: var(--cream-card);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.area-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.area-card.is-open {
  border-color: rgba(244, 123, 32, 0.45);
  box-shadow: var(--shadow-md);
}

.area-card__toggle {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 24px;
  text-align: left;
}

.area-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--cream);
  transition: background-color 0.3s, color 0.3s;
}

.area-card__icon svg {
  width: 26px;
  height: 26px;
}

.area-card.is-open .area-card__icon {
  background: var(--orange);
  color: #fff;
}

.area-card__heading {
  flex: 1;
  min-width: 0;
}

.area-card__title {
  display: block;
  font-size: 1.24rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.area-card__teaser {
  display: block;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.45;
  /* Reserva 2 linhas para que todos os cards fiquem com a mesma altura */
  min-height: 2.9em;
}

.area-card__chevron {
  flex: none;
  color: var(--muted);
  transition: transform 0.35s, color 0.3s;
}

.area-card__chevron svg {
  width: 20px;
  height: 20px;
}

.area-card.is-open .area-card__chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.area-card__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.area-card.is-open .area-card__panel {
  grid-template-rows: 1fr;
}

.area-card__content {
  overflow: hidden;
  min-height: 0;
  padding-inline: 24px;
}

.area-card.is-open .area-card__content {
  padding-bottom: 28px;
}

.area-card__content>p {
  margin-bottom: 14px;
  font-size: 0.96rem;
  font-weight: 300;
}

.area-card__content h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-700);
  margin: 20px 0 12px;
}

.area-card__content ul {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.area-card__content li {
  position: relative;
  padding-left: 22px;
  font-size: 0.93rem;
  font-weight: 300;
}

.area-card__content li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.area-card__content blockquote {
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--navy-800);
  border-left: 2px solid var(--orange);
  padding: 4px 0 4px 18px;
  margin-bottom: 22px;
}

/* ---------- Diferenciais (dark) ---------- */
.diferenciais {
  position: relative;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-850) 70%, var(--navy-800));
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.diferenciais__glow {
  position: absolute;
  z-index: -1;
  top: -20%;
  right: -8%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.16), transparent 62%);
  filter: blur(30px);
  pointer-events: none;
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.diferencial {
  background: rgba(244, 227, 210, 0.04);
  border: 1px solid rgba(244, 227, 210, 0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
  backdrop-filter: blur(4px);
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.diferencial:hover {
  background: rgba(244, 227, 210, 0.07);
  border-color: rgba(244, 123, 32, 0.4);
  transform: translateY(-5px);
}

.diferencial__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(244, 227, 210, 0.1);
  color: var(--cream);
  margin-bottom: 18px;
}

.diferencial__icon svg {
  width: 24px;
  height: 24px;
}

.diferencial h3 {
  font-size: 1.04rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.diferencial p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--on-navy);
}

/* ---------- Quem Somos (light) ---------- */
.quem-somos {
  background: var(--cream-page);
}

.quem-somos__intro {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(36px, 5vw, 68px);
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 96px);
}

.quem-somos__media {
  position: relative;
}

.quem-somos__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

/* Moldura offset decorativa */
.quem-somos__media::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -18px;
  width: 55%;
  height: 55%;
  border: 1.5px solid var(--orange);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

.quem-somos__media-badge {
  position: absolute;
  right: -16px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--navy-900);
  color: var(--cream);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.quem-somos__media-badge strong {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.quem-somos__media-badge em {
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.35;
  color: var(--on-navy);
}

.quem-somos__quote {
  margin: 8px 0 24px;
}

.quem-somos__quote p {
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.quem-somos__quote cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--orange);
  margin-top: 14px;
}

.quem-somos__lead>p {
  margin-bottom: 14px;
  font-weight: 300;
}

.quem-somos__lead h3,
.quem-somos__socios>h3,
.valores h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 24px 0 12px;
}

/* Sócios */
.quem-somos__socios {
  margin-bottom: clamp(52px, 7vw, 88px);
}

.quem-somos__socios>h3 {
  margin-top: 0;
}

.socios__intro {
  max-width: 640px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 26px;
}

.socios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.socio {
  background: var(--cream-card);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.socio:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.socio__photo {
  aspect-ratio: 4 / 5;
  background: var(--navy-850);
}

.socio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.socio__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:
    radial-gradient(140% 90% at 50% 0%, rgba(244, 123, 32, 0.12), transparent 55%),
    linear-gradient(165deg, var(--navy-800), var(--navy-700));
  color: rgba(244, 227, 210, 0.35);
}

.socio__placeholder svg {
  width: 34px;
  height: 34px;
}

.socio__placeholder span {
  font-size: 1.7rem;
  font-weight: 600;
  color: rgba(244, 227, 210, 0.6);
  letter-spacing: 0.06em;
}

.socio__body {
  padding: 18px 20px 22px;
}

.socio h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 4px;
}

.socio__role {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.socio__body>p:last-child {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
}

.socios__note {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  margin-top: 20px;
  max-width: 760px;
}

/* Valores */
.valores h3 {
  margin-bottom: 20px;
}

.valores__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.valor {
  background: var(--cream-card);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.valor:hover {
  border-color: rgba(244, 123, 32, 0.4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.valor__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--navy-900);
  color: var(--cream);
  margin-bottom: 16px;
}

.valor__icon svg {
  width: 22px;
  height: 22px;
}

.valor h4 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.valor p {
  font-size: 0.89rem;
  font-weight: 300;
  color: var(--muted);
}

/* ---------- Banner CTA (dark, imagem) ---------- */
.cta-banner {
  position: relative;
  padding-block: clamp(72px, 10vw, 120px);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.cta-banner__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/equipe-corporativo-reuniao-2.jpg");
  background-size: cover;
  background-position: center 30%;
  filter: blur(4px);
  transform: scale(1.1);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 19, 38, 0.9), rgba(14, 19, 38, 0.82)),
    radial-gradient(700px 320px at 50% 120%, rgba(244, 123, 32, 0.22), transparent 60%);
}

.cta-banner__inner {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-banner__inner .section__eyebrow {
  justify-content: center;
}

.cta-banner h2 {
  font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
}

.cta-banner__lead {
  font-size: 1.08rem;
  font-weight: 300;
  color: var(--on-navy);
  margin-bottom: 32px;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-banner__email {
  color: var(--on-navy);
  font-size: 0.94rem;
  border-bottom: 1px dashed rgba(244, 227, 210, 0.4);
  transition: color 0.2s, border-color 0.2s;
}

.cta-banner__email:hover {
  color: #fff;
  border-color: #fff;
}

/* ---------- Contato (light) ---------- */
.contato {
  background: var(--cream-page);
}

.contato__grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: clamp(30px, 4.5vw, 56px);
  align-items: start;
}

.contact-form {
  background: var(--cream-card);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: clamp(26px, 3.5vw, 40px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--cream-line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field textarea {
  resize: vertical;
  min-height: 112px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.contact-form__hint {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

.contact-form__feedback {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
}

.contact-form__feedback.is-success {
  background: #e7f7ee;
  color: #1e7a45;
}

.contact-form__feedback.is-error {
  background: #fdecec;
  color: #b3372f;
}

.contato__canais {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.canal {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--cream-card);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-width: 0;
}

.canal:hover {
  border-color: rgba(244, 123, 32, 0.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.canal__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--navy-900);
  color: var(--cream);
}

.canal__icon svg {
  width: 21px;
  height: 21px;
}

.canal:first-child .canal__icon {
  background: rgba(37, 211, 102, 0.16);
  color: #17a74d;
}

.canal strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.canal em {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.unidade {
  background: var(--cream-card);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  padding: 22px 22px 0;
  overflow: hidden;
  margin-bottom: 18px;
}

.unidade h3 {
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}

.unidade>p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 18px;
}

.unidade__mapa {
  margin-inline: -22px;
  aspect-ratio: 16 / 7;
  filter: grayscale(0.15);
}

.unidade__mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  color: var(--on-navy);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 52px);
  padding-block: clamp(52px, 7vw, 80px);
}

.footer__brand img {
  width: 54px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer__name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(244, 227, 210, 0.18);
  color: var(--on-navy);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.footer__social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 19px;
  height: 19px;
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.footer__col ul {
  display: grid;
  gap: 11px;
}

.footer__col li {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
}

.footer__col a {
  color: var(--on-navy);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--cream);
}

.footer__bottom {
  border-top: 1px solid rgba(244, 227, 210, 0.1);
  padding-block: 22px;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(244, 227, 210, 0.5);
}

.footer__legal a {
  color: rgba(244, 227, 210, 0.6);
}

.footer__legal a:hover {
  color: var(--cream);
}

/* ---------- WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.08);
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* ---------- Animações de entrada ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .area-card__panel {
    transition: none;
  }

  .hero__media,
  .cta-banner__media {
    transform: none;
  }
}

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .areas__grid {
    grid-template-columns: 1fr;
  }

  .quem-somos__intro {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .quem-somos__media {
    max-width: 460px;
  }

  .quem-somos__media img {
    aspect-ratio: 16 / 11;
    object-position: 62% 30%;
  }

  .contato__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .header__hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream-page);
    border-bottom: 1px solid var(--cream-line);
    box-shadow: var(--shadow-lg);
    padding: 14px 26px 22px;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.28s, opacity 0.28s, visibility 0.28s;
  }

  .header__nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 16px;
  }

  .header__menu a {
    display: block;
    padding: 14px 4px;
    font-size: 1rem;
    border-bottom: 1px solid var(--cream-line);
  }

  .header__menu a::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 20px;
  }

  .header__brand {
    padding: 24px 20px;
    border-radius: 0 0 14px 14px;
    border: 0px;
    position: relative;
    z-index: 13;
  }

  .header__brand img {
    height: 40px;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contato__canais {
    grid-template-columns: 1fr;
  }

  .socios__grid {
    grid-template-columns: 1fr;
  }

  .socio {
    display: grid;
    grid-template-columns: 118px 1fr;
  }

  .socio__photo {
    aspect-ratio: auto;
    height: 100%;
    min-height: 150px;
  }

  .quem-somos__media-badge {
    right: 12px;
    padding: 14px 18px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}