/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

/* ===== The Seasons (plugar arquivo real depois) =====
@font-face {
  font-family: 'The Seasons';
  src: url('fonts/the-seasons.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
*/

/* ===== Tokens ===== */
:root {
  --cor-fundo: #F2EDE7;
  --cor-escura: #3D2B1F;
  --cor-nude: #A68A6D;
  --cor-bege: #EFE4D6;
  --cor-texto: #2B2B2B;
  --fonte-titulo: 'The Seasons', 'Cormorant Garamond', Georgia, serif;
  --fonte-corpo: 'Open Sans', system-ui, sans-serif;
  --fonte-ui: 'Montserrat', system-ui, sans-serif;
  --largura-max: 1200px;
  --espaco-secao: clamp(3.5rem, 8vw, 7rem);
}

/* ===== Base ===== */
body {
  font-family: var(--fonte-corpo);
  color: var(--cor-texto);
  background: var(--cor-fundo);
  line-height: 1.7;
  /* textura de papel sutil */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.33 0 0 0 0 0.24 0 0 0 0.025 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: var(--fonte-titulo); font-weight: 500; color: var(--cor-escura); line-height: 1.15; }

.container { width: min(100% - 2.5rem, var(--largura-max)); margin-inline: auto; }
section { padding-block: var(--espaco-secao); }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.revelado { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Botão ===== */
.btn {
  font-family: var(--fonte-ui);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  letter-spacing: 0.03em;
  background: var(--cor-nude);
  color: var(--cor-escura);
  padding: 0.9em 2em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: transform .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* ===== Navbar ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242,237,231,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(61,43,31,0.08);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding-block: 0.9rem; gap: 1rem; }
.nav__marca { font-family: var(--fonte-ui); font-weight: 600; font-size: clamp(1rem,2.2vw,1.3rem); color: var(--cor-escura); line-height: 1.2; }
.nav__marca span { display: block; font-weight: 400; font-size: 0.72em; color: var(--cor-nude); }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); font-family: var(--fonte-ui); font-size: 0.95rem; }
.nav__links a:not(.btn):hover { color: var(--cor-nude); }
.nav__cta { padding: 0.6em 1.4em; }
.nav__hamburguer { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__hamburguer span { width: 26px; height: 2px; background: var(--cor-escura); transition: .3s; }

@media (max-width: 860px) {
  .nav__hamburguer { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--cor-fundo); padding: 1.2rem 1.25rem;
    gap: 1.1rem; border-bottom: 1px solid rgba(61,43,31,0.08);
    transform: translateY(-120%); opacity: 0; pointer-events: none; visibility: hidden; transition: .3s;
  }
  .nav--aberto .nav__links { transform: translateY(0); opacity: 1; pointer-events: auto; visibility: visible; }
  .nav__cta { align-self: stretch; text-align: center; }
}

/* ===== Utilitários ===== */
.eyebrow { font-family: var(--fonte-ui); color: var(--cor-nude); font-size: 0.9rem; letter-spacing: .04em; margin-bottom: 1rem; }
.regua { display: block; width: 90px; height: 3px; background: var(--cor-nude); margin: 1.5rem 0; }

/* ===== Hero ===== */
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__texto h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
.hero__lead { font-weight: 600; color: var(--cor-escura); margin-bottom: .5rem; }
.hero__lista { margin-bottom: 1.2rem; }
.hero__lista li { position: relative; padding-left: 1.4rem; }
.hero__lista li::before { content: "✦"; position: absolute; left: 0; color: var(--cor-nude); }
.hero__texto .btn { margin-top: 1.6rem; }
.hero__foto img { width: 100%; border-radius: 18px; object-fit: cover; aspect-ratio: 3/4; box-shadow: 0 20px 50px rgba(61,43,31,0.15); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__foto { order: -1; }
  .hero__foto img { aspect-ratio: 4/3; }
}

/* ===== Peso Invisível ===== */
.peso__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.peso__foto img { width: 100%; border-radius: 18px; object-fit: cover; aspect-ratio: 3/4; box-shadow: 0 20px 50px rgba(61,43,31,0.15); }
.peso__texto h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.peso__texto p { margin-bottom: 1rem; }
.regua--topo { margin-top: 0; }
.peso__lista li { margin-bottom: .4rem; padding-left: 1.2rem; position: relative; }
.peso__lista li::before { content: "✦"; position: absolute; left: 0; color: var(--cor-nude); }

@media (max-width: 860px) {
  .peso__grid { grid-template-columns: 1fr; }
}

/* ===== De Onde Vem ===== */
.origem__grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.origem__col h2 { font-size: clamp(1.5rem, 3.2vw, 2.4rem); margin-bottom: 1.2rem; }
.origem__col p { margin-bottom: 1rem; }
.origem__divisoria { width: 2px; align-self: stretch; background: var(--cor-nude); }
.origem__col--destaque { text-align: center; }
.origem__col--destaque .btn { margin-top: 1rem; }

@media (max-width: 860px) {
  .origem__grid { grid-template-columns: 1fr; }
  .origem__divisoria { width: 60%; height: 2px; justify-self: center; }
}

/* ===== Compreender ===== */
.compreender__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.compreender__texto h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); margin-bottom: 1.2rem; }
.compreender__texto p { margin-bottom: 1rem; }
.compreender__card { border: 1px solid var(--cor-nude); border-radius: 16px; padding: clamp(2rem, 4vw, 3rem); }
.compreender__card p { font-family: var(--fonte-ui); font-weight: 600; color: var(--cor-escura); font-size: clamp(1.1rem, 2vw, 1.4rem); }

@media (max-width: 860px) {
  .compreender__grid { grid-template-columns: 1fr; }
}

/* ===== Quem Sou Eu ===== */
.sobre-mim__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.sobre-mim__foto img { width: 100%; border-radius: 18px; object-fit: cover; aspect-ratio: 3/4; box-shadow: 0 20px 50px rgba(61,43,31,0.15); position: sticky; top: 90px; }
.sobre-mim__texto h2 { font-size: clamp(1.5rem, 3.2vw, 2.3rem); margin-bottom: 1.2rem; }
.sobre-mim__texto p { margin-bottom: 1rem; }
.sobre-mim__texto strong, .sobre-mim__formacao strong { color: var(--cor-escura); font-weight: 600; }
.sobre-mim__formacao { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: stretch; gap: clamp(1.5rem, 4vw, 3rem); margin-top: var(--espaco-secao); }
.sobre-mim__formacao-texto { max-width: 60ch; }
.sobre-mim__formacao-deco { display: flex; align-items: flex-start; justify-content: center; }
.sobre-mim__formacao-deco img { width: 100%; max-width: clamp(260px, 36vw, 460px); height: auto; max-height: 480px; object-fit: contain; opacity: .9; transform: translate(-2.5rem, -5rem); }
.sobre-mim__formacao p { margin-bottom: 1.15rem; text-align: justify; text-justify: inter-word; hyphens: auto; }
.sobre-mim__formacao p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .sobre-mim__grid { grid-template-columns: 1fr; }
  .sobre-mim__foto img { position: static; aspect-ratio: 4/3; }
  .sobre-mim__formacao { grid-template-columns: 1fr; text-align: center; }
  .sobre-mim__formacao-texto { max-width: none; }
  .sobre-mim__formacao p { text-align: center; hyphens: manual; }
  .sobre-mim__formacao-deco { order: -1; }
  .sobre-mim__formacao-deco img { width: auto; height: auto; max-width: clamp(200px, 55vw, 280px); max-height: none; transform: none; }
}

/* ===== Como Funciona / Etapas ===== */
.etapas__titulo { font-family: var(--fonte-ui); text-align: center; letter-spacing: .06em; color: var(--cor-nude); font-size: clamp(1rem, 2.4vw, 1.4rem); text-transform: uppercase; margin-bottom: 2rem; }
.etapas__faixa { background: var(--cor-nude); color: var(--cor-escura); border-radius: 22px; padding: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 4vw, 3rem); text-align: center; max-width: 900px; margin: 0 auto 3.5rem; }
.etapas__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); text-align: center; }
.etapa__icone { width: 110px; height: 110px; object-fit: contain; margin: 0 auto 1.2rem; }
.etapa h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.regua--centro { margin-inline: auto; width: 60px; }
.etapas__rodape { text-align: center; color: var(--cor-nude); font-size: 1.05rem; max-width: 720px; margin: 3rem auto 0; }

@media (max-width: 780px) {
  .etapas__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ===== Talvez Faça Sentido ===== */
.sentido__grid { position: relative; }
.sentido__cabecalho { text-align: center; margin-bottom: 2.5rem; }
.sentido__cabecalho h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-inline: auto; max-width: 22ch; }
.sentido__cabecalho .regua--centro { margin-top: 1.2rem; }
.sentido__lista { position: relative; z-index: 1; columns: 2; column-gap: clamp(2rem, 5vw, 4rem); max-width: 1000px; margin-inline: auto; }
.sentido__lista li { break-inside: avoid; position: relative; padding-left: 1.5rem; margin-bottom: 1rem; font-size: clamp(1rem, 1.8vw, 1.15rem); }
.sentido__lista li::before { content: "✦"; position: absolute; left: 0; color: var(--cor-nude); }
.sentido__final { position: relative; z-index: 1; text-align: center; font-weight: 700; color: var(--cor-escura); max-width: 42ch; margin: 2.2rem auto 0; font-size: clamp(1.05rem, 2vw, 1.25rem); }

@media (max-width: 860px) {
  .sentido__lista { columns: 1; }
}

/* ===== FAQ ===== */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq__cabecalho h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); max-width: 12ch; }
.faq__lista { display: flex; flex-direction: column; gap: 1rem; }
.faq__item { border-radius: 999px; overflow: hidden; transition: border-radius .3s; }
.faq__item--aberto { border-radius: 22px; }

/* pílula (pergunta) */
.faq__pergunta {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--fonte-ui); font-weight: 500; font-size: clamp(.95rem, 1.8vw, 1.1rem);
  text-align: left; cursor: pointer; border: none; padding: 1.1em 1.6em; color: #fff;
}
.faq__seta { transition: transform .3s; font-size: .9em; }
.faq__item--aberto .faq__seta { transform: rotate(90deg); }

/* cores alternadas como no PDF */
.faq__item:nth-child(3n+1) .faq__pergunta { background: var(--cor-escura); }
.faq__item:nth-child(3n+2) .faq__pergunta { background: #5A4433; }
.faq__item:nth-child(3n+3) .faq__pergunta { background: var(--cor-nude); color: var(--cor-escura); }

/* resposta com transição de altura via grid */
.faq__resposta-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; background: var(--cor-bege); }
.faq__item--aberto .faq__resposta-wrap { grid-template-rows: 1fr; }
.faq__resposta { overflow: hidden; padding: 0 1.6em; margin: 0; transition: padding .35s ease; }
.faq__item--aberto .faq__resposta { padding: 1.2em 1.6em; }

@media (max-width: 860px) {
  .faq__grid { grid-template-columns: 1fr; }
}

/* ===== Fechamento ===== */
.fechamento__inner { text-align: center; max-width: 760px; margin-inline: auto; }
.fechamento__inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
.fechamento__inner p { margin-bottom: 1rem; }
.fechamento__inner .btn { margin-top: 1.5rem; }

/* ===== Rodapé ===== */
.rodape { background: var(--cor-escura); color: var(--cor-fundo); padding-block: clamp(2rem, 5vw, 3rem); }
.rodape__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.rodape__marca { font-family: var(--fonte-ui); font-weight: 600; font-size: clamp(1.1rem, 2.4vw, 1.5rem); }
.rodape__marca span { display: block; font-weight: 400; font-size: .7em; color: var(--cor-nude); }
.rodape__contatos { display: flex; gap: 1.1rem; }
.rodape__contatos a { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; color: var(--cor-fundo); border: 1.5px solid rgba(242,237,231,0.35); transition: background .25s ease, color .25s ease, border-color .25s ease; }
.rodape__contatos a:hover { background: var(--cor-fundo); color: var(--cor-escura); border-color: var(--cor-fundo); }
.rodape__contatos svg { width: 22px; height: 22px; }

@media (max-width: 560px) {
  .rodape__inner { flex-direction: column; text-align: center; }
}

/* salvaguardas finais */
body { overflow-x: clip; }
.deco { max-width: 40vw; }
h1, h2 { overflow-wrap: break-word; }
