/**
 * pages.css — Estilos das páginas internas
 * Caue Possatto — Métodos Bioenergéticos
 * Usado em: o-terapeuta, metodos, terapia, artigos, artigo,
 *           localizacao, contato, para-empresas, 404
 */

/* ════════════════════════════════════════════════════════════
   HERO DE PÁGINA INTERNA
════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(160deg, var(--verde-hero) 0%, var(--verde-profundo) 100%);
  padding: 140px var(--sec-pad-h) 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(106,63,160,.18) 0%, transparent 65%);
}
.page-hero-inner { position: relative; max-width: var(--container-max); margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--off-white);
  letter-spacing: .08em;
  margin: 16px 0 20px;
  line-height: 1.1;
}
.page-hero-desc {
  max-width: 580px;
  font-size: .92rem;
  line-height: 1.85;
  color: var(--texto-claro);
  opacity: .65;
  margin-bottom: 36px;
}

/* ════════════════════════════════════════════════════════════
   CONTAINER DE ARTIGO — mais estreito para leitura
════════════════════════════════════════════════════════════ */
.container-cp--article {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 var(--sec-pad-h);
}

/* ════════════════════════════════════════════════════════════
   METADADOS E CAPA DO ARTIGO
════════════════════════════════════════════════════════════ */
.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: .4;
  margin-bottom: 32px;
}
.article-meta a {
  color: var(--dourado);
  opacity: .7;
  text-decoration: none;
  transition: opacity .2s;
}
.article-meta a:hover { opacity: 1; }

.article-cover {
  width: 100%;
  height: auto;
  border-radius: 3px;
  display: block;
  margin-bottom: 48px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ════════════════════════════════════════════════════════════
   CORPO DO ARTIGO — tipografia editorial
════════════════════════════════════════════════════════════ */
.article-body {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--off-white);
  opacity: .8;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--off-white);
  margin: 48px 0 20px;
  letter-spacing: .04em;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--dourado-suave);
  margin: 36px 0 16px;
}
.article-body p { margin-bottom: 20px; }
.article-body strong { color: var(--off-white); font-weight: 500; opacity: 1; }
.article-body em { color: var(--dourado-suave); font-style: italic; }
.article-body blockquote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dourado-suave);
  border-left: 2px solid var(--dourado);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.65;
}
.article-body ul,
.article-body ol {
  margin: 0 0 20px 24px;
}
.article-body li { margin-bottom: 8px; }
.article-body a {
  color: var(--dourado);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.article-body a:hover { opacity: .75; }
.article-body img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  margin: 32px 0;
}

/* CTA dentro do artigo */
.article-cta {
  margin-top: 56px;
  padding: 40px 36px;
  background: rgba(201,168,76,.06);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 3px;
  text-align: center;
}
.article-cta p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dourado-suave);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   UTILITÁRIO — espaçamento de campo de formulário
   (Bootstrap full não carregado — definir aqui o mb-3)
════════════════════════════════════════════════════════════ */
.mb-3 { margin-bottom: 20px; }

/* ════════════════════════════════════════════════════════════
   PÁGINA DE CONTATO — formulário
════════════════════════════════════════════════════════════ */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.sec-pad label {
  display: block;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: .55;
  margin-bottom: 8px;
}

.sec-pad input[type="text"],
.sec-pad input[type="email"],
.sec-pad input[type="tel"],
.sec-pad textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--font-corpo);
  font-size: .9rem;
  color: var(--off-white);
  transition: border-color .25s;
  outline: none;
}
.sec-pad input::placeholder,
.sec-pad textarea::placeholder {
  color: rgba(244,239,230,.25);
}
.sec-pad input:focus,
.sec-pad textarea:focus {
  border-color: var(--dourado);
}
.sec-pad textarea { resize: vertical; min-height: 140px; }

/* ════════════════════════════════════════════════════════════
   PÁGINA DE LOCALIZAÇÃO — mapa placeholder
════════════════════════════════════════════════════════════ */
.mapa-placeholder {
  width: 100%;
  min-height: 360px;
  border-radius: 3px;
  border: 1px solid var(--linha);
  background: linear-gradient(135deg, var(--verde-profundo), var(--roxo));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════
   PÁGINA DE ARTIGOS — lista/grid
════════════════════════════════════════════════════════════ */
#main-content .artigos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

#main-content article {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--linha);
  border-radius: 3px;
  overflow: hidden;
  transition: all .3s;
}
#main-content article:hover {
  border-color: rgba(201,168,76,.25);
  transform: translateY(-4px);
}
#main-content article img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
#main-content article .eyebrow { display: block; padding: 20px 24px 0; }
#main-content article h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  padding: 10px 24px 0;
  color: var(--off-white);
  line-height: 1.35;
}
#main-content article h2 a {
  color: inherit;
  text-decoration: none;
}
#main-content article h2 a:hover { color: var(--dourado); }
#main-content article p {
  padding: 10px 24px 0;
  font-size: .82rem;
  line-height: 1.7;
  color: var(--texto-claro);
  opacity: .55;
}
#main-content article .btn-cp {
  margin: 20px 24px 24px;
}

/* ════════════════════════════════════════════════════════════
   PARA QUEM — página de método / terapia
════════════════════════════════════════════════════════════ */
.subtitulo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dourado-suave);
  opacity: .7;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   FAQ — <details> / <summary> estilizados
════════════════════════════════════════════════════════════ */
.faq-lista {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border: 1px solid var(--linha);
  border-radius: 3px;
  background: rgba(255,255,255,.03);
  transition: border-color .25s, background .25s;
  overflow: hidden;
}
.faq-item[open] {
  border-color: rgba(201,168,76,.25);
  background: rgba(255,255,255,.05);
}
.faq-pergunta {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--off-white);
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.faq-pergunta::-webkit-details-marker { display: none; }
.faq-pergunta::after {
  content: '+';
  font-family: var(--font-corpo);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--dourado);
  opacity: .6;
  flex-shrink: 0;
  transition: transform .3s, opacity .3s;
}
.faq-item[open] .faq-pergunta::after {
  transform: rotate(45deg);
  opacity: 1;
}
.faq-resposta {
  font-size: .88rem;
  line-height: 1.85;
  color: var(--texto-claro);
  opacity: .65;
  padding: 0 28px 24px;
}

/* ════════════════════════════════════════════════════════════
   PÁGINA 404
════════════════════════════════════════════════════════════ */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.page-404 .container-cp {
  text-align: center;
}
.page-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--off-white);
  margin: 20px 0 16px;
}
.page-404 p {
  font-size: .92rem;
  opacity: .5;
  margin-bottom: 36px;
}
