/* ══════════════════════════════════════════════
   ORIENTAÇÕES: páginas de orientação prática
   Linguagem visual do site, estrutura simplificada
   e leitura confortável para todas as idades.
   ══════════════════════════════════════════════ */

/* ── TOM MAIS ACOLHEDOR, SO AQUI ──
   O resto do site fala com quem ja sabe o que procura. A Orientacao fala com
   quem esta perdido e com medo do custo, e marinho com cinza azulado soa
   caro e distante. O fundo e a marca continuam os mesmos: o que muda e o
   cinza do texto, que deixa de puxar para o azul e passa a acompanhar o
   dourado. A classe .or fica no <main>, entao cabecalho e rodape nao mudam.
   Contraste conferido: 7,7 para 1 sobre o fundo, acima do atual. */
.or {
  --gray: #b0a291;
  --white2: #f0e9dd;
}

.or .or-wrap { max-width: 820px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }

/* ── HERO ── */
.or .or-hero {
  padding: 132px 0 56px;
  border-bottom: 1px solid rgba(255, 207, 121, 0.1);
  position: relative;
  overflow: hidden;
}
.or .or-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 760px 380px at 70% -10%, rgba(235, 158, 110, 0.09), transparent 65%);
  pointer-events: none;
  z-index: 1;
}
/* imagem de capa do tema, aplicada quando a pagina define --capa */
.or .or-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--capa);
  background-size: cover;
  background-position: center;
  opacity: .2;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .95) 15%, transparent 92%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .95) 15%, transparent 92%);
}
.or .or-hero .or-wrap { position: relative; z-index: 2; }
.or .or-eyebrow {
  position: relative;
  font-size: .6rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.or .or-hero h1 {
  position: relative;
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.or .or-lead {
  position: relative;
  color: var(--gray);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 32px;
}
/* quando a abertura tem mais de um paragrafo, o espaco entre eles e menor
   que o espaco ate o botao */
.or .or-hero p.or-lead:not(:last-of-type) { margin-bottom: 16px; }

/* ── CORPO ── */
.or .or-body { padding: 56px 0 8px; }
.or .or-body h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  color: var(--white);
  margin: 48px 0 18px;
}
.or .or-body h2:first-child { margin-top: 0; }
.or .or-body p {
  color: var(--white2);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 18px;
}
.or .or-body strong { color: var(--white); font-weight: 600; }
.or .or-body ul { list-style: none; margin: 0 0 20px; }
.or .or-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--white2);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}
.or .or-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  opacity: .6;
}

/* ── PASSOS NUMERADOS ── */
.or .or-passos { counter-reset: passo; list-style: none; margin: 0 0 24px; }
.or .or-passos li {
  counter-increment: passo;
  position: relative;
  padding: 0 0 22px 56px;
  color: var(--white2);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}
.or .or-passos li::before {
  content: counter(passo);
  position: absolute;
  left: 0;
  top: -2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: var(--navy-dark);
  font-family: var(--ff);
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.or .or-passos li strong { color: var(--white); font-weight: 600; }

/* ── CHECKLIST ── */
.or .or-checklist {
  list-style: none;
  margin: 0 0 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 207, 121, 0.12);
  border-radius: 4px;
  padding: 26px 28px;
}
.or .or-checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--white2);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}
.or .or-checklist li:last-child { margin-bottom: 0; }
.or .or-checklist li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: .42em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ── DESTAQUE ── */
.or .or-nota {
  border-left: 3px solid var(--gold-muted);
  background: rgba(235, 158, 110, 0.06);
  padding: 20px 24px;
  margin: 28px 0;
  color: var(--white2);
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.85;
}
.or .or-nota strong { color: var(--gold); font-weight: 600; }

/* ── SITUAÇÕES ILUSTRADAS ──
   Cada situação ganha um desenho, porque quem chega aqui está aflito e
   costuma varrer a página com os olhos antes de ler. O desenho deixa a
   pessoa achar o próprio caso em segundos. */
.or .or-situacoes { display: grid; gap: 14px; margin: 26px 0 34px; }
@media (min-width: 640px) { .or .or-situacoes { grid-template-columns: 1fr 1fr; } }
.or .or-sit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 207, 121, .045);
  border: 1px solid rgba(255, 207, 121, .16);
  border-radius: 4px;
  padding: 20px 20px 20px 18px;
  transition: border-color .2s, background .2s, transform .2s;
}
.or .or-sit:hover {
  border-color: rgba(255, 207, 121, .34);
  background: rgba(255, 207, 121, .075);
  transform: translateY(-2px);
}
.or .or-sit svg { width: 50px; height: 50px; flex-shrink: 0; color: var(--gold); }
.or .or-sit b {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 6px;
}
.or .or-sit span {
  display: block;
  font-size: .93rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
}

/* ── COMO FUNCIONA ──
   Bloco de conforto, logo antes do convite para chamar. A dúvida que
   trava a pessoa não é jurídica, é não saber o que vai acontecer. */
.or .or-como { display: grid; gap: 16px; margin: 26px 0 8px; }
@media (min-width: 640px) { .or .or-como { grid-template-columns: repeat(3, 1fr); } }
.or .or-etapa {
  text-align: center;
  padding: 26px 18px 24px;
  border: 1px solid rgba(255, 207, 121, .15);
  border-radius: 4px;
  background: rgba(255, 207, 121, .035);
}
.or .or-etapa svg { width: 58px; height: 58px; color: var(--gold); margin-bottom: 14px; }
.or .or-etapa b {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 7px;
}
.or .or-etapa span {
  display: block;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
}

/* ── BOTÃO WHATSAPP ── */
.or .or-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 18px 34px;
  border-radius: 4px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 6px 22px rgba(37, 211, 102, .22);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.or .or-btn-wa:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, .32);
}
.or .or-btn-wa svg { width: 24px; height: 24px; flex-shrink: 0; fill: currentColor; }

/* ── FAQ ── */
.or .or-faq-sec { padding: 24px 0 8px; }
.or .or-faq-sec h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 3.4vw, 1.9rem);
  color: var(--white);
  margin-bottom: 20px;
}
.or details { border-bottom: 1px solid rgba(255, 207, 121, 0.12); padding: 6px 0; }
.or summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 40px 18px 0;
  position: relative;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 500;
}
.or summary::-webkit-details-marker { display: none; }
.or summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 14px;
  font-size: 26px;
  color: var(--gold-muted);
  font-weight: 300;
}
.or details[open] summary::after { content: '\2013'; }
.or details p { padding: 0 0 20px; font-size: .98rem; color: var(--gray); line-height: 1.85; font-weight: 300; }

/* ── EQUIPE (rosto do escritório) ── */
.or .or-equipe { padding: 56px 0 8px; border-top: 1px solid rgba(255, 207, 121, 0.1); margin-top: 56px; }
.or .or-equipe-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 34px;
  align-items: center;
}
/* fotos individuais dos socios */
.or .or-socios { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.or .or-socio { margin: 0; }
.or .or-socio img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 207, 121, 0.18);
  border-radius: 4px;
  background: #060c1a;
}
.or .or-socio figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
  text-align: center;
}
.or .or-socio strong { color: var(--white2); font-size: .88rem; font-weight: 600; }
.or .or-socio span {
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--gold-muted);
  font-weight: 500;
}
.or .or-equipe-info .k {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-muted);
  margin-bottom: 12px;
}
.or .or-equipe-info h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  color: var(--white);
  margin: 0 0 14px;
}
.or .or-equipe-txt {
  color: var(--gray);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 20px;
}
@media (max-width: 680px) {
  .or .or-equipe-grid { grid-template-columns: 1fr; gap: 26px; }
  .or .or-equipe-info { text-align: center; }
  .or .or-socios { max-width: 340px; margin: 0 auto; }
}

/* ── CTA FINAL ── */
.or .or-final {
  margin: 56px 0 0;
  background: linear-gradient(155deg, var(--navy-dark), var(--navy));
  border-top: 1px solid rgba(255, 207, 121, 0.12);
  padding: 62px 0;
  text-align: center;
}
.or .or-final h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  color: var(--white);
  margin-bottom: 14px;
}
.or .or-final p {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 54ch;
  margin: 0 auto 30px;
}

/* ── DISCLAIMER ── */
.or .or-disclaimer {
  padding: 30px clamp(20px, 5vw, 40px) 46px;
  text-align: center;
  color: var(--gray2);
  font-size: .72rem;
  font-weight: 300;
  line-height: 1.9;
  max-width: 780px;
  margin: 0 auto;
}

/* ── ÍNDICE DAS ORIENTAÇÕES ── */
.or .or-lista { display: grid; gap: 18px; padding: 40px 0 8px; }
.or .or-item {
  display: grid;
  grid-template-columns: 210px 1fr;
  border: 1px solid rgba(255, 207, 121, 0.16);
  background: rgba(255, 207, 121, 0.035);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.or .or-item:hover { border-color: rgba(255, 207, 121, 0.3); transform: translateY(-2px); }
.or .or-item-capa {
  background-color: #060c1a;
  background-size: cover;
  background-position: center;
  min-height: 150px;
  border-right: 1px solid rgba(255, 207, 121, 0.1);
}
.or .or-item-txt { padding: 26px 28px; }
.or .or-item h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}
.or .or-item p { color: var(--gray); font-size: .92rem; font-weight: 300; line-height: 1.75; margin: 0; }
.or .or-item .mais {
  display: inline-block;
  margin-top: 12px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-muted);
}

@media (max-width: 640px) {
  .or .or-hero { padding: 108px 0 44px; }
  .or .or-btn-wa { width: 100%; justify-content: center; padding: 18px 24px; }
  .or .or-item { grid-template-columns: 1fr; }
  .or .or-item-capa { min-height: 160px; border-right: none; border-bottom: 1px solid rgba(255, 207, 121, 0.1); }
  .or .or-item-txt { padding: 22px 22px 24px; }
}
