/* =========================================================================
   Indiara de Lima · Psicóloga Clínica
   Identidade: azul profundo + dourado suave + branco · sofisticação silenciosa
   ========================================================================= */

/* ----------  Tokens  ---------- */
:root {
  /* Marca */
  --blue-900: #00263f;
  --blue-800: #004169;   /* primária da marca */
  --blue-700: #0a5580;
  --gold-500: #b09a7e;   /* dourado aprofundado (texto/hover sobre branco) */
  --gold-400: #cbbaa1;   /* dourado claro da marca */
  --gold-200: #e7ded1;
  --gold-100: #f2ece1;

  --paper:    #ffffff;
  --paper-2:  #f7f4ef;   /* seção alternada, off-white quente */
  --paper-3:  #eef4f7;   /* azul lavado bem sutil */

  --ink:      #1b2b34;   /* corpo */
  --ink-soft: #566670;   /* muted */
  --line:     rgba(0, 65, 105, 0.14);
  --line-gold:rgba(176, 154, 126, 0.4);

  /* Tipografia */
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Métrica */
  --container: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
  --radius: 2px;

  --shadow-soft: 0 1px 2px rgba(0, 38, 63, 0.04), 0 12px 40px -12px rgba(0, 38, 63, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Grão de papel muito sutil para dar profundidade */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }

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

:focus-visible {
  outline: 2px solid var(--blue-800);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ----------  Tipografia  ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--blue-800);
}
h1 { font-size: clamp(2.4rem, 1.6rem + 3.8vw, 5.25rem); }
h2 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 1.15rem + 1vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p + p { margin-top: 1em; }
strong { font-weight: 500; color: var(--blue-800); }
em { font-style: italic; }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.05rem + 1.1vw, 1.85rem);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--line-gold);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--line-gold);
}

/* ----------  Layout  ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--paper-2); }
.section--blue {
  background: var(--blue-800);
  color: rgba(255, 255, 255, 0.82);
}
.section--blue h2, .section--blue h3 { color: #fff; }
.section--blue .eyebrow { color: var(--gold-400); }
.section--blue .eyebrow::before, .section--blue .eyebrow::after { background: rgba(203, 186, 161, 0.4); }

.section__head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head .eyebrow { margin-bottom: 1.4rem; }
.section__head p { margin-top: 1.1rem; color: var(--ink-soft); }
.section--blue .section__head p { color: rgba(255, 255, 255, 0.72); }

.section__index {
  position: absolute;
  top: var(--section-y);
  right: var(--gutter);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-500);
  letter-spacing: 0.05em;
}
@media (max-width: 720px) { .section__index { display: none; } }

/* Glifo do olho — divisor */
.eye-rule {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--line-gold);
}
.eye-rule::before, .eye-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.eye-rule svg { width: 34px; height: 22px; color: var(--gold-500); flex: none; }

/* ----------  Marca / brandmark  ---------- */
.brandmark { width: 100%; height: 100%; display: block; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--blue-800);
}
.logo__eye { width: 46px; height: 29px; flex: none; color: var(--gold-500); transition: transform 0.6s var(--ease); }
.logo:hover .logo__eye { transform: rotateY(180deg); }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.logo__role {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.28rem;
}

/* ----------  Botões  ---------- */
.btn {
  --btn-bg: var(--blue-800);
  --btn-fg: #fff;
  --btn-bd: var(--blue-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 1.05em 1.9em;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover, .btn:focus-visible { background: var(--blue-900); border-color: var(--blue-900); transform: translateY(-2px); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--blue-800);
  --btn-bd: var(--line);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: var(--blue-800);
  color: #fff;
  border-color: var(--blue-800);
}

/* Dourado suave (padrão do guia) */
.btn--ghost-gold {
  --btn-bg: #ffffff;
  --btn-fg: var(--blue-800);
  --btn-bd: #d8c7ae;
}
.btn--ghost-gold:hover, .btn--ghost-gold:focus-visible {
  background: #ffffff;
  color: var(--blue-800);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}
.btn--ghost-gold svg { width: 15px; height: 15px; }

.btn--on-blue {
  --btn-bg: var(--gold-400);
  --btn-fg: var(--blue-900);
  --btn-bd: var(--gold-400);
}
.btn--on-blue:hover, .btn--on-blue:focus-visible { background: #fff; border-color: #fff; }

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

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-800);
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--line-gold);
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.textlink:hover { gap: 1em; border-color: var(--blue-800); }
.section--blue .textlink { color: #fff; border-color: rgba(203,186,161,0.5); }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(255,255,255,0.95); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.1rem;
}
.nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.75rem); }
.nav__link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding-block: 0.4rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--blue-800); }

.header__cta { display: flex; align-items: center; gap: 1.25rem; }
.header__cta .btn { padding: 0.85em 1.5em; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--blue-800);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .header__cta .btn--header { display: none; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 360px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 3rem var(--gutter);
    background: var(--paper-2);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.5s var(--ease), visibility 0.5s;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }
  .nav__link { font-size: 1.4rem; font-family: var(--serif); letter-spacing: 0; }
  .nav__link::after { display: none; }
  .nav__mobile-cta { margin-top: 1rem; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(0, 38, 63, 0.35);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    z-index: 99;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}
@media (min-width: 941px) { .nav__mobile-cta { display: none; } }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 6rem) clamp(4rem, 9vw, 7.5rem); overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  right: -14vw; top: -8vw;
  width: 46vw; height: 46vw;
  max-width: 620px; max-height: 620px;
  background: radial-gradient(circle at center, var(--paper-3), transparent 68%);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero__content { display: flex; flex-direction: column; align-items: flex-start; }
.hero__eyebrow { margin-bottom: 1.8rem; }
.hero__title { margin-bottom: 0; }
.hero__title .accent { font-style: italic; color: var(--gold-500); }
.hero__sub {
  margin-top: 1.8rem;
  max-width: 34rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero__meta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  width: 100%;
}
.hero__meta li { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__meta .n {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--blue-800);
  font-weight: 500;
}
.hero__meta .l {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero__portrait {
  position: relative;
  align-self: center;
  aspect-ratio: 896 / 1120;
  width: 100%;
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(0.1);
}
.hero__frame {
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius);
  z-index: -1;
}
.hero__badge {
  position: absolute;
  left: -14px; bottom: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.9rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-soft);
}
.hero__badge svg { width: 26px; height: 17px; color: var(--gold-500); flex: none; }
.hero__badge span { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.hero__badge strong { display: block; font-family: var(--serif); font-size: 1rem; letter-spacing: 0.02em; color: var(--blue-800); }

/* placeholder de imagem */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background:
    repeating-linear-gradient(45deg, var(--paper-2), var(--paper-2) 12px, #f1ece3 12px, #f1ece3 24px);
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px dashed var(--line-gold);
}
.hero__portrait .img-placeholder { position: absolute; inset: 0; }

@media (max-width: 960px) {
  .hero__inner { display: flex; flex-direction: column; align-items: stretch; }
  .hero__content { display: contents; }
  .hero__eyebrow  { order: 1; }
  .hero__title    { order: 2; }
  .hero__portrait { order: 3; width: 100%; max-width: 400px; margin-inline: auto; margin-top: 2.5rem; }
  .hero__sub      { order: 4; margin-top: 2rem; }
  .hero__actions  { order: 5; }
  .hero__meta     { order: 6; }
  .hero__frame { inset: 10px -10px -10px 10px; }
}
@media (max-width: 420px) {
  .hero__actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero__actions .btn { width: 100%; }
}

/* =========================================================================
   FAIXA DE ASSINATURA
   ========================================================================= */
.signature {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}
.signature p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--blue-800);
  line-height: 1.3;
  max-width: 30ch;
  margin-inline: auto;
  text-wrap: balance;
}
.signature .eye-rule { max-width: 220px; margin: 0 auto 1.75rem; }

/* =========================================================================
   SOBRE (resumo)
   ========================================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__media { position: relative; }
.about__media img { width: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 843 / 1000; }
.about__media .img-placeholder { aspect-ratio: 843 / 1000; }
.about__media::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1px solid var(--line-gold);
  z-index: -1;
}
.about__body h2 { margin-bottom: 1.5rem; }
.about__values {
  margin-top: 2.25rem;
  display: grid;
  gap: 1.1rem;
}
.about__values li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.about__values svg { width: 18px; height: 12px; margin-top: 0.42rem; color: var(--gold-500); flex: none; }
.about__values strong { color: var(--blue-800); font-weight: 500; }
.about__cta { margin-top: 2.5rem; }

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 380px; }
  .about__media::before { inset: -10px 10px 10px -10px; }
}

/* =========================================================================
   SERVIÇOS
   ========================================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  border: 1px solid var(--line);
  padding: 2.25rem 1.9rem;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.card:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-500);
  margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 0.9rem; font-size: 1.4rem; }
.card p { font-size: 0.95rem; color: var(--ink-soft); }
.card__foot { margin-top: auto; padding-top: 1.5rem; }
.section--blue .card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.16); color: rgba(255,255,255,0.78); }
.section--blue .card h3 { color: #fff; }
.section--blue .card:hover { border-color: var(--gold-400); }

@media (max-width: 900px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

/* =========================================================================
   ESPECIALIDADES
   ========================================================================= */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.spec-grid li {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 1.5rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.4s var(--ease);
}
.spec-grid li:hover { background: var(--paper-2); }
.spec-grid .idx { font-family: var(--serif); font-style: italic; color: var(--gold-500); font-size: 0.9rem; }
.spec-grid h3 { font-size: 1.3rem; }
@media (max-width: 900px) { .spec-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .spec-grid { grid-template-columns: 1fr; } .spec-grid li { min-height: 0; } }

/* =========================================================================
   COMO FUNCIONA
   ========================================================================= */
.steps { display: grid; gap: 0; counter-reset: step; max-width: 60rem; }
.step {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold-400);
  line-height: 1;
}
.step h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.96rem; color: var(--ink-soft); }
.section--blue .step { border-color: rgba(255,255,255,0.16); }
.section--blue .step p { color: rgba(255,255,255,0.7); }
@media (max-width: 560px) {
  .step { grid-template-columns: 1fr; gap: 0.5rem; }
  .step__n { font-size: 1.8rem; }
}

/* =========================================================================
   MODALIDADES
   ========================================================================= */
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mode {
  border: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--paper);
}
.mode__label {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: 1.5rem;
}
.mode__label svg { width: 22px; height: 14px; }
.mode h3 { margin-bottom: 0.9rem; }
.mode p { color: var(--ink-soft); font-size: 0.96rem; }
.mode address { font-style: normal; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 720px) { .modes { grid-template-columns: 1fr; } }

/* =========================================================================
   BLOG
   ========================================================================= */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.posts--list { grid-template-columns: 1fr; gap: 0; }
.post {
  display: flex;
  flex-direction: column;
}

/* Miniatura / campo de foto */
.post__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  margin-bottom: 1.4rem;
}
.post__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.post:hover .post__thumb img { transform: scale(1.04); }
.post__thumb .img-placeholder { position: absolute; inset: 0; font-size: 0.62rem; }
.post__thumb--soon { filter: grayscale(1); opacity: 0.65; }
.post__thumb--soon .img-placeholder { border-style: solid; }

.post__content { display: flex; flex-direction: column; flex: 1; }

.posts--list .post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-block: 2.5rem;
  border-top: 1px solid var(--line);
}
.posts--list .post:last-child { border-bottom: 1px solid var(--line); }
.posts--list .post__thumb { margin-bottom: 0; aspect-ratio: 3 / 2; max-width: 460px; }
@media (min-width: 820px) {
  .posts--list .post { grid-template-columns: 17rem 1fr; gap: 2.75rem; padding-block: 2.75rem; align-items: start; }
  .posts--list .post__thumb { aspect-ratio: 4 / 3; max-width: none; }
}

.post__meta { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 0.9rem; }
.post h3 { font-size: 1.4rem; margin-bottom: 0.7rem; transition: color 0.3s var(--ease); }
.posts--list .post h3 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); }
.post:hover h3 { color: var(--gold-500); }
.post p { font-size: 0.93rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.post__more { margin-top: auto; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-800); display: inline-flex; gap: 0.5em; }
.post__more--soon { color: var(--ink-soft); }
@media (max-width: 900px) { .posts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .posts { grid-template-columns: 1fr; } }

/* Artigo individual */
.article { max-width: 44rem; margin-inline: auto; }
.article__header { margin-bottom: clamp(2rem, 4vw, 3rem); }
.article__cover {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--paper-2);
}
.article__cover img { width: 100%; height: 100%; object-fit: cover; }
.article__cover .img-placeholder { position: absolute; inset: 0; }
.article__header h1 { font-size: clamp(2.2rem, 1.6rem + 3vw, 3.6rem); margin-block: 1.25rem; }
.article__meta { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-500); }
.article__body > * + * { margin-top: 1.4rem; }
.article__body h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.1rem); margin-top: 2.75rem; }
.article__body h3 { font-size: 1.4rem; margin-top: 2rem; }
.article__body ul, .article__body ol { padding-left: 1.4rem; }
.article__body li { margin-top: 0.5rem; }
.article__body ul li { list-style: none; position: relative; }
.article__body ul li::before { content: ""; position: absolute; left: -1.4rem; top: 0.75em; width: 7px; height: 7px; border: 1px solid var(--gold-500); }
.article__body blockquote {
  border-left: 2px solid var(--gold-400);
  padding-left: 1.5rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--blue-800);
}
.article__note {
  margin-top: 3rem;
  padding: 1.5rem 1.75rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* =========================================================================
   CTA FINAL
   ========================================================================= */
.final-cta { text-align: center; }
.final-cta .container { max-width: 50rem; }
.final-cta h2 {
  font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  margin-block: 1.75rem;
}
.final-cta p { color: rgba(255,255,255,0.72); margin-bottom: 2.5rem; }
.final-cta .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   CONTATO
   ========================================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); }
.contact__list { display: grid; gap: 0; margin-top: 1rem; }
.contact__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  align-items: start;
}
.contact__item:last-child { border-bottom: 1px solid var(--line); }
.contact__item svg { width: 20px; height: 20px; color: var(--gold-500); margin-top: 0.2rem; }
.contact__item .k { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.contact__item .v { font-family: var(--serif); font-size: 1.15rem; color: var(--blue-800); margin-top: 0.2rem; }
.contact__item .v a:hover { color: var(--gold-500); }
.contact__item__link { display: contents; }
.contact__item__link:hover .v { color: var(--gold-500); text-decoration: underline; text-underline-offset: 3px; }
.contact__aside { background: var(--paper-2); border: 1px solid var(--line); padding: clamp(2rem, 4vw, 3rem); }
.contact__aside h3 { margin-bottom: 1rem; }
.contact__aside p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 1.75rem; }
.contact__map { margin-top: 1.5rem; border: 1px solid var(--line); width: 100%; aspect-ratio: 16 / 10; filter: grayscale(0.3) contrast(1.05); }
@media (max-width: 820px) { .contact__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.62);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
  font-size: 0.88rem;
}
.site-footer a:hover { color: var(--gold-400); }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand .logo { color: #fff; }
.footer__brand .logo__eye { color: var(--gold-400); }
.footer__brand .logo__role { color: rgba(255,255,255,0.5); }
.footer__brand p { margin-top: 1.5rem; max-width: 24rem; font-size: 0.85rem; }
.footer__col h4 { font-family: var(--sans); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.footer__col li { margin-bottom: 0.7rem; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
}
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; gap: 2rem; } }

/* =========================================================================
   WHATSAPP FLUTUANTE
   ========================================================================= */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--blue-800);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 30px -8px rgba(0, 38, 63, 0.5);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.wa-float:hover { transform: scale(1.08); background: var(--blue-900); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--blue-900);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}
.wa-float:hover::after { opacity: 1; transform: translateX(0); }
@media (max-width: 600px) { .wa-float::after { display: none; } }

/* =========================================================================
   PAGE HEADER (páginas internas)
   ========================================================================= */
.page-hero {
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 1.5rem; }
.page-hero h1 { max-width: 16ch; }
.page-hero p { margin-top: 1.5rem; max-width: 42rem; font-size: 1.1rem; color: var(--ink-soft); }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 2rem; }
.breadcrumb a:hover { color: var(--blue-800); }
.breadcrumb span { color: var(--gold-500); }

/* =========================================================================
   PROSE genérico
   ========================================================================= */
.prose { max-width: 44rem; }
.prose > * + * { margin-top: 1.35rem; }
.prose h2 { margin-top: 2.75rem; }
.prose h3 { margin-top: 1.75rem; }
.prose ul { display: grid; gap: 0.7rem; }
.prose ul li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 7px; height: 7px; border: 1px solid var(--gold-500); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 780px) { .two-col { grid-template-columns: 1fr; } }

/* =========================================================================
   REVEAL (animação de entrada)
   ========================================================================= */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }

/* Hero load stagger */
.hero [data-load] { opacity: 0; transform: translateY(20px); animation: loadUp 0.9s var(--ease) forwards; }
.hero [data-load="1"] { animation-delay: 0.1s; }
.hero [data-load="2"] { animation-delay: 0.22s; }
.hero [data-load="3"] { animation-delay: 0.34s; }
.hero [data-load="4"] { animation-delay: 0.46s; }
.hero [data-load="5"] { animation-delay: 0.58s; }
.hero [data-load="6"] { animation-delay: 0.7s; }
@keyframes loadUp { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero [data-load] { opacity: 1; transform: none; animation: none; }
}

.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--blue-800);
  color: #fff;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  z-index: 200;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 1rem; }
