/* ============================================================
   STYLES.CSS — Lara d'Almeida Psicóloga Institucional
============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

:root {
  --azul-escuro:  #153147;
  --azul-medio:   #1e4060;
  --azure:        #78909c;
  --laranja:      #b18e51;
  --laranja-claro:#e6dfd7;
  --branco:       #ffffff;
  --preto:        #111111;
  --off-white:    #f8f5f0;
  --cinza-suave:  #f3f0eb;
  --texto:        #2c2c2c;
  --texto-soft:   #5a5a5a;

  --font-title:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  --header-h:     84px;
  --radius:       4px;
  --radius-lg:    12px;
  --transition:   0.28s ease;

  --max-w:        1200px;
  --section-pad:  clamp(52px, 6.5vw, 80px) 0;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  color: var(--texto);
  background-color: var(--branco);
  -webkit-font-smoothing: antialiased;
}

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

/* ------------------------------------------------------------
   UTILITÁRIOS
------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.675rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 20px;
}
.section-tag--light { color: rgba(177,142,81,0.75); }

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--azul-escuro);
}
.section-title em { font-style: italic; font-weight: 300; color: var(--laranja); }
.section-title--white { color: var(--branco); }
.section-title--white em { color: rgba(177,142,81,0.85); }

.section-text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--texto-soft);
  max-width: 560px;
}
.section-text--light { color: rgba(255,255,255,0.72); }

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-header .section-text { margin: 20px auto 0; }

/* Decorativos — base */
.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  overflow: visible;
}

/* Logo LD como composição de fundo — padrão sem rotação */
.deco--hero-logo-bg {
  right: 0;
  bottom: -40px;
  width: min(320px, 30vw);
  height: auto;
  opacity: 0.05;
}
.deco--about-logo-bg {
  left: -40px;
  bottom: -40px;
  width: min(300px, 28vw);
  height: auto;
  opacity: 0.04;
}
.deco--evidence-logo-bg {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 48vw);
  height: auto;
  opacity: 0.04;
  filter: invert(1);
}
.deco--appt-logo-bg {
  right: 0;
  top: -40px;
  width: min(280px, 26vw);
  height: auto;
  opacity: 0.04;
}
.deco--closing-logo-bg {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, 45vw);
  height: auto;
  opacity: 0.05;
  filter: invert(1);
}

/* ------------------------------------------------------------
   BOTÕES — cantos arredondados em todos
------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { padding: 10px 22px; font-size: 0.72rem; }
.btn--lg { padding: 17px 38px; font-size: 0.82rem; }

.btn--primary { background: var(--laranja); color: var(--branco); border-color: var(--laranja); }
.btn--primary:hover { background: #9a7a42; border-color: #9a7a42; }

.btn--ghost { background: transparent; color: var(--azul-escuro); border-color: var(--azul-escuro); }
.btn--ghost:hover { background: var(--azul-escuro); color: var(--branco); }

.btn--outline-white { background: transparent; color: var(--branco); border-color: rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--branco); }

.btn--gold { background: var(--laranja); color: var(--branco); border-color: var(--laranja); }
.btn--gold:hover { background: #9a7a42; border-color: #9a7a42; }

.btn__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ------------------------------------------------------------
   ANIMAÇÕES DE ENTRADA
------------------------------------------------------------ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-fade-up.is-visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ------------------------------------------------------------
   HEADER
------------------------------------------------------------ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.header__logo { display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; object-fit: contain; }

/* Nav */
.header__nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 36px; }
.nav__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--azul-escuro);
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--laranja);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__link:hover::after, .nav__link--active::after { transform: scaleX(1); }
.nav__link:hover, .nav__link--active { color: var(--laranja); }

/* Header actions + divisor */
.header__actions { display: flex; align-items: center; gap: 16px; }
.header__divider {
  display: block;
  width: 1px;
  height: 20px;
  background: rgba(21,49,71,0.2);
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 4px;
}
.hamburger__line {
  display: block;
  height: 1.5px;
  background: var(--azul-escuro);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  width: 100%;
}
.hamburger__line:last-child { width: 65%; margin-left: auto; }
.hamburger.is-active .hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-active .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active .hamburger__line:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }

/* ------------------------------------------------------------
   HERO
------------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  padding: calc(var(--header-h) + clamp(56px, 8vw, 96px)) 0 clamp(72px, 10vw, 128px);
}

.deco--hero-arc {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 55vw);
  height: auto;
  opacity: 0.9;
}
.deco--hero-dots {
  left: 0;
  bottom: 40px;
  width: 64px;
  height: auto;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: clamp(48px, 6vw, 80px);
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.hero__content { max-width: 580px; }

/* Tag hero com canto arredondado */
.tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 24px;
  padding: 7px 18px;
  border: 1px solid rgba(177,142,81,0.3);
  border-radius: 50px;
  background: rgba(177,142,81,0.06);
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--azul-escuro);
  margin-bottom: 28px;
}
.hero__title em { font-style: italic; font-weight: 300; color: var(--laranja); }

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  color: var(--texto);
  line-height: 1.75;
  margin-bottom: 18px;
}
.hero__support {
  font-size: clamp(0.9rem, 1.3vw, 0.98rem);
  color: var(--texto-soft);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Foto do hero — coluna direita: foto + badges abaixo */
.hero__photo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--branco);
  box-shadow: 0 24px 64px rgba(21,49,71,0.12);
}
.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Badges em grid 2×2 abaixo da foto */
.hero__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--branco);
  border: 1px solid rgba(21,49,71,0.1);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--azul-escuro);
  letter-spacing: 0.02em;
}
.badge__icon { width: 14px; height: 14px; color: var(--laranja); flex-shrink: 0; }

/* ------------------------------------------------------------
   SOBRE — sem foto, 2 colunas texto + creds grid
------------------------------------------------------------ */
.about {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
  background: var(--branco);
}

.deco--about-arc {
  right: -80px;
  top: -60px;
  width: min(460px, 45vw);
  height: auto;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 7vw, 96px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.about__text-col .section-title { margin-bottom: 36px; }

.about__text {
  font-size: clamp(0.95rem, 1.4vw, 1.03rem);
  color: var(--texto-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about__text--highlight {
  color: var(--azul-escuro);
  font-weight: 500;
  padding-top: 6px;
  border-top: 1px solid rgba(177,142,81,0.25);
  margin-top: 8px;
}

/* Coluna de credenciais em coluna única */
.about__creds-col {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about__creds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.cred-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 16px;
  background: var(--off-white);
  border-left: 2px solid var(--laranja);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--azul-escuro);
  line-height: 1.4;
  transition: background var(--transition), transform var(--transition);
}
.cred-card:hover { background: var(--laranja-claro); transform: translateX(3px); }
.cred-card__icon { width: 18px; height: 18px; color: var(--laranja); flex-shrink: 0; margin-top: 1px; }

/* ------------------------------------------------------------
   SERVIÇOS / ÁREAS DE ATUAÇÃO
------------------------------------------------------------ */
.services {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
  background: var(--off-white);
}

.deco--services-arc {
  left: -60px;
  bottom: -60px;
  width: min(400px, 40vw);
  height: auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(21,49,71,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(21,49,71,0.1); transform: translateY(-3px); }

.service-card__icon-wrap {
  width: 48px; height: 48px;
  background: var(--azul-escuro);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.service-card__icon-wrap svg { width: 22px; height: 22px; stroke: var(--laranja); }

.service-card__title {
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 500;
  color: var(--azul-escuro);
  line-height: 1.3;
  margin-bottom: 14px;
}
.service-card__text { font-size: 0.88rem; color: var(--texto-soft); line-height: 1.7; flex: 1; }

/* ------------------------------------------------------------
   PRÁTICA BASEADA EM EVIDÊNCIAS
------------------------------------------------------------ */
.evidence {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
  background: var(--azul-escuro);
}

.deco--evidence-arc {
  right: -80px;
  bottom: -80px;
  width: min(500px, 48vw);
  height: auto;
}

.evidence__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(56px, 7vw, 80px);
}
.evidence__header .section-title { font-size: clamp(1.9rem, 2.8vw, 2.8rem); }
.evidence__header .section-text { margin: 20px auto 0; max-width: 580px; }

.evidence__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.pillar {
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 44px);
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background var(--transition);
}
.pillar:hover { background: rgba(255,255,255,0.07); }

.pillar__icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(177,142,81,0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.pillar__icon svg { width: 22px; height: 22px; stroke: var(--laranja); }

.pillar__divider { width: 28px; height: 1px; background: var(--laranja); margin-bottom: 20px; opacity: 0.6; }

.pillar__title {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 500;
  color: var(--branco);
  line-height: 1.25;
  margin-bottom: 14px;
}
.pillar__text { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ------------------------------------------------------------
   LIVRO
------------------------------------------------------------ */
.book {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
  background: var(--cinza-suave);
}

.deco--book-arc {
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: min(440px, 42vw);
  height: auto;
}

.book__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.book__visual { display: flex; justify-content: center; }
.book__mockup {
  max-width: 300px;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,0.3));
  transition: transform 0.4s ease;
}
.book__mockup:hover { transform: translateY(-6px) rotate(1deg); }

.book__content .section-title { margin-bottom: 24px; }
.book__subtitle {
  font-size: clamp(1.02rem, 1.6vw, 1.12rem);
  color: var(--azul-escuro);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(177,142,81,0.25);
}
.book__text { font-size: clamp(0.92rem, 1.35vw, 1rem); color: var(--texto-soft); line-height: 1.8; margin-bottom: 20px; }

/* Card editorial com logos das editoras */
.publisher-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: var(--branco);
  border: 1px solid rgba(21,49,71,0.08);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.publisher-card__label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--texto-soft);
  white-space: nowrap;
}
.publisher-card__logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.publisher-card__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter var(--transition), opacity var(--transition);
}
.publisher-card:hover .publisher-card__logo { filter: none; opacity: 1; }
.publisher-card__sep {
  display: block;
  width: 1px;
  height: 24px;
  background: rgba(21,49,71,0.12);
  flex-shrink: 0;
}

.book__ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ------------------------------------------------------------
   ATENDIMENTO
------------------------------------------------------------ */
.appointment {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
  background: var(--branco);
}

.deco--appt-arc {
  right: -80px;
  bottom: -80px;
  width: min(460px, 44vw);
  height: auto;
}

.appointment__inner {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.appointment__photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 560px;
}
.appointment__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.appointment__content .section-title { margin-bottom: 28px; }
.appointment__text { font-size: clamp(0.95rem, 1.4vw, 1.05rem); color: var(--texto-soft); line-height: 1.8; margin-bottom: 18px; }

/* ------------------------------------------------------------
   SEÇÃO DE FECHAMENTO — redes + CTA unificados
------------------------------------------------------------ */
.closing {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad);
  background: var(--azul-medio);
}

.deco--closing-arc {
  left: -60px;
  bottom: -60px;
  width: min(480px, 46vw);
  height: auto;
}

.closing__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.closing__block {
  padding: clamp(24px, 4vw, 48px);
}
.closing__block--social { padding-left: 0; }
.closing__block--cta { padding-right: 0; }

.closing__title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--branco);
  margin-bottom: 20px;
}
.closing__title em { font-style: italic; font-weight: 300; color: rgba(177,142,81,0.85); }

.closing__text {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
}

.closing__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 clamp(24px, 4vw, 56px);
}

.closing__social-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.closing__ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--azul-escuro);
  padding: clamp(56px, 7vw, 96px) 0 32px;
}

.footer__watermark {
  position: absolute;
  right: -40px;
  bottom: -60px;
  pointer-events: none;
  user-select: none;
}
.footer__wm-img {
  width: clamp(160px, 20vw, 260px);
  opacity: 0.04;
}

.footer__inner { position: relative; z-index: 1; }

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand { max-width: 340px; }
.footer__logo { height: auto; max-height: 60px; max-width: 220px; margin-bottom: 20px; }
.footer__tagline { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

.footer__nav-list { display: flex; flex-direction: column; gap: 12px; }
.footer__nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__nav-link:hover { color: var(--laranja); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer__credit { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer__credit-link { color: rgba(177,142,81,0.6); transition: color var(--transition); }
.footer__credit-link:hover { color: var(--laranja); }

/* ------------------------------------------------------------
   RESPONSIVO — 1100px
------------------------------------------------------------ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr 380px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .book__inner { grid-template-columns: 320px 1fr; }
  .appointment__inner { grid-template-columns: 380px 1fr; }
  .closing__inner { grid-template-columns: 1fr auto 1fr; }
}

/* ------------------------------------------------------------
   RESPONSIVO — 900px
------------------------------------------------------------ */
@media (max-width: 900px) {
  :root { --header-h: 72px; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__ctas { justify-content: center; }
  .hero__badges { justify-content: center; }
  .hero__photo { max-width: 380px; margin: 0 auto; order: -1; }

  .about__inner { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
  .about__creds-grid { grid-template-columns: repeat(3, 1fr); }

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

  .book__inner { grid-template-columns: 1fr; text-align: center; max-width: 600px; margin: 0 auto; }
  .book__visual { order: -1; }
  .book__ctas { justify-content: center; }
  .publisher-card { justify-content: center; }

  .appointment__inner { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .appointment__photo-frame { max-height: 400px; }

  .closing__inner { grid-template-columns: 1fr; }
  .closing__divider { width: 100%; height: 1px; margin: 0; align-self: auto; }
  .closing__block { padding: clamp(24px, 4vw, 40px) 0; }

  .footer__top { flex-direction: column; gap: 32px; }
  .footer__nav-list { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

/* ------------------------------------------------------------
   RESPONSIVO — 720px
------------------------------------------------------------ */
@media (max-width: 720px) {
  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--branco);
    padding: 20px 24px 32px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    pointer-events: none;
  }
  .header__nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__list { flex-direction: column; gap: 0; align-items: flex-start; }
  .nav__link { display: block; padding: 14px 0; font-size: 0.88rem; border-bottom: 1px solid rgba(21,49,71,0.06); width: 100%; }
  .nav__list li:last-child .nav__link { border-bottom: none; }

  .hamburger { display: flex; }
  .header__actions .btn--sm { display: none; }
  .header__divider { display: none; }

  .services__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .about__creds-grid { grid-template-columns: 1fr 1fr; }

  .closing__ctas { flex-direction: column; align-items: stretch; }
  .closing__ctas .btn { justify-content: center; }
}

/* ------------------------------------------------------------
   RESPONSIVO — 520px
------------------------------------------------------------ */
@media (max-width: 520px) {
  .hero__title { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .section-title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .closing__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }

  .book__ctas { flex-direction: column; align-items: center; }
  .book__ctas .btn { width: 100%; justify-content: center; }

  .appointment__content .btn { width: 100%; justify-content: center; }

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

  .publisher-card { flex-direction: column; align-items: flex-start; gap: 12px; }

  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
