/* ============================================================
   PS GESTÃO & CAPITAL — Folha de estilos compartilhada
   ============================================================
   Convenções:
   - Mobile-first. Breakpoints em min-width.
   - Variáveis CSS centralizam paleta e tipografia.
   - Travessão longo (—) é o caractere padrão de pausa.
   ============================================================ */

/* ---------- Variáveis ---------- */
:root {
  /* Paleta oficial — não alterar */
  --espresso: #2B1810;
  --marrom-escuro: #1F1209;
  --off-white: #F2EEE3;
  --dourado: #C9A664;
  --dourado-opaco: #8E6D3E;
  --texto-secundario: #6E5B47;

  /* Tipografia */
  --serif-display: "Cormorant Garamond", Georgia, serif;
  --serif-body: "Lora", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Escala tipográfica — mobile-first */
  --fs-hero: clamp(2.4rem, 7vw, 4.8rem);
  --fs-h1: clamp(2rem, 5.2vw, 3.4rem);
  --fs-h2: clamp(1.6rem, 3.6vw, 2.2rem);
  --fs-h3: clamp(1.2rem, 2.4vw, 1.5rem);
  --fs-body: 1.05rem;
  --fs-small: 0.875rem;
  --fs-number: clamp(3rem, 6vw, 4.5rem);

  /* Espaçamentos */
  --space-xs: 0.5rem;
  --space-s: 1rem;
  --space-m: 2rem;
  --space-l: 4rem;
  --space-xl: 6rem;
  --space-xxl: 9rem;

  /* Larguras */
  --max-width: 1240px;
  --reading-width: 720px;

  /* ============================================================
     Sistema de movimento — durações + easings refinados
     Inspirado em: Apple, Aesop, Linear, Stripe, Vercel
     ============================================================ */

  /* Durações */
  --t-instant: 120ms;
  --t-fast: 220ms;
  --t-med: 420ms;
  --t-slow: 700ms;
  --t-extra-slow: 1100ms;

  /* Easings */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);              /* default geral */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);         /* reveal / entrada elegante */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);        /* hover / saída suave */
  --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);    /* transições simétricas */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);       /* "saltinho" sutil (botões) */
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--serif-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--marrom-escuro);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--serif-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0 0 1.2em; }

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

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 3rem; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(43, 24, 16, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 166, 100, 0.12);
  transition: transform 420ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .header-inner { padding: 1.4rem 3rem; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--off-white);
}

.brand-mark {
  height: 48px;
  width: auto;
  display: inline-flex;
  align-items: center;
}

.brand-mark img {
  height: 100%;
  width: auto;
  display: block;
}

/* Texto "PS Gestão & Capital" não é mais necessário ao lado da logo completa */
.brand-text {
  display: none;
}

/* Navegação desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.2rem;
}

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--off-white);
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--t-fast) var(--ease);
}

.nav-desktop a:hover { color: var(--dourado); }

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--dourado);
  transition: width var(--t-fast) var(--ease);
}

.nav-desktop a:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown > button {
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--off-white);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0;
}

.nav-dropdown > button::after {
  content: "›";
  font-size: 1rem;
  transform: rotate(90deg);
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}

.nav-dropdown:hover > button::after,
.nav-dropdown:focus-within > button::after { transform: rotate(270deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--espresso);
  border: 1px solid rgba(201, 166, 100, 0.18);
  padding: 0.8rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-fast) var(--ease), visibility var(--t-fast) var(--ease);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  color: var(--off-white);
}

.dropdown-menu a:hover { background: rgba(201, 166, 100, 0.08); color: var(--dourado); }
.dropdown-menu a::after { display: none; }

/* Botão "Fale com a gente" no header */
.header-cta {
  display: none;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dourado);
  border: 1px solid var(--dourado);
  padding: 0.65rem 1.3rem;
  transition: all var(--t-fast) var(--ease);
}

@media (min-width: 960px) {
  .header-cta { display: inline-block; }
}

.header-cta:hover {
  background: var(--dourado);
  color: var(--espresso);
}

/* Toggle mobile */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  color: var(--off-white);
}

@media (min-width: 960px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--off-white);
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}

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

/* Menu mobile */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  padding: 5.5rem 1.5rem 2.5rem;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--t-slow) var(--ease), visibility 0s linear var(--t-slow);
  z-index: 110;
  overflow-y: auto;
}

.nav-mobile.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform var(--t-slow) var(--ease), visibility 0s;
}

.nav-mobile a, .nav-mobile-section-title {
  display: block;
  font-family: var(--serif-display);
  font-size: 1.6rem;
  color: var(--off-white);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201, 166, 100, 0.1);
}

.nav-mobile-section-title {
  font-style: italic;
  color: var(--dourado);
  font-size: 1.1rem;
  margin-top: 1.2rem;
  border-bottom: none;
  padding-bottom: 0.3rem;
}

.nav-mobile .submenu a {
  font-size: 1.1rem;
  font-family: var(--serif-body);
  padding-left: 1rem;
}

@media (min-width: 960px) {
  .nav-mobile { display: none; }
}

/* ============================================================
   SEÇÕES — utilitários
   ============================================================ */
.section {
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-xxl) 0; }
}

.section--espresso {
  background: var(--espresso);
  color: var(--off-white);
}

.section--espresso h1, .section--espresso h2, .section--espresso h3 {
  color: var(--off-white);
}

.section--offwhite {
  background: var(--off-white);
  color: var(--marrom-escuro);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--serif-display);
  font-size: var(--fs-h1);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: var(--fs-h3);
  color: var(--dourado);
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.section--offwhite .section-subtitle { color: var(--texto-secundario); }

.rule {
  width: 64px;
  height: 1px;
  background: var(--dourado);
  border: 0;
  margin: 0 0 2rem;
}

.rule--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO — Home
   ============================================================ */
.hero {
  background: var(--espresso);
  color: var(--off-white);
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-l) 0;
}

/* Textura sutil de fundo — pontos pequenos quase imperceptíveis */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 166, 100, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 166, 100, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero-title {
  font-family: var(--serif-display);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 1.8rem;
  color: var(--off-white);
  animation: fadeUp 1.1s var(--ease) 0.1s both;
}

.hero-subtitle {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 400;
  color: var(--dourado);
  margin-bottom: 3rem;
  max-width: 640px;
  line-height: 1.4;
  animation: fadeUp 1.1s var(--ease) 0.35s both;
}

.hero-text {
  font-family: var(--serif-body);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 560px;
  color: var(--off-white);
  opacity: 0.92;
  animation: fadeUp 1.1s var(--ease) 0.6s both;
}

.hero-text p + p { margin-top: 1.2em; }

/* Monograma discreto no canto do Hero */
.hero-mark {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  width: 80px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  animation: fadeUp 1.1s var(--ease) 1s both;
}

.hero-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {
  .hero-mark { display: none; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CARDS — Áreas de atuação
   ============================================================ */
.areas-intro {
  text-align: center;
  max-width: var(--reading-width);
  margin: 0 auto var(--space-l);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem 6rem;
  }
}

.card {
  position: relative;
  padding-top: 2rem;
  border-top: 1px solid rgba(142, 109, 62, 0.35);
}

.card-number {
  font-family: var(--serif-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  color: var(--dourado);
  display: block;
  margin-bottom: 2rem;
  font-feature-settings: "lnum";
  letter-spacing: 0.01em;
}

.card-title {
  font-family: var(--serif-display);
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  font-weight: 500;
  color: var(--marrom-escuro);
  margin-bottom: 1.4rem;
  line-height: 1.25;
}

.card-body {
  color: var(--marrom-escuro);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.card-body p + p { margin-top: 1em; }

.card-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dourado);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.card-link:hover {
  border-bottom-color: var(--dourado);
  color: var(--dourado-opaco);
}

.card-link::after {
  content: "→";
  transition: transform var(--t-fast) var(--ease);
}

.card-link:hover::after { transform: translateX(4px); }

/* ============================================================
   BLOCO EQUIPE — placeholder visual
   ============================================================ */
.team {
  position: relative;
  background: var(--espresso);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: var(--space-xl) 1.5rem;
}

/* Imagem da equipe ao fundo com overlay escuro de 55% para legibilidade */
.team::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(43, 24, 16, 0.55), rgba(43, 24, 16, 0.55)),
    url('../assets/equipe.jpg') center/cover no-repeat;
  z-index: 0;
}

.team-content {
  position: relative;
  z-index: 1;
}

.team-title {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: 0.005em;
}

.team-divider {
  width: 1px;
  height: 60px;
  background: var(--dourado);
  margin: 2rem auto 0;
}

/* ============================================================
   BLOCO DE CONTATO
   ============================================================ */
.contact {
  background: var(--espresso);
  color: var(--off-white);
  padding: var(--space-xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.contact-pitch h2 {
  font-family: var(--serif-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.contact-pitch p {
  font-family: var(--serif-body);
  font-size: 1.1rem;
  color: var(--off-white);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

/* Botão primário dourado */
.btn-primary {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
  background: var(--dourado);
  color: var(--espresso);
  padding: 1.1rem 2.2rem;
  border: 1px solid var(--dourado);
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--dourado);
}

.btn-ghost {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
  background: transparent;
  color: var(--dourado);
  padding: 1.1rem 2.2rem;
  border: 1px solid var(--dourado);
  transition: all var(--t-fast) var(--ease);
}

.btn-ghost:hover {
  background: var(--dourado);
  color: var(--espresso);
}

/* Formulário */
.contact-form {
  display: grid;
  gap: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 500px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-field { display: flex; flex-direction: column; }

.form-field label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.6rem;
}

.form-field input,
.form-field textarea {
  font-family: var(--serif-body);
  font-size: 1rem;
  color: var(--off-white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 166, 100, 0.35);
  padding: 0.6rem 0;
  transition: border-color var(--t-fast) var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--dourado);
}

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

.form-success {
  display: none;
  font-family: var(--serif-display);
  font-style: italic;
  color: var(--dourado);
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(201, 166, 100, 0.2);
}

.form-success.is-visible { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--espresso);
  color: var(--off-white);
  padding: var(--space-l) 0 var(--space-m);
  border-top: 1px solid rgba(201, 166, 100, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr; gap: 4rem; }
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.2rem;
}

.footer-brand-mark {
  height: 60px;
  width: auto;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.footer-brand-mark img {
  height: 100%;
  width: auto;
  display: block;
}

.footer-col p, .footer-col li {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--off-white);
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 166, 100, 0.2);
  text-align: center;
}

@media (min-width: 700px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 166, 100, 0.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--off-white);
  transition: all var(--t-fast) var(--ease);
}

.footer-social a:hover {
  border-color: var(--dourado);
  color: var(--dourado);
}

.footer-copy {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--off-white);
  opacity: 0.6;
}

/* ============================================================
   ASSINATURA FINAL — brasão silencioso ao fim das páginas
   ============================================================ */
.page-mark {
  text-align: center;
  padding: var(--space-m) 0;
  background: var(--espresso);
}

.page-mark span {
  display: inline-block;
  width: 36px;
  height: 50px;
  opacity: 0.55;
}

.page-mark span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ============================================================
   Animações de entrada em scroll (reveal) — refinadas
   - Curva ease-out-expo (entrada elegante, desacelera no fim)
   - Pequeno blur ao entrar (sensação de "focar")
   - Stagger automático via --i: variável CSS aplicada pelo JS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity var(--t-extra-slow) var(--ease-out-expo),
    transform var(--t-extra-slow) var(--ease-out-expo),
    filter var(--t-slow) var(--ease-out-expo);
  transition-delay: calc(var(--i, 0) * 80ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Variantes — para usar conforme a vontade.
   .reveal--slide-l = vem da esquerda
   .reveal--slide-r = vem da direita
   .reveal--scale   = entra com pequena ampliação (bom pra imagens)
   .reveal--fade    = só fade, sem deslocamento (bom pra fotos/heroes) */
.reveal--slide-l {
  transform: translateX(-32px);
}
.reveal--slide-l.is-visible {
  transform: translateX(0);
}
.reveal--slide-r {
  transform: translateX(32px);
}
.reveal--slide-r.is-visible {
  transform: translateX(0);
}
.reveal--scale {
  transform: scale(0.96);
}
.reveal--scale.is-visible {
  transform: scale(1);
}
.reveal--fade {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ============================================================
   Acessibilidade — foco visível
   ============================================================ */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--dourado);
  outline-offset: 3px;
}

/* Pular para o conteúdo */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--dourado);
  color: var(--espresso);
  padding: 0.6rem 1rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  z-index: 999;
}

.skip-link:focus { left: 1rem; }

/* ============================================================
   PÁGINAS DE SERVIÇO — page hero, steps, listas
   ============================================================ */

.container--narrow { max-width: 880px; }
.section--no-top { padding-top: 0; }

/* PAGE HERO (páginas internas) */
.page-hero {
  background: var(--espresso);
  color: var(--off-white);
  padding: var(--space-xl) 0 var(--space-l);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(201, 166, 100, 0.05) 0%, transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(201, 166, 100, 0.03) 0%, transparent 55%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .page-hero { padding: calc(var(--space-xxl) - 1rem) 0 var(--space-xl); }
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.page-hero-title {
  font-family: var(--serif-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 1rem 0 1.8rem;
  color: var(--off-white);
  letter-spacing: -0.01em;
  animation: fadeUp 1.1s var(--ease) 0.15s both;
}

.page-hero-title em {
  font-style: italic;
  color: var(--dourado);
  font-weight: 400;
}

.page-hero-subtitle {
  font-family: var(--serif-body);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.7;
  max-width: 640px;
  opacity: 0.92;
  animation: fadeUp 1.1s var(--ease) 0.4s both;
}

/* Lead paragraph */
.lead {
  font-family: var(--serif-body);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.7;
  color: var(--marrom-escuro);
  margin-bottom: 2.5rem;
}

.section--espresso .lead { color: var(--off-white); opacity: 0.92; }

.prose p {
  font-family: var(--serif-body);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.75;
  margin-bottom: 1.4em;
}

.section--espresso .prose p {
  color: var(--off-white);
  opacity: 0.92;
}

.action-row {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.action-note {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--texto-secundario);
  margin: 0;
}

.btn-dark {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-block;
  background: var(--espresso);
  color: var(--off-white);
  padding: 1.1rem 2.2rem;
  border: 1px solid var(--espresso);
  transition: all var(--t-fast) var(--ease);
}

.btn-dark:hover {
  background: transparent;
  color: var(--espresso);
}

/* STEPS GRID */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: var(--space-l);
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 4rem 5rem; }
}

.step {
  position: relative;
  padding-top: 1rem;
  border-top: 1px solid rgba(142, 109, 62, 0.3);
}

.section--espresso .step { border-top-color: rgba(201, 166, 100, 0.3); }

.step-number {
  font-family: var(--serif-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--dourado);
  display: block;
  margin-bottom: 1.2rem;
}

.step-title {
  font-family: var(--serif-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--marrom-escuro);
  line-height: 1.3;
}

.section--espresso .step-title { color: var(--off-white); }

.step p { font-size: 1rem; line-height: 1.7; }
.section--espresso .step p { opacity: 0.88; }

/* DEVIATIONS LIST */
.deviations-list {
  list-style: none;
  padding: 0;
  margin: var(--space-l) 0 0;
  display: flex;
  flex-direction: column;
}

.deviations-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(142, 109, 62, 0.2);
}

@media (min-width: 768px) {
  .deviations-list li {
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    padding: 2.5rem 0;
  }
}

.deviations-list li:last-child { border-bottom: none; }

.deviation-number {
  font-family: var(--serif-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--dourado);
}

.deviations-list h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--marrom-escuro);
  line-height: 1.3;
}

.deviations-list p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--marrom-escuro);
  margin: 0;
}

.section--espresso .deviations-list h3 { color: var(--off-white); }
.section--espresso .deviations-list p { color: var(--off-white); opacity: 0.88; }
.section--espresso .deviations-list li { border-bottom-color: rgba(201, 166, 100, 0.18); }

/* CLOSING */
.closing { text-align: center; }

.closing-title {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.closing-subtitle {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--dourado);
  max-width: 640px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

.closing .btn-primary { margin-top: 0.5rem; }

/* PRACTICE LIST (Gestão Empresarial) */
.practice-list {
  list-style: none;
  padding: 0;
  margin: var(--space-l) 0 0;
}

.practice-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(201, 166, 100, 0.18);
}

@media (min-width: 768px) {
  .practice-list li {
    grid-template-columns: 140px 1fr;
    gap: 3rem;
    padding: 2.8rem 0;
  }
}

.practice-list li:first-child { border-top: 1px solid rgba(201, 166, 100, 0.18); }

.practice-number {
  font-family: var(--serif-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--dourado);
}

.practice-list h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  margin-bottom: 0.9rem;
  color: var(--marrom-escuro);
  line-height: 1.3;
}

.practice-list p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--texto-secundario);
  margin: 0;
}

/* Em fundo espresso, cores invertem */
.section--espresso .practice-list h3 {
  color: var(--off-white);
}

.section--espresso .practice-list p {
  color: var(--off-white);
  opacity: 0.88;
}

/* EDUCATIONAL */
.edu-quote {
  text-align: center;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--dourado);
  max-width: 780px;
  margin: var(--space-l) auto 0;
  line-height: 1.5;
  position: relative;
  padding: 2rem 0;
}

.edu-quote::before,
.edu-quote::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--dourado);
  margin: 0 auto;
  opacity: 0.6;
}

.edu-quote::before { margin-bottom: 2rem; }
.edu-quote::after { margin-top: 2rem; }

.subsection-title {
  font-family: var(--serif-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  margin-top: var(--space-l);
}

.subsection-title:first-child { margin-top: 0; }

/* COMPLIANCE */
.documents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--space-l);
}

@media (min-width: 700px) {
  .documents-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.document-card {
  background: var(--off-white);
  border: 1px solid rgba(142, 109, 62, 0.3);
  padding: 2.4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  position: relative;
}

/* Marca discreta de "documento" no canto superior direito */
.document-card::before {
  content: "PDF";
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--dourado-opaco);
  opacity: 0.7;
}

.document-card:hover {
  border-color: var(--dourado);
  transform: translateY(-2px);
}

.document-card h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 500;
  color: var(--marrom-escuro);
  margin-bottom: 1rem;
  line-height: 1.3;
  padding-right: 2.5rem;
}

.document-card p {
  font-family: var(--serif-body);
  font-size: 0.95rem;
  color: var(--texto-secundario);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.document-card a {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dourado);
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  padding-bottom: 0.2rem;
  transition: border-color var(--t-fast) var(--ease);
}

.document-card a:hover { border-bottom-color: var(--dourado); }

/* ============================================================
   HOME — Blocos novos
   ============================================================ */

/* Hero declaração de posicionamento — substitui texto institucional */
.hero-statement {
  display: block;
  margin-top: 1.5rem;
  max-width: 800px;
}

/* Linha-âncora abaixo do título principal — peça de marca */
.hero-anchor {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--dourado);
  line-height: 1.4;
  margin: 1.2rem 0 0;
  padding-bottom: 1.2rem;
  position: relative;
}

.hero-anchor::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 1px;
  background: var(--dourado-opaco);
}

.hero-statement-line {
  display: block;
  margin-bottom: 0.4em;
  font-family: var(--serif-display);
  font-weight: 400;
}

.hero-statement-line--large {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--off-white);
  line-height: 1.2;
  font-style: italic;
}

.hero-statement-line--accent {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--dourado);
  line-height: 1.35;
  font-style: italic;
}

.hero-statement-line--muted {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--off-white);
  opacity: 0.75;
  line-height: 1.5;
  font-family: var(--serif-body);
  font-style: normal;
  margin-top: 1.2em;
  max-width: 640px;
}

/* Diferenciais estruturais — 3 colunas numeradas */
.differentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 3rem 0 0;
}

@media (min-width: 768px) {
  .differentials {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
  }
}

.differential {
  border-top: 1px solid var(--dourado-opaco);
  padding-top: 1.8rem;
}

.differential-number {
  font-family: var(--serif-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--dourado);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.differential h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 500;
  color: var(--marrom-escuro);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.differential p {
  font-family: var(--serif-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--texto-secundario);
  margin: 0;
}

/* Serviços narrativos — lista vertical em vez de grade 2×2 */
.services-narrative {
  list-style: none;
  padding: 0;
  margin: 4rem 0 0;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.services-narrative > li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.6rem;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid rgba(142, 109, 62, 0.22);
  position: relative;
  transition:
    background-color var(--t-med) var(--ease-out-quart),
    padding-left var(--t-med) var(--ease-out-quart);
}

.services-narrative > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 60%;
  background: var(--dourado);
  transition: transform var(--t-med) var(--ease-out-expo);
  transform-origin: center;
}

.services-narrative > li:hover {
  background-color: rgba(201, 166, 100, 0.04);
  padding-left: 2rem;
}

.services-narrative > li:hover::before {
  transform: translateY(-50%) scaleY(1);
}

.services-narrative > li:first-child {
  border-top: 1px solid rgba(142, 109, 62, 0.22);
}

@media (min-width: 768px) {
  .services-narrative > li {
    grid-template-columns: 110px 1fr;
    gap: 3.2rem;
    padding: 3.6rem 1.5rem;
  }
}

.services-narrative .service-num {
  font-family: var(--serif-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--dourado-opaco);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color var(--t-med) var(--ease-out-quart);
}

.services-narrative > li:hover .service-num {
  color: var(--dourado);
}

.services-narrative h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-weight: 500;
  color: var(--espresso);
  margin: 0 0 0.8rem;
  line-height: 1.25;
  transition: color var(--t-med) var(--ease-out-quart);
}

.services-narrative > li:hover h3 {
  color: var(--dourado-opaco);
}

.services-narrative .service-essence {
  font-family: var(--serif-display);
  font-style: italic;
  color: var(--dourado-opaco);
  font-size: 1.1rem;
  margin: 0 0 1.1rem;
  line-height: 1.55;
}

.services-narrative p {
  font-family: var(--serif-body);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--texto-secundario);
  margin: 0 0 1.2rem;
}

.services-narrative .service-link {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.25rem;
  display: inline-block;
  transition:
    border-color var(--t-med) var(--ease-out-quart),
    color var(--t-med) var(--ease-out-quart),
    letter-spacing var(--t-med) var(--ease-out-quart);
}

.services-narrative .service-link:hover {
  border-bottom-color: var(--dourado);
  color: var(--dourado-opaco);
  letter-spacing: 0.22em;
}

/* Pra quem fazemos isso — duas colunas espelhadas (afirma/nega) */
.fit-test {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 3rem 0 0;
}

@media (min-width: 768px) {
  .fit-test {
    grid-template-columns: 1fr 1px 1fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.fit-side {
  padding: 0.5rem 0;
}

.fit-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1rem;
  display: block;
}

.fit-side h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.5rem, 2.6vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  color: var(--off-white);
  margin-bottom: 1.3rem;
  line-height: 1.3;
}

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

.fit-side li {
  font-family: var(--serif-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--off-white);
  opacity: 0.88;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.4rem;
}

.fit-side li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--dourado);
}

.fit-divider {
  background: var(--dourado-opaco);
  opacity: 0.4;
  width: 60px;
  height: 1px;
  margin: 0 auto;
  align-self: center;
}

@media (min-width: 768px) {
  .fit-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
    margin: 1rem 0;
  }
}

/* Fechamento — CTA da home */
.home-closing {
  text-align: center;
}

.home-closing-anchor {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dourado);
  line-height: 1.4;
  margin: 1.5rem 0 2.5rem;
  display: block;
}

.home-closing-ctas {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  margin-top: 2.5rem;
}

@media (min-width: 600px) {
  .home-closing-ctas {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.home-closing .btn-secondary {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--off-white);
  border-bottom: 1px solid var(--dourado-opaco);
  padding-bottom: 0.3rem;
  transition: border-color var(--t-fast) var(--ease);
}

.home-closing .btn-secondary:hover {
  border-bottom-color: var(--dourado);
}

/* ============================================================
   BLOCO DOS SÓCIOS — Foto + bio em duas colunas
   ============================================================ */
.partners {
  background: var(--off-white);
  padding: var(--space-xl) 0;
}

.partners-intro {
  text-align: center;
  max-width: var(--reading-width);
  margin: 0 auto var(--space-l);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 880px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.partner {
  text-align: center;
}

.partner-photo {
  width: 200px;
  height: 260px;
  border-radius: 8px;
  margin: 0 auto 1.8rem;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(201, 166, 100, 0.08), rgba(43, 24, 16, 0.05));
  border: 1px solid rgba(142, 109, 62, 0.25);
}

.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Placeholder quando ainda não há foto real */
.partner-photo--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(201, 166, 100, 0.05) 0,
      rgba(201, 166, 100, 0.05) 2px,
      transparent 2px,
      transparent 12px);
}

.partner-photo--placeholder::before {
  content: "FOTO";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--dourado-opaco);
  opacity: 0.5;
  z-index: 1;
}

.partner-name {
  font-family: var(--serif-display);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 500;
  color: var(--marrom-escuro);
  margin: 0 0 0.7rem;
  line-height: 1.2;
}

.partner-role {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 0.4rem;
  display: block;
}

.partner-cvm {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dourado-opaco);
  margin-bottom: 1.2rem;
  display: block;
  opacity: 0.85;
}

/* ============================================================
   PULL QUOTES (Investimentos) — substitui aforismos numerados
   ============================================================ */
.pullquotes {
  list-style: none;
  padding: 0;
  margin: 3rem 0;
  display: grid;
  gap: 1.4rem;
}

.pullquote {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.8rem;
  border-left: 2px solid var(--dourado);
}

.pullquote p {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  color: var(--off-white);
  margin: 0;
}

/* ============================================================
   READING TABLE (Gestão Empresarial) — substitui ficha numerada
   ============================================================ */
.reading-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.4rem 0;
  font-family: var(--serif-body);
}

.reading-table th,
.reading-table td {
  text-align: left;
  vertical-align: top;
  padding: 1.3rem 1.2rem;
  border-bottom: 1px solid rgba(142, 109, 62, 0.22);
}

.reading-table th {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  border-bottom: 1px solid var(--dourado-opaco);
  padding-bottom: 0.9rem;
  font-weight: 600;
}

.reading-table td {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--marrom-escuro);
}

.reading-table td:first-child {
  width: 38%;
  padding-right: 2rem;
}

.reading-table td strong {
  font-weight: 500;
  color: var(--marrom-escuro);
  font-family: var(--serif-display);
  font-size: 1.08rem;
}

.reading-table td:last-child {
  color: var(--texto-secundario);
}

@media (max-width: 720px) {
  .reading-table,
  .reading-table thead,
  .reading-table tbody,
  .reading-table tr {
    display: block;
    width: 100%;
  }
  .reading-table thead { display: none; }
  .reading-table tr {
    border-bottom: 1px solid rgba(142, 109, 62, 0.22);
    padding: 1.2rem 0;
  }
  .reading-table td {
    display: block;
    padding: 0.4rem 0;
    border: none;
    width: 100% !important;
  }
  .reading-table td:first-child {
    margin-bottom: 0.4rem;
  }
}

/* ============================================================
   EDU-POINTS sem numeração — virou ul com filete dourado
   ============================================================ */
.edu-points {
  list-style: none;
  padding: 0;
  margin: 2.4rem 0 0;
}

.edu-points > li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.6rem;
  align-items: start;
  width: 100%;
  padding: 2rem 0 2rem 1.8rem;
  border-left: 2px solid var(--dourado-opaco);
  border-bottom: 1px solid rgba(142, 109, 62, 0.18);
  margin-bottom: 0;
}

.edu-points > li::before {
  content: attr(data-num);
  font-family: var(--serif-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--dourado-opaco);
  line-height: 1;
  letter-spacing: -0.01em;
  padding-top: 0.3rem;
}

@media (max-width: 600px) {
  .edu-points > li {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    padding-left: 1.2rem;
  }
}

.edu-points > li:first-child {
  border-top: none;
  padding-top: 1.5rem;
}

.edu-points > li:last-child {
  border-bottom: none;
}

.edu-points > li > div {
  display: block;
  width: 100%;
}

.edu-points h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--marrom-escuro);
  margin: 0 0 0.7rem;
  line-height: 1.35;
}

.edu-points p {
  font-family: var(--serif-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--texto-secundario);
  margin: 0;
}

.partner-bio {
  font-family: var(--serif-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--texto-secundario);
  margin: 0 auto;
  max-width: 360px;
}

.partner-bio + .partner-bio {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(142, 109, 62, 0.18);
}

.partner-bio em {
  font-style: italic;
  color: var(--dourado-opaco);
}

/* ============================================================
   FECHAMENTO COM FOTO DOS SÓCIOS AO FUNDO
   ============================================================ */
/* ============================================================
   BLOCO 6 (home) — Fechamento + CTA com foto dos sócios ao lado
   ============================================================
   Layout: duas colunas no desktop (foto à esquerda, texto à direita).
   No mobile, empilha (foto em cima, texto embaixo). */
.partners-closing {
  position: relative;
  background: var(--espresso);
  overflow: hidden;
  padding: var(--space-xxl) 0;
}

.partners-closing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .partners-closing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1100px) {
  .partners-closing-grid {
    gap: 5rem;
  }
}

/* Foto */
.partners-closing-photo {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid rgba(201, 166, 100, 0.2);
  overflow: hidden;
}

.partners-closing-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Texto */
.partners-closing-text {
  color: var(--off-white);
  text-align: center;
}

@media (min-width: 900px) {
  .partners-closing-text {
    text-align: left;
  }
  .partners-closing-text .rule {
    margin-left: 0;
    margin-right: auto;
  }
  .partners-closing-text .prose {
    text-align: left;
  }
  .partners-closing-text .home-closing-ctas {
    justify-content: flex-start;
  }
}

/* Estado placeholder enquanto não há foto */
.partners-closing--placeholder::before {
  background:
    linear-gradient(rgba(43, 24, 16, 0.55), rgba(43, 24, 16, 0.65)),
    repeating-linear-gradient(
      45deg,
      rgba(201, 166, 100, 0.04) 0,
      rgba(201, 166, 100, 0.04) 2px,
      transparent 2px,
      transparent 14px
    );
}

.partners-closing--placeholder::after {
  content: "FOTO DOS SÓCIOS EM CONJUNTO";
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(201, 166, 100, 0.4);
  z-index: 1;
}

.partners-closing > .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Estado pending — card em elaboração, sem link */
.document-card--pending {
  opacity: 0.75;
}

.document-card--pending::before {
  content: "EM ELABORAÇÃO";
  color: var(--texto-secundario);
  opacity: 0.6;
}

.document-pending {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texto-secundario);
  opacity: 0.7;
  align-self: flex-start;
  padding-bottom: 0.2rem;
  border-bottom: 1px dashed var(--dourado-opaco);
}

.cvm-mark {
  text-align: center;
  padding: var(--space-xl) 0;
}

.cvm-mark .number {
  font-family: var(--serif-display);
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--dourado);
  letter-spacing: 0.05em;
  margin: 0.5rem 0;
}

.cvm-mark p {
  font-family: var(--serif-display);
  font-style: italic;
  color: var(--off-white);
  opacity: 0.88;
  font-size: 1.1rem;
}

/* ============================================================
   PULL QUOTE — citação destacada com atribuição
   ============================================================ */
.pull-quote {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  color: var(--off-white);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 2.5rem 1rem;
}

.pull-quote::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--dourado);
  margin: 0 auto 2.2rem;
}

.pull-quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-top: 2.2rem;
  font-weight: 400;
}

.section--offwhite .pull-quote {
  color: var(--marrom-escuro);
}

/* Versão inline de citação atribuída — dentro de texto corrido */
.attributed {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
  color: var(--dourado);
  border-left: 1px solid var(--dourado);
  padding: 0.5rem 0 0.5rem 1.6rem;
  margin: 2rem 0;
  max-width: 640px;
}

.attributed cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texto-secundario);
  margin-top: 1rem;
  font-weight: 400;
}

.section--espresso .attributed cite { color: var(--off-white); opacity: 0.7; }

/* Tríade — três blocos curtos lado a lado */
.triad {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: var(--space-l);
}

@media (min-width: 768px) {
  .triad { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.triad-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--dourado);
}

.triad-item h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 0.8rem;
}

.section--offwhite .triad-item h3 { color: var(--marrom-escuro); }

.triad-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}

/* Visões do casal — duas colunas espelhadas com divisor dourado */
.couple-visions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 3rem 0 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .couple-visions {
    grid-template-columns: 1fr 1px 1fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.couple-side {
  text-align: left;
  padding: 0.5rem 0;
}

.couple-side h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--marrom-escuro);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.couple-side p {
  font-family: var(--serif-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--marrom-escuro);
  margin: 0;
}

.couple-divider {
  background: var(--dourado);
  width: 60px;
  height: 1px;
  margin: 0 auto;
  align-self: center;
}

@media (min-width: 768px) {
  .couple-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
    margin: 1rem 0;
  }
}

/* Aforismos — 3 perguntas iniciais da Consultoria de Investimentos */
.aphorisms {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .aphorisms { gap: 2.5rem; }
}

.aphorism {
  border-left: 2px solid var(--dourado);
  padding: 0.5rem 0 0.5rem 1.8rem;
}

.aphorism-number {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
  display: block;
  margin-bottom: 0.6rem;
}

.aphorism-text {
  font-family: var(--serif-display);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.35;
  margin: 0;
}

.section--offwhite .aphorism-text { color: var(--marrom-escuro); }

/* Method column — Consultoria de Investimentos
   Lista em coluna única vertical, mais respiração, sem grid 2×2 */
.method-column {
  list-style: none;
  padding: 0;
  margin: var(--space-l) 0 0;
  max-width: 720px;
}

.method-column > li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.8rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid rgba(142, 109, 62, 0.22);
  align-items: start;
}

.method-column > li:first-child { border-top: 1px solid rgba(142, 109, 62, 0.22); }

@media (min-width: 768px) {
  .method-column > li {
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    padding: 2.8rem 0;
  }
}

.method-column .method-num {
  font-family: var(--serif-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--dourado);
  line-height: 1;
}

.method-column h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--marrom-escuro);
  margin: 0 0 0.7rem;
  line-height: 1.35;
}

.method-column p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--texto-secundario);
  margin: 0;
}

.section--espresso .method-column h3 { color: var(--off-white); }
.section--espresso .method-column p { color: var(--off-white); opacity: 0.85; }
.section--espresso .method-column > li,
.section--espresso .method-column > li:first-child { border-color: rgba(201, 166, 100, 0.2); }

/* Ficha de diagnóstico — Gestão Empresarial
   3 perguntas iniciais em formato de ficha técnica */
.diagnostic-card {
  margin: 3rem 0 2rem;
  border-top: 1px solid var(--dourado-opaco);
  border-bottom: 1px solid var(--dourado-opaco);
  padding: 1.8rem 0;
}

.diagnostic-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(142, 109, 62, 0.18);
}

.diagnostic-row:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .diagnostic-row {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: baseline;
    padding: 1.4rem 0;
  }
}

.diagnostic-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado-opaco);
  font-weight: 500;
  white-space: nowrap;
}

.diagnostic-question {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--marrom-escuro);
  line-height: 1.4;
  margin: 0;
}

.section--espresso .diagnostic-question { color: var(--off-white); }
.section--espresso .diagnostic-label { color: var(--dourado); }

/* Process flow — BPO Financeiro
   Etapas verticais conectadas por linha dourada, sensação de fluxo */
.process-flow {
  list-style: none;
  padding: 0;
  margin: var(--space-l) 0 0;
  position: relative;
  max-width: 760px;
}

.process-flow > li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.5rem;
  padding: 0 0 2.5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .process-flow > li {
    grid-template-columns: 70px 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }
}

.process-flow > li:last-child { padding-bottom: 0; }

/* Linha vertical conectando etapas */
.process-flow > li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: var(--dourado-opaco);
  opacity: 0.5;
}

@media (min-width: 768px) {
  .process-flow > li::before { left: 27px; }
}

.process-flow > li:last-child::before { display: none; }

.process-step-marker {
  width: 36px;
  height: 36px;
  border: 1px solid var(--dourado);
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-display);
  font-size: 0.95rem;
  color: var(--dourado);
  position: relative;
  z-index: 1;
  font-weight: 500;
}

@media (min-width: 768px) {
  .process-step-marker {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }
}

.section--espresso .process-step-marker { background: var(--espresso); }

.process-flow h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--marrom-escuro);
  margin: 0 0 0.7rem;
  line-height: 1.35;
  padding-top: 4px;
}

.process-flow p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--texto-secundario);
  margin: 0;
}

.section--espresso .process-flow h3 { color: var(--off-white); }
.section--espresso .process-flow p { color: var(--off-white); opacity: 0.85; }

/* Índice clicável — Educacional
   Navegação rápida pelas seções da página */
.toc {
  border-top: 1px solid var(--dourado-opaco);
  border-bottom: 1px solid var(--dourado-opaco);
  padding: 1.5rem 0;
  margin: 0;
}

.toc-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado-opaco);
  margin-bottom: 1.2rem;
  display: block;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .toc-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem 3rem;
  }
}

.toc-list a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.4rem 0;
  font-family: var(--serif-body);
  font-size: 1rem;
  color: var(--marrom-escuro);
  border-bottom: 1px solid transparent;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}

.toc-list a:hover {
  color: var(--dourado-opaco);
  border-bottom-color: var(--dourado-opaco);
}

.toc-list a span:first-child {
  font-family: var(--serif-display);
  font-size: 0.95rem;
  color: var(--dourado);
  text-align: right;
}

/* Assinatura âncora — "Para um lado só — o seu." */
.anchor-line {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 400;
  color: var(--dourado);
  text-align: center;
  letter-spacing: 0.005em;
  line-height: 1.3;
  padding: var(--space-l) 1rem;
  margin: 0;
}

/* ============================================================
   BOLETIM SEMANAL
   ============================================================ */

.boletim-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.boletim-item {
  border-top: 1px solid rgba(142, 109, 62, 0.25);
  padding: 2.5rem 0;
  transition: background var(--t-med) var(--ease);
}

.boletim-item:last-child {
  border-bottom: 1px solid rgba(142, 109, 62, 0.25);
}

.boletim-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.boletim-item-link:hover .boletim-title {
  color: var(--dourado-opaco);
}

.boletim-item-link:hover .boletim-arrow {
  transform: translateX(4px);
}

.boletim-date {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texto-sec);
  margin-bottom: 0.6rem;
}

.boletim-title {
  font-family: var(--serif-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--marrom-escuro);
  margin: 0 0 0.8rem;
  transition: color var(--t-med) var(--ease);
}

.boletim-excerpt {
  font-family: var(--serif-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--texto-sec);
  margin: 0 0 1rem;
}

.boletim-arrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--dourado-opaco);
  font-weight: 500;
  transition: transform var(--t-med) var(--ease);
}


/* Assinatura editorial ao final do boletim individual */
.boletim-signoff {
  padding-top: var(--space-l);
  padding-bottom: var(--space-l);
}

.boletim-signoff-text {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--texto-sec);
  text-align: center;
  margin: 0;
}


/* ============================================================
   ===== MICROINTERAÇÕES REFINADAS =============================
   Adicionadas para elevar a sensação tátil/visual do site.
   Padrão: tudo sutil, rápido, com curvas premium.
   ============================================================ */

/* Links do menu desktop — sublinhado dourado que cresce */
.nav-desktop a,
.nav-desktop > button {
  position: relative;
  transition: color var(--t-fast) var(--ease-out-quart);
}

.nav-desktop a::after,
.nav-desktop > .nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--dourado);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--t-med) var(--ease-out-expo);
}

.nav-desktop a:hover::after,
.nav-desktop > .nav-dropdown > button:hover::after,
.nav-desktop > .nav-dropdown:focus-within > button::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Botão CTA principal — fill que desliza ao hover */
.header-cta,
.btn--primary {
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color var(--t-med) var(--ease-out-quart), border-color var(--t-med) var(--ease-out-quart);
}

.header-cta::before,
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dourado-opaco);
  transform: translateY(101%);
  transition: transform var(--t-slow) var(--ease-out-expo);
  z-index: -1;
}

.header-cta:hover::before,
.btn--primary:hover::before {
  transform: translateY(0);
}

.header-cta:hover,
.btn--primary:hover {
  color: var(--off-white);
  border-color: var(--dourado-opaco);
}

/* Botão outline — versão refinada */
.btn--outline {
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color var(--t-med) var(--ease-out-quart);
}

.btn--outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dourado);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-slow) var(--ease-out-expo);
  z-index: -1;
}

.btn--outline:hover::before {
  transform: scaleX(1);
}

.btn--outline:hover {
  color: var(--marrom-escuro);
  border-color: var(--dourado);
}

/* Cards de serviço — elevação sutil + linha dourada que cresce */
.service-card,
.differential,
.document-card,
.boletim-item {
  transition:
    transform var(--t-med) var(--ease-out-quart),
    box-shadow var(--t-med) var(--ease-out-quart),
    border-color var(--t-med) var(--ease-out-quart);
}

.service-card:hover,
.differential:hover,
.document-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(43, 24, 16, 0.18);
}

/* Cards do boletim — só muda cor do título (não eleva o card inteiro, prosa não-card) */
.boletim-item-link {
  display: block;
  position: relative;
  transition: transform var(--t-med) var(--ease-out-quart);
}

/* Title do boletim — pequena variação de cor no hover (já existe parcial) */
.boletim-item-link:hover .boletim-title {
  color: var(--dourado-opaco);
}

.boletim-item-link:hover .boletim-arrow {
  transform: translateX(6px);
}

.boletim-arrow {
  display: inline-block;
  transition: transform var(--t-med) var(--ease-spring);
}

/* Imagens — zoom muito sutil ao hover do card pai */
.service-card img,
.document-card img,
.partners-closing-photo img {
  transition: transform var(--t-slow) var(--ease-out-quart);
  will-change: transform;
}

.service-card:hover img,
.document-card:hover img {
  transform: scale(1.03);
}

/* Dropdown do menu desktop — entrada com fade + slide micro */
.dropdown-menu {
  transition:
    opacity var(--t-fast) var(--ease-out-quart),
    visibility var(--t-fast) var(--ease-out-quart),
    transform var(--t-fast) var(--ease-out-quart);
  transform: translateY(-4px) translateX(-50%);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  transform: translateY(0) translateX(-50%);
}

.dropdown-menu a {
  transition:
    background var(--t-fast) var(--ease-out-quart),
    color var(--t-fast) var(--ease-out-quart),
    padding var(--t-fast) var(--ease-out-quart);
}

.dropdown-menu a:hover {
  padding-left: 1.5rem;
  background: rgba(201, 166, 100, 0.06);
  color: var(--dourado-opaco);
}

/* Footer — links com cor que respira */
.site-footer a {
  transition: color var(--t-med) var(--ease-out-quart);
}

.site-footer a:hover {
  color: var(--dourado);
}

/* Ícone social — escala + cor */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--t-med) var(--ease-spring),
    color var(--t-med) var(--ease-out-quart);
}

.footer-social a:hover {
  transform: scale(1.15) rotate(-3deg);
  color: var(--dourado);
}

/* Foco de teclado (acessibilidade) refinado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--dourado);
  outline-offset: 4px;
  border-radius: 2px;
  transition: outline-offset var(--t-fast) var(--ease-out-quart);
}

/* Linha "rule" sob títulos — anima ao entrar */
.reveal .rule--center {
  transform-origin: center;
  transform: scaleX(0);
  transition: transform var(--t-slow) var(--ease-out-expo);
  transition-delay: calc(var(--i, 0) * 80ms + 300ms);
}

.reveal.is-visible .rule--center {
  transform: scaleX(1);
}

/* Smooth scroll global mais refinado */
html {
  scroll-behavior: smooth;
}

/* Carregar página com fade muito sutil pra não ter "flash" */
body {
  animation: page-load 600ms var(--ease-out-quart) both;
}

@keyframes page-load {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
}

/* ============================================================
   Aviso de cookies (LGPD) — discreto, no padrão visual
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 540px;
  margin: 0 auto;
  background: var(--espresso);
  color: var(--off-white);
  border: 1px solid var(--dourado-opaco);
  padding: 1.3rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 18px 50px -18px rgba(43, 24, 16, 0.4);
  z-index: 200;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--t-slow) var(--ease-out-expo),
    transform var(--t-slow) var(--ease-out-expo);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-text {
  font-family: var(--serif-body);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 1rem;
  color: var(--off-white);
}

.cookie-banner-text a {
  color: var(--dourado);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--t-fast) var(--ease-out-quart);
}

.cookie-banner-text a:hover {
  color: var(--dourado-opaco);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
}

.cookie-btn {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition:
    background var(--t-med) var(--ease-out-quart),
    color var(--t-med) var(--ease-out-quart),
    border-color var(--t-med) var(--ease-out-quart);
}

.cookie-btn--reject {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(242, 238, 227, 0.3);
}

.cookie-btn--reject:hover {
  border-color: var(--off-white);
}

.cookie-btn--accept {
  background: var(--dourado);
  color: var(--marrom-escuro);
  border: 1px solid var(--dourado);
  font-weight: 500;
}

.cookie-btn--accept:hover {
  background: var(--dourado-opaco);
  border-color: var(--dourado-opaco);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    padding: 1rem 1.2rem;
  }
  .cookie-banner-text {
    font-size: 0.88rem;
  }
}


/* ============================================================
   FAQ — Acordeão editorial
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background-color: rgba(242, 238, 227, 0.6);
  border: 1px solid rgba(142, 109, 62, 0.2);
  border-radius: 4px;
  overflow: hidden;
  transition:
    border-color var(--t-med) var(--ease-out-quart),
    background-color var(--t-med) var(--ease-out-quart),
    box-shadow var(--t-med) var(--ease-out-quart);
}

.faq-item:hover {
  border-color: rgba(201, 166, 100, 0.6);
  background-color: rgba(242, 238, 227, 0.9);
  box-shadow: 0 4px 18px -10px rgba(43, 24, 16, 0.12);
}

.faq-item.is-open {
  border-color: var(--dourado-opaco);
  background-color: rgba(242, 238, 227, 1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.6rem 1.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif-display);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.35;
  transition: color var(--t-med) var(--ease-out-quart);
}

.faq-question:hover {
  color: var(--dourado-opaco);
}

.faq-question-text {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--dourado);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 2px;
  transition:
    transform var(--t-med) var(--ease-out-quart),
    background-color var(--t-med) var(--ease-out-quart);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background-color: var(--dourado-opaco);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-out-expo);
}

.faq-item.is-open .faq-answer {
  max-height: 800px;
}

.faq-answer-inner {
  padding: 0 1.8rem 1.6rem 1.8rem;
  font-family: var(--serif-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--texto-secundario);
}

.faq-answer-inner p {
  margin: 0 0 1rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner a {
  color: var(--dourado-opaco);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--t-fast) var(--ease-out-quart);
}

.faq-answer-inner a:hover {
  color: var(--dourado);
}

@media (max-width: 600px) {
  .faq-question {
    padding: 1.3rem 1.4rem;
    font-size: 1rem;
    gap: 1rem;
  }
  .faq-answer-inner {
    padding: 0 1.4rem 1.3rem 1.4rem;
    font-size: 0.96rem;
  }
}

/* ============================================================
   Bloco "Sobre rentabilidade" — 2 colunas com ícones
   ============================================================ */
.rent-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: start;
  margin-top: 3rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.rent-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 2rem;
}

.rent-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--off-white);
  border: 1px solid rgba(142, 109, 62, 0.4);
  color: var(--dourado-opaco);
  margin-bottom: 1.4rem;
}

.rent-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.rent-col-title {
  font-family: var(--serif-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--espresso);
  margin: 0 0 0.8rem;
  line-height: 1.3;
}

.rent-col p {
  font-family: var(--serif-body);
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--texto-secundario);
  margin: 0;
  max-width: 280px;
}

.rent-divider {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(142, 109, 62, 0.35) 20%,
    rgba(142, 109, 62, 0.35) 80%,
    transparent
  );
  align-self: stretch;
}

@media (max-width: 700px) {
  .rent-grid {
    grid-template-columns: 1fr;
  }
  .rent-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(142, 109, 62, 0.35) 20%,
      rgba(142, 109, 62, 0.35) 80%,
      transparent
    );
    margin: 1.5rem auto;
    justify-self: center;
  }
}

/* ============================================================
   Método — Timeline (linha conectora removida, espaçamento mantido)
   ============================================================ */
.method-timeline {
  position: relative;
  padding-left: 0;
}

.method-timeline > li {
  position: relative;
  padding-bottom: 2.2rem;
}

.method-timeline > li:last-child {
  padding-bottom: 0;
}

/* ============================================================
   Desvios — Grid 2x2
   ============================================================ */
.deviations-grid {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 720px) {
  .deviations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }
}

.deviation-card {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(142, 109, 62, 0.2);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t-med) var(--ease-out-quart),
    border-color var(--t-med) var(--ease-out-quart),
    background-color var(--t-med) var(--ease-out-quart),
    box-shadow var(--t-med) var(--ease-out-quart);
}

.deviation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 166, 100, 0.55);
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 40px -22px rgba(43, 24, 16, 0.15);
}

.deviation-card .deviation-number {
  font-family: var(--serif-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--dourado-opaco);
  line-height: 1;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}

.deviation-card h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  color: var(--espresso);
  margin: 0 0 0.7rem;
  line-height: 1.3;
}

.deviation-card p {
  font-family: var(--serif-body);
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--texto-secundario);
  margin: 0;
}


/* ============================================================
   Pull quote editorial — frase em destaque dentro de prosa
   ============================================================ */
.pullquote-editorial {
  position: relative;
  margin: 3rem 0;
  padding: 1.5rem 0 1.5rem 2.5rem;
  border-left: 2px solid var(--dourado);
  max-width: 720px;
}

.pullquote-editorial p {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--dourado);
  margin: 0;
  letter-spacing: 0.005em;
}

@media (max-width: 600px) {
  .pullquote-editorial {
    padding: 1.2rem 0 1.2rem 1.5rem;
    margin: 2rem 0;
  }
}

/* ============================================================
   Subseções dos aprofundamentos (Educacional) — h3 editorial
   ============================================================ */
.deep-h3 {
  font-family: var(--serif-display);
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
  font-weight: 500;
  margin: 3.5rem 0 1rem;
  line-height: 1.35;
  position: relative;
  padding-top: 1.2rem;
}

.deep-h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--dourado);
}

/* Garante respeito ao primeiro h3 sem padding-top excessivo */
.prose > .deep-h3:first-of-type {
  margin-top: 2.5rem;
}

/* ============================================================
   PÁGINA DIAGNÓSTICO — select, lista e consentimento
   (usa apenas tokens existentes; sem cores novas)
   ============================================================ */
.form-field select {
  font-family: var(--serif-body);
  font-size: 1rem;
  color: var(--off-white);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(201, 166, 100, 0.35);
  border-radius: 0;
  padding: 0.6rem 1.6rem 0.6rem 0;
  transition: border-color var(--t-fast) var(--ease);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23C9A664' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 0.7rem;
  cursor: pointer;
}
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--dourado);
}
.form-field select option {
  color: var(--marrom-escuro);
  background: var(--off-white);
}

.form-consent input[type="checkbox"] {
  accent-color: var(--dourado);
}
.form-consent .consent-label a {
  color: var(--dourado);
  text-decoration: underline;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.plain-list li {
  font-family: var(--serif-body);
  font-size: 1.05rem;
  line-height: 1.6;
  padding-left: 1.6rem;
  position: relative;
}
.plain-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--dourado);
}

/* ============================================================
   LANDING DIAGNÓSTICO (.lp) — card claro, moderno e legível
   Escopado em .lp para não afetar outras páginas.
   Usa apenas tokens existentes.
   ============================================================ */

/* Chip do hero */
.lp-chip {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dourado);
  border: 1px solid rgba(201, 166, 100, 0.45);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.6rem;
}

/* Hero com leve brilho dourado (sutil) */
.lp-hero { position: relative; overflow: hidden; }
.lp-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  width: 70vw;
  height: 70vw;
  max-width: 760px;
  max-height: 760px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 166, 100, 0.10) 0%, rgba(201, 166, 100, 0) 62%);
  pointer-events: none;
}
.lp-hero .page-hero-content { position: relative; z-index: 1; }

/* Seção do formulário — fundo com leve profundidade */
.lp-form-section { position: relative; }

/* Card claro elevado */
.lp-card {
  background: var(--off-white);
  border: 1px solid rgba(201, 166, 100, 0.30);
  border-radius: 20px;
  padding: clamp(1.6rem, 5vw, 3.2rem);
  max-width: 580px;
  margin: 0 auto;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.55);
}
.lp-card .lp-card-title {
  font-family: var(--serif-display);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  color: var(--espresso);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.lp-card .lp-card-intro { color: var(--texto-secundario); }
.lp-card-intro {
  font-family: var(--serif-body);
  font-size: 1.02rem;
  color: var(--texto-secundario);
  margin: 0 0 1.8rem;
}

/* Selos de confiança */
.lp-assure {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin-bottom: 2.2rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(43, 24, 16, 0.10);
}
.lp-assure span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--dourado-opaco);
}
.lp-assure svg { width: 19px; height: 19px; flex: 0 0 auto; }

/* Campos no card claro — maiores e mais legíveis (público mais velho) */
.lp-card .form-field label {
  text-transform: none;
  letter-spacing: 0.01em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dourado-opaco);
  margin-bottom: 0.5rem;
}
.lp-card .form-field input,
.lp-card .form-field textarea,
.lp-card .form-field select {
  color: var(--marrom-escuro);
  font-size: 1.08rem;
  border-bottom: 1px solid rgba(43, 24, 16, 0.20);
  padding: 0.7rem 0;
}
.lp-card .form-field select { padding-right: 1.6rem; }
.lp-card .form-field input::placeholder,
.lp-card .form-field textarea::placeholder { color: rgba(43, 24, 16, 0.40); }
.lp-card .form-field input:focus,
.lp-card .form-field textarea:focus,
.lp-card .form-field select:focus {
  border-bottom-color: var(--dourado-opaco);
}
.lp-card .form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%238E6D3E' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
}
.lp-card .form-field select option { color: var(--marrom-escuro); background: #ffffff; }

/* Consentimento legível no card claro */
.lp-card .form-consent .consent-label {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--serif-body);
  font-size: 0.92rem;
  color: var(--marrom-escuro);
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  line-height: 1.5;
  cursor: pointer;
}
.lp-card .form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
  flex: 0 0 auto;
  transform: scale(1.25);
  accent-color: var(--dourado-opaco);
}
.lp-card .form-consent .consent-label a {
  color: var(--dourado-opaco);
  text-decoration: underline;
}

/* Botão grande, largura total */
.lp-card .lp-submit {
  width: 100%;
  font-size: 0.95rem;
  padding: 1.15rem 1.5rem;
  margin-top: 0.4rem;
}
.lp-card .lp-submit:hover {
  background: var(--dourado-opaco);
  border-color: var(--dourado-opaco);
  color: var(--off-white);
}

/* Mensagem de sucesso no card claro */
.lp-card .form-success {
  color: var(--dourado-opaco);
  border-top-color: rgba(43, 24, 16, 0.12);
}

/* "Ver mais" discreto — o que conta como patrimônio */
.lp-card .lp-hint { margin: 0.1rem 0 0.8rem; }
.lp-card .lp-hint > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--dourado-opaco);
  padding: 0.35rem 0;
  user-select: none;
  transition: color var(--t-fast) var(--ease);
}
.lp-card .lp-hint > summary::-webkit-details-marker { display: none; }
.lp-card .lp-hint > summary::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid var(--dourado-opaco);
  border-radius: 50%;
  font-size: 0.85rem;
  line-height: 1;
  flex: 0 0 auto;
}
.lp-card .lp-hint[open] > summary::before { content: "\2212"; }
.lp-card .lp-hint > summary:hover { color: var(--espresso); }
.lp-card .lp-hint p {
  margin: 0.5rem 0 0;
  padding: 0.85rem 1.05rem;
  background: rgba(201, 166, 100, 0.10);
  border-left: 2px solid var(--dourado);
  border-radius: 0 8px 8px 0;
  font-family: var(--serif-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--texto-secundario);
}

/* ============================================================
   FORMULÁRIO COMPLETO (.lp) — grupos, opções tocáveis, confirmação
   ============================================================ */
.lp-card .lp-group-title {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dourado-opaco);
  margin: 2.4rem 0 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(43, 24, 16, 0.10);
}
.lp-card .lp-group-title:first-of-type { margin-top: 0; }
.lp-card .lp-opt {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(43, 24, 16, 0.45);
  letter-spacing: 0;
  text-transform: none;
}

/* Grupos de opções tocáveis */
.lp-choices { display: grid; gap: 0.6rem; }
.lp-choices--inline { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.lp-choices--multi { grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) {
  .lp-choices--multi { grid-template-columns: 1fr; }
}

.lp-choice {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(43, 24, 16, 0.16);
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--serif-body);
  font-size: 1rem;
  color: var(--marrom-escuro);
  background: transparent;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.lp-choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.lp-choice-mark {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(43, 24, 16, 0.30);
  border-radius: 50%;
  position: relative;
  transition: border-color var(--t-fast) var(--ease);
}
.lp-choice-mark--box { border-radius: 6px; }
.lp-choice input:checked + .lp-choice-mark {
  border-color: var(--dourado-opaco);
}
.lp-choice input:checked + .lp-choice-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--dourado-opaco);
  border-radius: 50%;
}
.lp-choice input:checked + .lp-choice-mark--box::after {
  inset: 0;
  background: var(--dourado-opaco);
  border-radius: 5px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5 10 17 19 7'/%3E%3C/svg%3E") center/72% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5 10 17 19 7'/%3E%3C/svg%3E") center/72% no-repeat;
}
.lp-choice:has(input:checked) {
  border-color: var(--dourado-opaco);
  background: rgba(201, 166, 100, 0.10);
}
.lp-choice:hover { border-color: rgba(43, 24, 16, 0.34); }
.lp-choice input:focus-visible + .lp-choice-mark {
  outline: 2px solid var(--dourado);
  outline-offset: 2px;
}

/* Confirmação pós-envio */
.lp-done {
  margin-top: 0.6rem;
  padding: 1.6rem;
  background: rgba(201, 166, 100, 0.12);
  border: 1px solid rgba(201, 166, 100, 0.40);
  border-radius: 14px;
  text-align: center;
}
.lp-done-title {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  color: var(--espresso);
  margin: 0 0 0.4rem;
}
.lp-done-text {
  font-family: var(--serif-body);
  font-size: 1rem;
  color: var(--texto-secundario);
  margin: 0 0 1.2rem;
  line-height: 1.55;
}
.lp-done-wa {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--dourado-opaco);
  border: 1px solid var(--dourado-opaco);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  transition: all var(--t-fast) var(--ease);
}
.lp-done-wa:hover { background: var(--dourado-opaco); color: var(--off-white); }

/* ============================================================
   PÁGINA CONTATO (contato.html) — standalone, botões de ação
   ============================================================ */
body.contact-page { background: var(--off-white); }
.contact-hero { padding-top: 4.5rem; padding-bottom: 3.2rem; }

/* ---- Seção 1: botões de serviço (espresso sólido, com presença) ---- */
.contact-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.7rem 1.8rem;
  background: var(--espresso);
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.contact-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--dourado);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--t-fast) var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  background: #3A2418;
  border-color: rgba(201, 166, 100, 0.5);
  box-shadow: 0 18px 42px -18px rgba(0, 0, 0, 0.55);
}
.contact-card:hover::before { transform: scaleY(1); }
.contact-card-num {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--dourado);
  flex: 0 0 auto;
}
.contact-card-body { display: flex; flex-direction: column; gap: 0.35rem; flex: 1 1 auto; }
.contact-card-name {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.15;
  color: var(--off-white);
}
.contact-card-cta {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--dourado);
}
.contact-card-icon {
  flex: 0 0 auto;
  color: var(--dourado-opaco);
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.contact-card-icon svg { width: 26px; height: 26px; display: block; }
.contact-card:hover .contact-card-icon { color: var(--dourado); transform: scale(1.1); }

/* ---- Filete divisor ---- */
.contact-divider { margin: 3.4rem auto; }

/* ---- Seção 2: links editoriais (secundários, em creme) ---- */
.contact-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
  padding: 1.5rem 1.2rem;
  text-align: center;
  text-decoration: none;
  background: #EAE3D4;
  border: 1px solid rgba(43, 24, 16, 0.10);
  border-radius: 8px;
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.contact-link:hover {
  transform: translateY(-3px);
  border-color: var(--dourado);
  box-shadow: 0 14px 30px -16px rgba(43, 24, 16, 0.3);
}
.contact-link-name {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--marrom-escuro);
}
.contact-link-cta {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--dourado-opaco);
}

/* ---- Seção 3: botão geral (pill dourado) ---- */
.contact-general {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.1rem;
  border: 1.5px solid var(--dourado);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--marrom-escuro);
  text-decoration: none;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.contact-general:hover {
  background: var(--dourado);
  color: var(--espresso);
  transform: translateY(-2px);
}
.contact-general-icon { display: inline-flex; }
.contact-general-icon svg { width: 19px; height: 19px; display: block; }

@media (max-width: 640px) {
  .contact-services { grid-template-columns: 1fr; }
  .contact-editorial { grid-template-columns: 1fr; }
  .contact-card { padding: 1.4rem 1.4rem; }
  .contact-card-num { font-size: 2.1rem; }
  .contact-card-name { font-size: 1.25rem; }
}

/* Formulários standalone (landings) — fundo espresso de ponta a ponta */
body.lp-page { background: var(--espresso); }
