/* =========================================================
   Aline Ferreira Gomes - Psicóloga Clínica · CRP 12/12966
   Design System oficial: Rubro + Salmão + Creme · Molot + Gotham · Mandala
   ========================================================= */

/* ---------- Fontes próprias do Design System ---------- */
@font-face {
  font-family: 'Molot';
  src: url('../assets/fonts/Molot.otf') format('opentype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham Black';
  src: url('../assets/fonts/Gotham-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ------- Paleta oficial (do logo da Aline) ------- */
  --rubro:        #8B1A3A;   /* vinho profundo — PRIMÁRIO */
  --rubro-deep:   #6A1029;   /* vinho quase preto */
  --rubro-soft:   #A93857;   /* vinho desaturado */
  --salmao:       #F5B89E;   /* salmão suave — ACENTO QUENTE */
  --salmao-soft:  #FBDCC8;   /* salmão claro de fundo */
  --salmao-deep:  #E89270;   /* salmão profundo */
  --vermelho:     #E94060;   /* vermelho vibrante (uso pontual) */
  --ink:          #1A0B12;   /* preto com nuance vinho */
  --ink-soft:     #2E1D26;
  --stone:        #6B4F58;   /* cinza-rosa */
  --stone-light:  #94787F;
  --ivory:        #FAF5EE;   /* off-white quente */
  --ivory-warm:   #F4E8DA;   /* fundo seção alternada */
  --cream:        #EFD9C0;   /* tom mais quente */
  --line:         #E6D0BD;
  --white:        #FFFFFF;

  /* aliases retrocompatíveis com classes existentes */
  --color-bg: var(--ivory);
  --color-bg-alt: var(--ivory-warm);
  --color-cream: var(--cream);
  --color-rose: var(--rubro-soft);
  --color-rose-dark: var(--rubro);
  --color-sage: var(--salmao-deep);
  --color-sage-dark: var(--rubro-deep);
  --color-text: var(--ink);
  --color-muted: var(--stone);
  --color-line: var(--line);
  --color-white: #FFFFFF;
  --plum: var(--rubro);
  --plum-deep: var(--rubro-deep);
  --grape: var(--rubro-soft);
  --gold: var(--salmao-deep);
  --gold-deep: var(--rubro-deep);
  --lavender: var(--salmao-soft);

  /* ------- Tipografia ------- */
  --font-display: 'Molot', 'Cormorant Garamond', Georgia, serif;
  --font-serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-bold: 'Gotham Black', 'Manrope', sans-serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* ------- Escala ------- */
  --fs-xs:   0.78rem;
  --fs-sm:   0.92rem;
  --fs-base: 1.06rem;
  --fs-lg:   1.22rem;
  --fs-xl:   1.55rem;
  --fs-2xl:  2.05rem;
  --fs-3xl:  2.75rem;
  --fs-4xl:  3.65rem;
  --fs-5xl:  5.2rem;
  --fs-6xl:  7.2rem;

  /* ------- Espaçamento ------- */
  --container:  1240px;
  --container-narrow: 820px;
  --container-text: 680px;
  --space-xs:  12px;
  --space-sm:  20px;
  --space-md:  32px;
  --space-lg:  56px;
  --space-xl:  80px;
  --space-2xl: 140px;

  /* ------- Raios ------- */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* ------- Sombras ------- */
  --shadow-soft: 0 1px 2px rgba(26,11,18,0.05), 0 8px 24px rgba(139,26,58,0.07);
  --shadow-deep: 0 1px 2px rgba(26,11,18,0.08), 0 24px 48px -12px rgba(139,26,58,0.18);

  /* ------- Transições ------- */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 200ms var(--ease-out);
  --t: 360ms var(--ease-out);
  --t-slow: 700ms var(--ease-out);
}

/* ------------------------------- Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'ss02', 'liga', 'kern';
  overflow-x: hidden;
  /* Padrão sutil de mandala como textura de fundo, opacidade muito baixa */
  background-image:
    radial-gradient(ellipse at top right, rgba(245, 184, 158, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at bottom left, rgba(139, 26, 58, 0.06) 0%, transparent 45%);
  background-attachment: fixed;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; }

/* ------------------------------- Tipografia ------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.08;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.6rem, 6vw, var(--fs-5xl));
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-weight: 400;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--rubro);
  font-weight: 400;
}
h2 {
  font-size: clamp(1.9rem, 4vw, var(--fs-4xl));
  line-height: 1.05;
  margin-bottom: 0.55em;
  font-weight: 400;
}
h3 {
  font-size: clamp(1.4rem, 2.4vw, var(--fs-2xl));
  margin-bottom: 0.5em;
  font-weight: 500;
}
h4 { font-size: var(--fs-xl); margin-bottom: 0.4em; }
p { margin-bottom: 1.1em; max-width: 65ch; }

/* Display Molot — só para hero principal e momentos de impacto */
.display-molot {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--stone);
  max-width: 56ch;
  font-weight: 400;
}

/* Eyebrow editorial */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rubro);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--salmao-deep);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--salmao-deep);
  margin-left: 14px;
}

/* Section number */
.section-num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--rubro);
  margin-bottom: 22px;
}
.section-num::after {
  content: '';
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--salmao-deep);
  margin-left: 14px;
  vertical-align: middle;
  transform: translateY(-3px);
}

/* ------------------------------- Containers / Layout ------------------------------- */
.container       { max-width: var(--container); margin: 0 auto; padding: 0 32px; position: relative; }
.container-narrow{ max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
.container-text  { max-width: var(--container-text); margin: 0 auto; padding: 0 24px; }

section { padding: var(--space-xl) 0; position: relative; }
section.tight { padding: var(--space-lg) 0; }
section.spacious { padding: var(--space-2xl) 0; }

.bg-alt   { background: var(--ivory-warm); position: relative; }
.bg-cream { background: var(--cream); }
.bg-ink {
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 184, 158, 0.14) 0%, transparent 50%),
    linear-gradient(180deg, var(--rubro-deep) 0%, var(--ink) 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.bg-ink::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/logo/symbol-salmao.png');
  background-repeat: no-repeat;
  background-position: right -150px bottom -200px;
  background-size: 600px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.bg-ink > * { position: relative; z-index: 1; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--ivory); }
.bg-ink .eyebrow { color: var(--salmao); }
.bg-ink .eyebrow::before, .bg-ink .eyebrow::after { background: var(--salmao); }
.bg-ink .lead { color: rgba(250, 245, 238, 0.78); }
.bg-ink p { color: rgba(250, 245, 238, 0.72); }

/* Watermark mandala — para usar em seções com decoração */
.mandala-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  filter: drop-shadow(0 0 0 var(--rubro));
}
.mandala-bg.top-right {
  top: -160px; right: -160px;
  width: 480px; height: 480px;
}
.mandala-bg.bottom-left {
  bottom: -180px; left: -180px;
  width: 520px; height: 520px;
  opacity: 0.04;
}

/* ------------------------------- Botões ------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--rubro);
  color: var(--ivory);
  box-shadow: 0 1px 2px rgba(26,11,18,0.06);
}
.btn-primary:hover {
  background: var(--rubro-deep);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}
.btn-secondary {
  background: transparent;
  color: var(--rubro);
  border: 1px solid var(--rubro);
}
.btn-secondary:hover {
  background: var(--rubro);
  color: var(--ivory);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.btn-ghost:hover { color: var(--rubro); border-color: var(--rubro); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1FB855; color: white; transform: translateY(-2px); }

/* ------------------------------- Header ------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 238, 0.88);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-size: 1.45rem;
  text-decoration: none;
}
.brand::before {
  content: '';
  display: inline-block;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background-image: url('../assets/logo/symbol-rubro.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.brand-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px;
  align-items: flex-start;
  min-width: 0;
}
.brand small {
  display: block !important;
  width: max-content;
  max-width: 100%;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rubro);
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 1100px) {
  .brand { font-size: 1.15rem; }
  .brand small { font-size: 0.54rem; letter-spacing: 0.18em; }
  .brand::before { width: 36px; height: 36px; }
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--t-fast);
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--rubro);
  transition: right var(--t);
}
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-cta {
  background: var(--rubro);
  color: var(--ivory) !important;
  padding: 11px 22px !important;
  border-radius: var(--radius-pill);
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  transition: background var(--t-fast);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--rubro-deep); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  margin: 6px 0;
  transition: all var(--t);
}

/* ------------------------------- Hero ------------------------------- */
.hero {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 184, 158, 0.20) 0%, transparent 50%),
    radial-gradient(circle at 12% 88%, rgba(139, 26, 58, 0.06) 0%, transparent 50%),
    var(--ivory);
}
/* Mandala enorme como watermark no hero */
.hero::before {
  content: '';
  position: absolute;
  top: 50%; right: -22%;
  transform: translateY(-50%);
  width: 880px;
  height: 880px;
  background-image: url('../assets/logo/symbol-rubro.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.02;
}
.hero h1 em {
  font-style: italic;
  color: var(--rubro);
}
.hero .lead {
  max-width: 52ch;
  margin-bottom: 44px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--stone);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual — agora com mandala REAL como protagonista */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-height: 540px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(245, 184, 158, 0.30) 0%, transparent 65%),
    linear-gradient(135deg, var(--salmao-soft) 0%, var(--cream) 100%);
  box-shadow:
    0 30px 60px -20px rgba(139, 26, 58, 0.30),
    0 0 0 1px rgba(139, 26, 58, 0.06);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(139, 26, 58, 0.16);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  border: 1px dashed rgba(139, 26, 58, 0.10);
}
/* Foto principal da Aline dentro do círculo do hero */
.hero-mandala {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(139, 26, 58, 0.12);
}
.hero-mandala::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/aline-artistica.jpg');
  background-size: cover;
  background-position: center 30%;
  /* Sutilmente esmaecida pra harmonizar com a paleta da marca */
  filter: contrast(1.02) saturate(0.95);
}
/* Tom rubro sobreposto sutil pra integrar à paleta */
.hero-mandala::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(245, 184, 158, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(139, 26, 58, 0.00) 60%, rgba(106, 16, 41, 0.18) 100%);
  pointer-events: none;
}
/* Chip sutil de atendimento online — discreto, sem caixa pesada */
.hero-online-chip {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(139, 26, 58, 0.14);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rubro-deep);
  box-shadow: 0 4px 12px rgba(26, 11, 18, 0.08);
  z-index: 3;
}
.hero-online-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2E9D6B;
  box-shadow: 0 0 0 0 rgba(46, 157, 107, 0.5);
  animation: chip-pulse 2.2s ease-out infinite;
}
@keyframes chip-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 157, 107, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(46, 157, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 157, 107, 0); }
}

/* Legacy hero-badge mantido pra outras páginas que ainda usam (será removido depois) */
.hero-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--ivory);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  max-width: 280px;
  box-shadow: 0 12px 32px rgba(26, 11, 18, 0.18);
  border: 1px solid var(--line);
}
.hero-badge strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rubro);
  margin-bottom: 8px;
  font-weight: 700;
}

/* ------------------------------- Sobre preview ------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 30% 30%, rgba(245, 184, 158, 0.30) 0%, transparent 60%),
    linear-gradient(160deg, var(--rubro-soft) 0%, var(--rubro-deep) 100%);
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(250, 245, 238, 0.18);
  border-radius: var(--radius-md);
  z-index: 2;
  pointer-events: none;
}
.about-image img,
.about-image .portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.about-image.with-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(139, 26, 58, 0.08) 0%, rgba(106, 16, 41, 0.20) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ------------------------------- Serviços ------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.service-card {
  background: var(--ivory);
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background var(--t), transform var(--t);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card::after {
  /* Mandala fantasma como decor de hover */
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background-image: url('../assets/logo/symbol-rubro.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.service-card:hover {
  background: var(--ivory-warm);
}
.service-card:hover::after { opacity: 0.06; }
.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--rubro);
  margin-bottom: 28px;
}
.service-num::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--salmao-deep);
  margin-right: 12px;
  vertical-align: middle;
  transform: translateY(-2px);
}
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--rubro);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.service-card p {
  color: var(--stone);
  font-size: 0.96rem;
  flex: 1;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.service-card .link-arrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rubro);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  width: max-content;
}
.service-card .link-arrow::after {
  content: '→';
  transition: transform var(--t);
  display: inline-block;
}
.service-card:hover .link-arrow::after { transform: translateX(6px); }

/* ------------------------------- Processo ------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
}
.process-step {
  padding: 36px 28px 36px 0;
  border-top: 1px solid rgba(250, 245, 238, 0.18);
  position: relative;
}
.process-step:not(:last-child) {
  border-right: 1px solid rgba(250, 245, 238, 0.10);
  padding-right: 36px;
  margin-right: 36px;
}
.process-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--salmao);
  display: block;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1;
}
.process-step h4 {
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.process-step p {
  color: rgba(250, 245, 238, 0.68);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ------------------------------- Depoimentos ------------------------------- */

/* Depoimento em destaque — featured testimonial */
.testimonial-featured {
  max-width: 880px;
  margin: 72px auto 80px;
  padding: 56px 64px 48px;
  background:
    radial-gradient(circle at top right, rgba(245, 184, 158, 0.18) 0%, transparent 55%),
    var(--ivory-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.testimonial-featured::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background-image: url('../assets/logo/symbol-rubro.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.testimonial-featured::after {
  content: '\201C';
  position: absolute;
  top: 18px;
  left: 36px;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--salmao-deep);
  line-height: 0.7;
  opacity: 0.45;
  pointer-events: none;
}
.testimonial-featured blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0 0 32px;
  position: relative;
  z-index: 1;
}
.testimonial-featured cite {
  font-style: normal;
  font-weight: 700;
  color: var(--rubro);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  position: relative;
  z-index: 1;
}
.testimonial-featured cite span {
  display: block;
  color: var(--stone-light);
  font-weight: 400;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 5px;
}
@media (max-width: 720px) {
  .testimonial-featured { padding: 44px 28px 36px; margin: 48px 16px 56px; }
  .testimonial-featured::after { font-size: 5rem; top: 8px; left: 16px; }
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 48px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.testimonial {
  padding: 0;
  position: relative;
}
.testimonial::before {
  content: '"';
  display: block;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--salmao-deep);
  line-height: 0.7;
  margin-bottom: 24px;
  opacity: 0.85;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--rubro);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
}
.testimonial cite span {
  display: block;
  color: var(--stone-light);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
}

/* ------------------------------- FAQ ------------------------------- */
.faq-list { margin-top: 56px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 30px 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  color: var(--ink);
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--rubro); }
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 1.5px;
  background: var(--rubro);
  transform: translate(-50%, -50%);
  transition: transform var(--t);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-out); }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 0 30px;
  color: var(--stone);
  line-height: 1.65;
  font-size: 1rem;
  max-width: 70ch;
}

/* ------------------------------- Blog cards ------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 40px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.blog-card {
  display: flex;
  flex-direction: column;
  transition: transform var(--t);
}
.blog-card:hover { transform: translateY(-4px); }
.blog-thumb {
  aspect-ratio: 16/11;
  background: linear-gradient(135deg, var(--rubro-soft) 0%, var(--rubro-deep) 100%);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}
.blog-thumb.sage {
  background: linear-gradient(135deg, var(--salmao-deep) 0%, var(--rubro) 100%);
}
.blog-thumb.warm {
  background: linear-gradient(135deg, var(--salmao-soft) 0%, var(--salmao-deep) 100%);
}
.blog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(250, 245, 238, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.blog-thumb a {
  position: absolute;
  inset: 0;
  display: block;
  cursor: pointer;
}
.blog-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out);
  display: block;
}
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-body { padding: 0; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rubro);
  font-weight: 700;
  margin-bottom: 14px;
}
.blog-card h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  font-weight: 500;
  line-height: 1.18;
}
.blog-card h3 a { color: var(--ink); transition: color var(--t-fast); }
.blog-card h3 a:hover { color: var(--rubro); }
.blog-card p {
  color: var(--stone);
  font-size: 0.96rem;
  flex: 1;
  margin-bottom: 22px;
}
.blog-card .link-arrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rubro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-self: flex-start;
}

/* ------------------------------- Artigo individual ------------------------------- */
.article-header {
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(245, 184, 158, 0.15) 0%, transparent 50%),
    var(--ivory-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-header .meta {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rubro);
  font-weight: 700;
  margin-bottom: 24px;
}
.article-header h1 {
  max-width: 850px;
  margin: 0 auto 24px;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
}
.article-header .subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  color: var(--stone);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.45;
}
.article-cover {
  display: block;
  max-width: 720px;
  margin: -32px auto 0;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  position: relative;
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-body {
  max-width: 700px;
  margin: 0 auto;
  padding: 88px 24px;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--ink-soft);
}
.article-body h2 {
  margin-top: 2.4em;
  margin-bottom: 0.5em;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
}
.article-body h3 {
  margin-top: 1.8em;
  margin-bottom: 0.4em;
  font-size: 1.35rem;
}
.article-body p { margin-bottom: 1.4em; }
.article-body blockquote {
  border-left: 3px solid var(--salmao-deep);
  padding: 6px 0 6px 32px;
  margin: 1.8em 0;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-style: italic;
  color: var(--rubro);
  line-height: 1.45;
}
.article-body ul, .article-body ol { margin: 0 0 1.4em 1.5em; }
.article-body li { margin-bottom: 0.7em; }

/* ------------------------------- CTA banner ------------------------------- */
.cta-banner {
  background:
    radial-gradient(ellipse at top right, rgba(245, 184, 158, 0.20) 0%, transparent 50%),
    linear-gradient(135deg, var(--rubro) 0%, var(--rubro-deep) 100%);
  padding: 72px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--ivory);
  margin: 0 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 480px;
  height: 480px;
  background-image: url('../assets/logo/symbol-salmao.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.10;
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--ivory);
  max-width: 740px;
  margin: 0 auto 22px;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}
.cta-banner p {
  max-width: 580px;
  margin: 0 auto 36px;
  color: rgba(250, 245, 238, 0.85);
  font-size: 1.05rem;
}
.cta-banner .btn-primary {
  background: var(--salmao);
  color: var(--rubro-deep);
}
.cta-banner .btn-primary:hover {
  background: var(--ivory);
  color: var(--rubro-deep);
}

/* ------------------------------- Contato ------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.3fr;
  gap: 72px;
  margin-top: 64px;
}
.contact-info {
  background: var(--ivory-warm);
  padding: 52px 44px;
  border-radius: var(--radius-md);
  position: sticky;
  top: 120px;
  align-self: flex-start;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background-image: url('../assets/logo/symbol-rubro.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
  font-weight: 500;
}
.contact-info ul { list-style: none; margin-top: 32px; }
.contact-info li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(107, 79, 88, 0.18);
  align-items: flex-start;
}
.contact-info li:last-child { border-bottom: none; }
.contact-info .icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rubro);
}
.contact-info .icon svg { width: 18px; height: 18px; }
.contact-info strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 5px;
  font-weight: 700;
}
.contact-info a, .contact-info span { color: var(--ink); font-size: 1rem; }
.contact-info a:hover { color: var(--rubro); }

.contact-form {
  background: var(--ivory);
  padding: 52px 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--ivory);
  color: var(--ink);
  transition: border-color var(--t-fast);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rubro);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ------------------------------- Footer ------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 245, 238, 0.72);
  padding: 96px 0 32px;
  font-size: 0.94rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  bottom: -240px; left: -240px;
  width: 640px;
  height: 640px;
  background-image: url('../assets/logo/symbol-salmao.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.045;
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer-brand .brand { color: var(--ivory); font-size: 1.55rem; }
.footer-brand .brand::before {
  background-image: url('../assets/logo/symbol-salmao.png');
}
.footer-brand .brand small { color: var(--salmao); }
.footer-brand p {
  margin-top: 20px;
  max-width: 340px;
  color: rgba(250, 245, 238, 0.55);
  line-height: 1.6;
}
.footer-col h5 {
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(250, 245, 238, 0.65);
  font-size: 0.94rem;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--salmao); }
.footer-bottom {
  border-top: 1px solid rgba(250, 245, 238, 0.10);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(250, 245, 238, 0.45);
}

/* ------------------------------- Cookie banner LGPD ------------------------------- */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--rubro-deep);
  color: var(--ivory);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: 0 18px 48px rgba(26,11,18,0.32);
  z-index: 200;
  display: none;
  font-size: 0.92rem;
  line-height: 1.5;
}
.cookie-banner.show { display: block; }
.cookie-banner p { margin: 0 0 14px; color: rgba(250, 245, 238, 0.88); max-width: none; }
.cookie-banner a { color: var(--salmao); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner button {
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}
.cookie-banner .cookie-accept { background: var(--salmao); color: var(--rubro-deep); }
.cookie-banner .cookie-accept:hover { background: var(--ivory); transform: translateY(-1px); }
.cookie-banner .cookie-refuse {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(250, 245, 238, 0.32);
}
.cookie-banner .cookie-refuse:hover { background: rgba(250, 245, 238, 0.08); }
@media (max-width: 560px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px 18px; }
  .cookie-banner button { flex: 1; }
}

/* ------------------------------- Landing Page ------------------------------- */
.lp-body { background: var(--ivory); }
.lp-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.lp-shell .brand small { color: var(--rubro); }
.lp-hero {
  padding: 64px 0 80px;
  background:
    radial-gradient(circle at 85% 10%, rgba(245, 184, 158, 0.20) 0%, transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(139, 26, 58, 0.07) 0%, transparent 55%),
    var(--ivory);
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: 50%; right: -200px;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background-image: url('../assets/logo/symbol-rubro.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.04;
  pointer-events: none;
}
.lp-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lp-hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  margin-bottom: 24px;
  line-height: 1.05;
  font-weight: 400;
}
.lp-hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 52ch;
  margin-bottom: 30px;
}
.lp-checks {
  list-style: none;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}
.lp-checks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--ink);
}
.lp-checks li::before {
  content: '✓';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--salmao);
  color: var(--rubro-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.lp-form {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-deep);
  position: relative;
}
.lp-form h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.lp-form .form-subtitle {
  font-size: 0.92rem;
  color: var(--stone);
  margin-bottom: 24px;
}
.lp-form button[type="submit"] {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  background: var(--rubro);
  color: var(--ivory);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: all var(--t);
}
.lp-form button[type="submit"]:hover {
  background: var(--rubro-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-deep);
}
.lp-form .form-disclaimer {
  font-size: 0.78rem;
  color: var(--stone-light);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.lp-emergency {
  background: var(--ivory-warm);
  border-left: 3px solid var(--salmao-deep);
  padding: 28px 32px;
  margin: 64px auto;
  max-width: 760px;
  border-radius: var(--radius-md);
}
.lp-emergency strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rubro);
  margin-bottom: 14px;
}
.lp-emergency ul { list-style: none; padding: 0; margin: 0; }
.lp-emergency li { margin: 8px 0; font-size: 0.96rem; }
.lp-trust {
  text-align: center;
  padding: 56px 32px;
  background: var(--ivory-warm);
  position: relative;
  overflow: hidden;
}
.lp-trust h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 36px;
}
.lp-trust-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.lp-trust-item .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--rubro);
  display: block;
  line-height: 1;
}
.lp-trust-item .lbl {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-light);
  font-weight: 700;
  margin-top: 8px;
  display: block;
}
.lp-quote {
  max-width: 780px;
  margin: 64px auto;
  padding: 0 32px;
  text-align: center;
}
.lp-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--rubro);
  line-height: 1.45;
  margin: 0 0 18px;
}
.lp-quote cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
  font-weight: 700;
}
.lp-footer {
  background: var(--ink);
  color: rgba(250, 245, 238, 0.72);
  padding: 36px 32px;
  text-align: center;
  font-size: 0.82rem;
}
.lp-footer a { color: var(--salmao); }
.lp-footer .sep { margin: 0 12px; opacity: 0.4; }

/* ------------------------------- WhatsApp flutuante ------------------------------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.40);
  z-index: 99;
  transition: transform var(--t);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ------------------------------- Selo CRP ------------------------------- */
.crp-seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--ink);
  font-weight: 600;
}
.crp-seal::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--rubro);
  border-radius: 50%;
}

/* ------------------------------- Stats ------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* Trust bar (3 stats no início) — fonte grande, espaço respirado */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  align-items: center;
}
.trust-item { padding: 8px 16px; }
.trust-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--rubro);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.trust-lbl {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-light);
  font-weight: 700;
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-bar { padding: 36px 0; }
}

.stat { text-align: left; padding: 40px 32px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  color: var(--rubro);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 400;
  font-style: italic;
}

/* Acento Molot em momentos de impacto da marca */
.brand-mark {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 400;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-light);
  font-weight: 700;
}

/* ------------------------------- Page hero (interior) ------------------------------- */
.page-hero {
  padding: 80px 0 60px;
  background: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Marca d'água principal centralizada atrás do título, BEM sutil, ar de "selo" */
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(620px, 80vw);
  height: min(620px, 80vw);
  background-image: url('../assets/logo/symbol-rubro.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
}
/* Acento secundário discreto na borda inferior direita */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 24px; right: 32px;
  width: 140px; height: 140px;
  background-image: url('../assets/logo/symbol-salmao.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
@media (max-width: 720px) {
  .page-hero::after { display: none; }
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-weight: 400;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--stone);
  font-size: 1.12rem;
}
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 24px;
  font-weight: 600;
}
.breadcrumb a { color: var(--stone-light); }
.breadcrumb a:hover { color: var(--rubro); }

/* ------------------------------- Divisor ------------------------------- */
.divider {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--salmao-deep);
  margin: 56px auto;
}

/* ------------------------------- Responsive ------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(250, 245, 238, 0.12);
    margin-right: 0;
    padding-bottom: 36px;
  }
}
@media (max-width: 880px) {
  section { padding: var(--space-lg) 0; }
  .hero { padding: 60px 0 90px; }
  .hero::before { width: 600px; height: 600px; right: -40%; opacity: 0.035; }
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .hero-badge { position: relative; bottom: auto; left: auto; margin: 24px auto 0; }
  .contact-info { position: static; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .nav-links {
    position: fixed;
    top: 74px;
    left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 36px 32px;
    border-bottom: 1px solid var(--line);
    gap: 24px;
    transform: translateY(-120%);
    transition: transform var(--t);
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .brand::before { width: 36px; height: 36px; }
  .brand { font-size: 1.2rem; }
}
@media (max-width: 560px) {
  :root {
    --space-xl: 72px;
    --space-2xl: 100px;
  }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.4rem; }
  .container, .container-narrow { padding: 0 22px; }
  .contact-info, .contact-form { padding: 36px 26px; }
  .cta-banner { padding: 64px 28px; margin: 0 16px; }
  .article-body { padding: 56px 22px; }
  .nav { padding: 14px 22px; }
}

/* ------------------------------- Acessibilidade ------------------------------- */
:focus-visible {
  outline: 2px solid var(--rubro);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100px; left: 0;
  background: var(--rubro);
  color: var(--ivory);
  padding: 12px 22px;
  text-decoration: none;
  z-index: 999;
}
.skip-link:focus { top: 0; }

/* ------------------------------- Animações ------------------------------- */
.no-js .fade-in,
.no-js .fade-in-stagger > * { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  .fade-in-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }
  .fade-in-stagger.visible > * { opacity: 1; transform: translateY(0); }
  .fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
  .fade-in-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
  .fade-in-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
  .fade-in-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
  .fade-in-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
  .fade-in-stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { transition-duration: 0ms !important; animation-duration: 0ms !important; }
}

/* ======================================================================
 * Posicionamento de crop específico das capas com foco intencional
 * Aplica tanto em cards (.blog-thumb / .blog-card) quanto na capa grande
 * (.article-cover) do post individual.
 * ====================================================================== */

/* Borboleta-atlas com figura humana — foco nas asas (centro-topo) */
.blog-thumb img[src*="depois-da-sessao"],
.blog-card img[src*="depois-da-sessao"],
.article-cover img[src*="depois-da-sessao"] {
  object-position: center 38% !important;
}

/* Tambor à noite — foco no corpo da Aline (centro vertical) */
.blog-thumb img[src*="violencia-nomear"],
.blog-card img[src*="violencia-nomear"],
.article-cover img[src*="violencia-nomear"] {
  object-position: center 35% !important;
}

/* Silhueta braços ao sol — foco na silhueta principal */
.blog-thumb img[src*="potencia"],
.blog-card img[src*="potencia"],
.article-cover img[src*="potencia"] {
  object-position: center 40% !important;
}

/* Cacto em formato de coração — foco no coração do cacto */
.blog-thumb img[src*="armadilha-do-depois"],
.blog-card img[src*="armadilha-do-depois"],
.article-cover img[src*="armadilha-do-depois"] {
  object-position: 42% 52% !important;
}

/* Pés na grama com folhas secas — foco na grama verde entre folhas e pés (limite) */
.blog-thumb img[src*="importunacao-online"],
.blog-card img[src*="importunacao-online"],
.article-cover img[src*="importunacao-online"] {
  object-position: center 65% !important;
}

/* Aline na poltrona (ética profissional) — foco no rosto */
.blog-thumb img[src*="etica-profissional-psicologo"],
.blog-card img[src*="etica-profissional-psicologo"],
.article-cover img[src*="etica-profissional-psicologo"] {
  object-position: center 30% !important;
}

/* Mulher de costas em meditação no mar — foco na cabeça (silhueta superior) */
.blog-thumb img[src*="voce-nao-precisa"],
.blog-card img[src*="voce-nao-precisa"],
.article-cover img[src*="voce-nao-precisa"] {
  object-position: center 38% !important;
}

/* Aline com braço estendido entre bambus — foco no braço/mão em primeiro plano */
.blog-thumb img[src*="terapia-vs-psicoterapia"],
.blog-card img[src*="terapia-vs-psicoterapia"],
.article-cover img[src*="terapia-vs-psicoterapia"] {
  object-position: 25% center !important;
}

/* Aline ao entardecer dourado — foco no rosto levantado */
.blog-thumb img[src*="por-que-fazer-psicoterapia"],
.blog-card img[src*="por-que-fazer-psicoterapia"],
.article-cover img[src*="por-que-fazer-psicoterapia"] {
  object-position: center 30% !important;
}


/* =============================================================================
 * MOBILE LAYER — interface responsiva pra celular
 * Não modifica nada do desktop. Ativa automaticamente em telas < 768px.
 * Breakpoints:
 *   - 768px: tablet/landscape phone
 *   - 480px: smartphone vertical
 *   - 360px: telas muito pequenas
 * ============================================================================= */

@media (max-width: 768px) {

  /* ----- Tipografia: escala suave pra telas pequenas ----- */
  html { font-size: 15px; }
  h1 { font-size: clamp(2rem, 9vw, 2.8rem) !important; line-height: 1.08; }
  h2 { font-size: clamp(1.7rem, 6.5vw, 2.2rem) !important; line-height: 1.15; }
  h3 { font-size: 1.25rem !important; }
  .lead { font-size: 1.05rem !important; line-height: 1.55; }

  /* ----- Container: padding lateral consistente ----- */
  .container, .container-narrow { padding: 0 20px; }

  /* ----- Header / Nav ----- */
  .site-header { padding: 8px 0; }
  .nav { padding: 12px 20px; align-items: center; }
  .brand { font-size: 1.05rem; gap: 10px; }
  .brand::before { width: 32px; height: 32px; }
  .brand-text small {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
  }
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px !important;
    height: 44px !important;
    padding: 10px;
    background: transparent !important;
    border: 1px solid rgba(139, 26, 58, 0.18) !important;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    z-index: 110;
    flex-shrink: 0;
  }
  .menu-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: var(--rubro) !important;
    border-radius: 2px;
    margin: 0 !important;
    transition: transform 0.25s var(--t), opacity 0.25s var(--t);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Drawer do menu por baixo do header, deslizando suave */
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 28px 24px 36px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(26, 11, 18, 0.08);
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease-out);
    z-index: 90;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(139, 26, 58, 0.08);
  }
  .nav-links a.nav-cta {
    margin-top: 14px;
    border-bottom: 0;
    text-align: center;
  }

  /* Trava o scroll quando o drawer está aberto */
  body.menu-open { overflow: hidden; }

  /* ----- Hero (página inicial) ----- */
  .hero { padding: 32px 0 56px !important; }
  .hero-grid {
    display: flex !important;
    flex-direction: column;
    gap: 32px;
  }
  /* Foto principal da Aline — aparece ANTES do texto no mobile (círculo perfeito) */
  .hero-visual {
    display: flex !important;
    width: min(78vw, 320px) !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 1/1 !important;
    margin: 0 auto !important;
    order: -1 !important;
    opacity: 1 !important;
    transform: none !important;
    flex-shrink: 0;
    align-self: center;
  }
  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero::before { display: none; }

  /* ----- Page hero (interior) ----- */
  .page-hero { padding: 48px 0 36px !important; }
  .page-hero::after { display: none !important; }

  /* ----- Trust bar ----- */
  .trust-bar { padding: 28px 0 !important; }
  .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .trust-item { padding: 4px 0; }
  .trust-num { font-size: 2.4rem !important; margin-bottom: 6px !important; }
  .trust-lbl { font-size: 0.75rem !important; }

  /* ----- Seções gerais ----- */
  section { padding: 56px 0 !important; }
  section.tight { padding: 36px 0 !important; }
  .about-grid, .contact-grid {
    display: flex !important;
    flex-direction: column;
    gap: 32px !important;
  }
  /* Foto sempre antes do texto no mobile (imersivo no scroll) */
  .about-grid > .about-image {
    order: -1 !important;
    display: block !important;
    width: 100% !important;
    aspect-ratio: 4/5 !important;
    max-height: 480px !important;
    min-height: 320px !important;
  }
  .about-image img,
  .about-image .portrait {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* ----- Service cards ----- */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .service-card {
    padding: 32px 24px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }
  .service-card:last-child { border-bottom: none; }
  .service-num { font-size: 1.25rem !important; }

  /* ----- Blog grid ----- */
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .blog-card { padding: 0; }
  .blog-thumb { aspect-ratio: 16/10; margin-bottom: 18px; }
  .blog-meta { font-size: 0.68rem; }
  .blog-card h3 { font-size: 1.3rem !important; line-height: 1.25; }

  /* ----- Testimonials ----- */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .testimonial { padding: 28px 24px !important; }
  .testimonial-featured {
    padding: 36px 26px !important;
    grid-template-columns: 1fr !important;
  }
  .testimonial-featured blockquote { font-size: 1.15rem !important; }

  /* ----- Forms ----- */
  .form-row { grid-template-columns: 1fr !important; gap: 14px !important; }
  .contact-info, .contact-form { padding: 28px 22px !important; }
  input, textarea, select {
    font-size: 16px !important; /* evita zoom no iOS */
  }
  button[type="submit"], .btn { padding: 14px 24px; font-size: 0.92rem; }

  /* ----- CTA banner ----- */
  .cta-banner {
    padding: 48px 24px !important;
    margin: 0 16px !important;
    border-radius: var(--radius-md);
  }
  .cta-banner h2 { font-size: 1.7rem !important; }
  .cta-banner p { font-size: 0.98rem; }
  .cta-banner .btn { width: 100%; max-width: 320px; }

  /* ----- Footer ----- */
  .site-footer { padding: 56px 0 32px !important; }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .footer-brand { grid-column: span 1; }
  .footer-col h5 { margin-bottom: 14px; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    font-size: 0.78rem;
    padding-top: 24px;
  }

  /* ----- WhatsApp flutuante ----- */
  .wa-float {
    bottom: 18px !important;
    right: 18px !important;
    width: 54px !important;
    height: 54px !important;
  }
  .wa-float svg { width: 28px; height: 28px; }

  /* ----- Artigo individual (blog post) ----- */
  .article-header { padding: 48px 0 36px !important; }
  .article-header h1 { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; }
  .article-cover { margin: 24px -20px 32px !important; border-radius: 0; }
  .article-cover img { border-radius: 0; }
  .article-body { padding: 8px 4px 48px !important; font-size: 1.05rem; line-height: 1.7; }
  .article-body h2 { margin-top: 36px; font-size: 1.4rem !important; }
  .article-body blockquote { padding: 18px 22px; font-size: 1.08rem; margin: 24px 0; }

  /* ----- FAQ ----- */
  .faq-question { padding: 18px 16px !important; font-size: 1rem !important; }
  .faq-answer-inner { padding: 8px 16px 22px !important; font-size: 0.98rem; }

  /* ----- Stats (sobre.html legacy) ----- */
  .stats { grid-template-columns: 1fr !important; }
  .stat {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
    padding: 28px 24px !important;
    text-align: center !important;
  }
  .stat:last-child { border-bottom: none; }

  /* ----- Eyebrow / section-num: legibilidade ----- */
  .eyebrow { font-size: 0.78rem !important; letter-spacing: 0.22em; margin-bottom: 18px !important; }
  .section-num { font-size: 1.05rem !important; margin-bottom: 16px !important; }

  /* ----- Listas inline em forma de cards ----- */
  ul[style*="margin-left"] { margin-left: 1em !important; }
  ul[style*="margin-left"] li { padding: 6px 0; line-height: 1.5; }

  /* ----- Banner cookies ----- */
  .cookie-banner {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 18px 20px !important;
    gap: 14px !important;
    text-align: left;
  }
  .cookie-banner button { width: 100%; }

  /* ----- LP (landing page violência) ----- */
  .lp-shell { padding: 14px 20px !important; flex-direction: column; gap: 8px; }
  .lp-grid {
    display: flex !important;
    flex-direction: column;
    gap: 32px !important;
  }
  .lp-form { padding: 28px 22px !important; }
  .lp-hero h1 { font-size: clamp(1.9rem, 7.5vw, 2.4rem) !important; }
  .lp-trust-grid { grid-template-columns: 1fr 1fr !important; gap: 18px !important; }
  .crp-seal { font-size: 0.7rem; }
}

/* ----- Telas muito pequenas (≤ 480px): ajustes finos ----- */
@media (max-width: 480px) {
  .brand-text small { display: none; }
  h1 { font-size: clamp(1.8rem, 9vw, 2.3rem) !important; }

  .container, .container-narrow { padding: 0 16px; }
  section { padding: 44px 0 !important; }

  .testimonial-featured blockquote { font-size: 1.05rem !important; }
  .cta-banner { padding: 36px 20px !important; margin: 0 12px !important; }
  .cta-banner h2 { font-size: 1.4rem !important; }

  .hero-visual { max-width: 260px !important; }

  /* Form da LP em telas muito pequenas */
  .lp-form h2 { font-size: 1.35rem; }
}

/* ----- Telas mini (≤ 360px) ----- */
@media (max-width: 360px) {
  html { font-size: 14px; }
  .brand { font-size: 0.92rem; }
  .brand::before { width: 28px; height: 28px; }
}

/* ----- Otimização touch: alvos clicáveis ≥ 44px (WCAG) ----- */
@media (max-width: 768px) and (pointer: coarse) {
  .nav-links a,
  .btn,
  button[type="submit"],
  .faq-question,
  .blog-card a,
  .link-arrow {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .blog-thumb a { min-height: unset; } /* o link cobre toda a thumb */
}

