/* =========================================================
   César Tomiazi Advocacia — Stylesheet
   Direção: editorial refinado, sóbrio, mobile-first
   ========================================================= */

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  /* paleta */
  --bg:           #FAFAF7;
  --bg-elev:     #FFFFFF;
  --ink:         #1A1A1A;
  --ink-soft:    #4A4A4A;
  --ink-mute:    #6B6B6B;
  --line:        #E8E4DB;
  --line-soft:   #F0EDE5;

  --navy:        #0F2A47;
  --navy-deep:   #0A1E33;
  --navy-soft:   #1B3A5C;

  --gold:        #C9A961;
  --gold-soft:   #D9BE7C;
  --gold-mute:   #EBDDB8;

  --whatsapp:    #25D366;
  --whatsapp-d:  #1DA851;

  /* tipografia */
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* espaços e raios */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* sombras */
  --sh-sm: 0 1px 2px rgba(15, 42, 71, .06);
  --sh-md: 0 8px 24px -8px rgba(15, 42, 71, .12);
  --sh-lg: 0 24px 48px -16px rgba(15, 42, 71, .18);

  /* layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --header-h: 76px;

  /* easing */
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

::selection { background: var(--navy); color: #fff; }

/* ---------- Tipografia utilitária ---------- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-lead {
  color: var(--ink-mute);
  max-width: 60ch;
  font-size: 1.0625rem;
}

.section-head { margin-bottom: 3rem; max-width: 64ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }

/* ---------- Brand ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--navy);
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--bg);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  letter-spacing: .02em;
  border-radius: var(--r-sm);
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(201, 169, 97, .35);
  border-radius: 4px;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 500;
}
.brand__sub {
  font-size: .6875rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 2px;
}
.brand--light { color: var(--bg); }
.brand--light .brand__mark { background: var(--gold); color: var(--navy-deep); }
.brand--light .brand__sub { color: rgba(250, 250, 247, .6); }

/* ---------- Botões ---------- */
.btn {
  --bg: transparent;
  --fg: var(--navy);
  --bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  font-weight: 500;
  font-size: .9375rem;
  letter-spacing: .01em;
  border: 1px solid var(--bd);
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  --bg: var(--navy);
  --fg: #fff;
  --bd: var(--navy);
  box-shadow: var(--sh-sm);
}
.btn--primary:hover { --bg: var(--navy-deep); --bd: var(--navy-deep); box-shadow: var(--sh-md); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--navy);
  --bd: var(--navy);
}
.btn--ghost:hover { --bg: var(--navy); --fg: #fff; }

.btn--whatsapp {
  --bg: var(--whatsapp);
  --fg: #fff;
  --bd: var(--whatsapp);
}
.btn--whatsapp:hover { --bg: var(--whatsapp-d); --bd: var(--whatsapp-d); }

.btn--lg { padding: .95rem 1.5rem; font-size: 1rem; }
.btn--sm { padding: .55rem 1rem; font-size: .875rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, .8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.header.is-scrolled {
  background: rgba(250, 250, 247, .95);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}
.nav { flex: 1; display: flex; justify-content: center; }
.nav__list { display: flex; gap: 2rem; }
.nav__link {
  position: relative;
  font-size: .9375rem;
  color: var(--ink-soft);
  padding: .25rem 0;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease), left .3s var(--ease);
}
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after { width: 100%; left: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vh, 5rem) 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 85% 10%, rgba(201, 169, 97, .10), transparent 60%),
    radial-gradient(600px 400px at 5% 90%, rgba(15, 42, 71, .06), transparent 60%),
    var(--bg);
  z-index: -1;
}
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 42, 71, .04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: .4rem .85rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 1.5rem;
  animation: rise .8s var(--ease) both;
}
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, .15);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  animation: rise .9s .1s var(--ease) both;
}
.hero__title em { font-style: italic; color: var(--navy-soft); }
.hero__highlight {
  position: relative;
  white-space: nowrap;
  color: var(--gold);
  font-style: italic;
}
.hero__highlight::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .04em;
  height: .14em;
  background: linear-gradient(90deg, var(--gold-mute), var(--gold), var(--gold-mute));
  opacity: .35;
  border-radius: 2px;
}

.hero__lead {
  color: var(--ink-mute);
  font-size: 1.125rem;
  max-width: 52ch;
  margin-bottom: 2rem;
  animation: rise .9s .2s var(--ease) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 3rem;
  animation: rise .9s .3s var(--ease) both;
}

.hero__stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  animation: rise .9s .4s var(--ease) both;
}
.hero__stats dt {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.hero__stats dd {
  font-size: .8125rem;
  color: var(--ink-mute);
  letter-spacing: .04em;
  margin-top: .35rem;
  text-transform: uppercase;
}

/* visual lateral do hero */
.hero__visual {
  position: relative;
  animation: rise 1s .25s var(--ease) both;
}
.hero__card {
  position: relative;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  isolation: isolate;
}
.hero__card::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: .25;
  z-index: -1;
}
.hero__card-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  opacity: .04;
  z-index: -1;
  mix-blend-mode: overlay;
}
.hero__card-label {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  padding: .3rem .75rem;
  border: 1px solid rgba(201, 169, 97, .4);
  border-radius: 999px;
  margin-bottom: 1.75rem;
}
.hero__card-quote {
  font-family: var(--serif);
  font-size: 1.375rem;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -.01em;
  position: relative;
  padding-left: 1rem;
}
.quote-mark {
  position: absolute;
  left: -.25rem; top: -1.5rem;
  font-size: 4rem;
  color: var(--gold);
  font-family: var(--serif);
  line-height: 1;
  opacity: .7;
}
.hero__card-foot {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.hero__card-rule {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero__card-name {
  font-size: .875rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .85);
}

.hero__badge {
  position: absolute;
  bottom: -1.5rem; left: -1rem;
  display: flex; align-items: center; gap: .65rem;
  background: var(--bg-elev);
  color: var(--navy);
  padding: .85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  font-size: .875rem;
  font-weight: 500;
}
.hero__badge svg { color: var(--gold); }

.hero__scroll {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--ink-mute);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero__scroll span {
  width: 1px;
  height: 32px;
  background: var(--ink-mute);
  position: relative;
  overflow: hidden;
}
.hero__scroll span::after {
  content: "";
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollDown 2s var(--ease) infinite;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ---------- Áreas de Atuação ---------- */
.areas {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.areas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.area-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.area-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--sh-md);
}
.area-card__icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--navy);
  margin-bottom: 1.25rem;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.area-card:hover .area-card__icon {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.area-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.area-card__desc {
  color: var(--ink-mute);
  font-size: .9375rem;
  margin-bottom: 1.25rem;
}
.area-card__list {
  margin-bottom: 1.25rem;
  display: grid;
  gap: .35rem;
}
.area-card__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .875rem;
  color: var(--ink-soft);
}
.area-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .6em;
  width: 6px; height: 1px;
  background: var(--gold);
}
.area-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), gap .25s var(--ease);
}
.area-card__link:hover {
  border-bottom-color: var(--gold);
  gap: .65rem;
}

.area-card--featured {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-color: var(--navy);
  grid-column: span 1;
}
.area-card--featured h3 { color: #fff; }
.area-card--featured .area-card__desc { color: rgba(255, 255, 255, .75); }
.area-card--featured .area-card__list li { color: rgba(255, 255, 255, .85); }
.area-card--featured .area-card__icon {
  background: rgba(201, 169, 97, .12);
  border-color: rgba(201, 169, 97, .3);
  color: var(--gold);
}
.area-card--featured:hover .area-card__icon {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.area-card--featured .area-card__link {
  color: var(--gold);
}
.area-card__badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  padding: .25rem .65rem;
  border-radius: 999px;
  font-weight: 600;
}

/* ---------- Destaques & vídeos ---------- */
.highlights {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--line-soft) 100%);
  border-top: 1px solid var(--line);
}
.highlights__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
.highlights__main {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.highlights__main video {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: var(--navy-deep);
}
.highlights__meta { padding: 1.5rem 1.75rem; }
.highlights__meta h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: .5rem;
}
.highlights__meta p { color: var(--ink-mute); font-size: .9375rem; }

.highlights__side {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.video-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1rem;
  cursor: pointer;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.video-card:hover { transform: translateX(4px); border-color: var(--gold); }
.video-card__thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold);
}
.video-card__tag {
  display: inline-block;
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.video-card__body h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.3;
}

/* Instagram grid */
.instagram { padding-top: 1rem; }
.instagram__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.instagram__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--navy);
}
.instagram__title a { color: var(--gold); }
.instagram__title a:hover { text-decoration: underline; }

.instagram__grid {
  width: 100%;
  border-radius: var(--r-sm);
  overflow: hidden;
}

/* ---------- Sobre ---------- */
.about {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about__visual { position: relative; }
.about__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4 / 5;
  box-shadow: var(--sh-lg);
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.9);
}
.about__photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 42, 71, .25) 100%);
}
.about__visual::before {
  content: "";
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  border-radius: var(--r-lg);
  z-index: -1;
}
.about__caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  padding: .85rem 1.25rem;
  border-radius: var(--r-sm);
  display: flex;
  flex-direction: column;
}
.about__caption span {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
}
.about__caption small {
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.about__content > p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}
.about__values {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
}
.about__values li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about__values-mark {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold-mute);
  position: relative;
}
.about__values-mark::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 11px; height: 6px;
  border-bottom: 2px solid var(--navy);
  border-right: 2px solid var(--navy);
  margin-top: -2px;
}
.about__values strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--navy);
  margin-bottom: .15rem;
}
.about__values small { color: var(--ink-mute); font-size: .9375rem; }

/* ---------- Contato ---------- */
.contact {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--line-soft) 100%);
  border-top: 1px solid var(--line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact__form {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  box-shadow: var(--sh-sm);
}
.contact__hp { display: none; }

.field { margin-bottom: 1.25rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}
.field label {
  display: block;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: .4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  font-size: .9375rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--bg-elev);
  box-shadow: 0 0 0 3px rgba(15, 42, 71, .08);
}

.contact__feedback {
  margin-top: 1rem;
  padding: .85rem 1rem;
  background: rgba(37, 211, 102, .1);
  border: 1px solid rgba(37, 211, 102, .3);
  border-radius: var(--r-sm);
  color: var(--whatsapp-d);
  font-size: .875rem;
}

.contact__info h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.info-list { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.info-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.info-list__icon {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--navy);
  flex-shrink: 0;
}
.info-list strong {
  display: block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: .15rem;
  font-weight: 500;
}
.info-list a, .info-list span:not(.info-list__icon) {
  color: var(--navy);
  font-weight: 500;
  font-size: .9375rem;
}
.info-list a:hover { color: var(--gold); }

.contact__map {
  margin-top: 1.5rem;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 220px;
}
.contact__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(.3) contrast(1.05);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(250, 250, 247, .8);
  padding: 4rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand p {
  margin-top: 1.25rem;
  font-size: .9375rem;
  max-width: 32ch;
  color: rgba(250, 250, 247, .6);
}
.footer h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--bg);
  margin-bottom: 1rem;
}
.footer ul { display: grid; gap: .65rem; }
.footer li, .footer li a {
  font-size: .9375rem;
  color: rgba(250, 250, 247, .65);
  transition: color .2s var(--ease);
}
.footer li a:hover { color: var(--gold); }

.footer__social {
  display: flex; gap: .75rem;
  margin-top: 1.25rem;
}
.footer__social a {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(250, 250, 247, .15);
  border-radius: 50%;
  color: rgba(250, 250, 247, .8);
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.footer__social a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
}

.footer__bar {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 250, 247, .1);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: .8125rem;
  color: rgba(250, 250, 247, .5);
  flex-wrap: wrap;
}
.footer__disclaimer { max-width: 60ch; text-align: right; }

/* ---------- WhatsApp flutuante ---------- */
.floating-wpp {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .55), 0 0 0 0 rgba(37, 211, 102, .5);
  animation: pulse 2.4s ease-in-out infinite;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.floating-wpp:hover {
  background: var(--whatsapp-d);
  transform: scale(1.08);
  animation: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .55), 0 0 0 0 rgba(37, 211, 102, .5); }
  50%      { box-shadow: 0 12px 28px -8px rgba(37, 211, 102, .55), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */

/* tablet */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero__badge { right: 1rem; left: auto; }
  .highlights__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* mobile */
@media (max-width: 720px) {
  :root { --header-h: 64px; }

  .hamburger { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    padding-top: var(--header-h);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .nav__link { font-size: 1.5rem; font-family: var(--serif); }

  .header__cta { display: none; }

  .hero { min-height: auto; padding-top: 3rem; padding-bottom: 4rem; }
  .hero__title { font-size: clamp(2.25rem, 9vw, 3rem); }
  .hero__lead { font-size: 1rem; }
  .hero__stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero__stats dt { font-size: 1.5rem; }
  .hero__scroll { display: none; }
  .hero__badge { display: none; }
  .hero__card { padding: 2rem 1.5rem; }
  .hero__card-quote { font-size: 1.125rem; }

  .area-card { padding: 1.75rem 1.5rem; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-row .field { margin-bottom: 1.25rem; }
  .contact__form { padding: 1.75rem 1.5rem; }

  .instagram__head { flex-direction: column; align-items: flex-start; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bar { flex-direction: column; }
  .footer__disclaimer { text-align: left; }

  .floating-wpp { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
  .floating-wpp svg { width: 22px; height: 22px; }
}

/* preferências de movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
