/* Tô Facin — folha única. Coral #FF6B4A, âmbar #FFB347, tinta #1B1B1F, fundo #FFF9F4. */
:root {
  --coral: #FF6B4A;
  --ambar: #FFB347;
  --tinta: #1B1B1F;
  --fundo: #FFF9F4;
  --cinza: #6B6B70;
  --papel: #FFFFFF;
  --borda: #F0E2D6;
  --degrade: linear-gradient(135deg, #FF6B4A 0%, #FFB347 100%);
  --fonte: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--fonte);
  font-size: 17px;
  line-height: 1.6;
  color: var(--tinta);
  background: var(--fundo);
}
img { max-width: 100%; height: auto; }
a { color: #D8442A; }
a:hover { color: var(--coral); }

.pular {
  position: absolute; left: -9999px; top: 0;
  background: var(--tinta); color: #fff; padding: .6rem 1rem; border-radius: 0 0 10px 0;
}
.pular:focus { left: 0; z-index: 10; }

.topo {
  display: flex; flex-wrap: wrap; gap: .6rem 1rem;
  align-items: center; justify-content: space-between;
  padding: 1rem 1.1rem;
  max-width: 60rem; margin: 0 auto;
}
.marca {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 800; font-size: 1.15rem; color: var(--tinta); text-decoration: none;
}
.marca img { border-radius: 9px; display: block; }
.menu { display: flex; gap: 1rem; font-weight: 600; font-size: .95rem; }
.menu a { color: var(--cinza); text-decoration: none; }
.menu a:hover { color: var(--coral); }

main {
  max-width: 60rem;
  margin: 0 auto;
  padding: .5rem 1.1rem 3rem;
}
h1 {
  font-size: 1.9rem; line-height: 1.22; font-weight: 800;
  margin: 1rem 0 .6rem; letter-spacing: -.01em;
}
h2 { font-size: 1.3rem; font-weight: 800; margin: 2rem 0 .6rem; }
h3 { font-size: 1.05rem; font-weight: 800; margin: 1.4rem 0 .4rem; }
p { margin: 0 0 1rem; }
.resumo { font-size: 1.08rem; color: #3A3A40; }
.mini { font-size: .9rem; color: var(--cinza); }
.dominio { color: var(--cinza); font-size: .85rem; }

.migalha { font-size: .88rem; color: var(--cinza); margin: .4rem 0 0; }
.migalha a { color: var(--cinza); }

.selo {
  display: inline-block;
  font-size: .85rem; font-weight: 600; color: #8A4A1E;
  background: #FFF1E3; border: 1px solid var(--borda);
  padding: .25rem .7rem; border-radius: 999px; margin: 0 0 1.2rem;
}

/* herói da landing */
.heroi {
  background: var(--degrade);
  border-radius: 22px;
  padding: 2rem 1.4rem 2.2rem;
  color: #fff;
  margin: 1rem 0 2rem;
}
.heroi h1 { color: #fff; margin-top: 0; font-size: 2.05rem; }
.heroi .sub { font-size: 1.12rem; font-weight: 600; opacity: .95; margin-bottom: 1.4rem; }
.heroi .botao { background: #fff; color: #C93C1F; }
.heroi .botao:hover { background: #FFF3EA; }
.heroi .mini { color: #fff; opacity: .92; }

.botao {
  display: inline-block;
  background: var(--degrade);
  color: #fff; text-decoration: none;
  font-weight: 800; font-size: 1.02rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(255, 107, 74, .28);
}
.botao:hover { color: #fff; filter: brightness(1.04); }

.blocos { display: grid; gap: 1rem; margin: 1.4rem 0 2rem; }
.bloco {
  background: var(--papel);
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
}
.bloco h3 { margin-top: 0; }
.bloco p:last-child { margin-bottom: 0; }

.numeros { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 1.2rem 0 2rem; padding: 0; list-style: none; }
.numeros li {
  background: var(--papel); border: 1px solid var(--borda); border-radius: 14px;
  padding: .9rem 1rem; text-align: center;
}
.numeros strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--coral); line-height: 1.1; }
.numeros span { font-size: .88rem; color: var(--cinza); }

.planos { display: grid; gap: 1rem; margin: 1.2rem 0 2rem; }
.plano {
  background: var(--papel); border: 1px solid var(--borda); border-radius: 16px; padding: 1.1rem 1.2rem;
}
.plano.destaque { border-color: var(--coral); box-shadow: 0 4px 16px rgba(255, 107, 74, .14); }
.plano h3 { margin-top: 0; }
.preco { font-size: 1.45rem; font-weight: 800; }
.plano ul { margin: .6rem 0 0; padding-left: 1.1rem; }

ul.marcada { list-style: none; padding-left: 0; margin: 0 0 1rem; }
ul.marcada li {
  position: relative; padding-left: 1.1rem; margin-bottom: .45rem;
}
ul.marcada li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: .45rem; height: .45rem; border-radius: 50%; background: var(--coral);
}

.passos { margin: 0 0 1rem; padding-left: 1.3rem; }
.passos li { margin-bottom: .5rem; }
.prazo { color: var(--cinza); font-size: .9rem; }

details {
  background: var(--papel); border: 1px solid var(--borda); border-radius: 14px;
  padding: .85rem 1.1rem; margin-bottom: .7rem;
}
summary { font-weight: 700; cursor: pointer; }
details p:last-child { margin-bottom: 0; }
details[open] summary { margin-bottom: .6rem; }

.rolagem { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 1.2rem; border-radius: 14px; border: 1px solid var(--borda); background: var(--papel); }
table { border-collapse: collapse; width: 100%; min-width: 30rem; font-size: .96rem; }
caption { text-align: left; padding: .8rem 1rem 0; color: var(--cinza); font-size: .9rem; }
th, td { padding: .65rem .9rem; text-align: left; border-bottom: 1px solid var(--borda); vertical-align: top; }
thead th { background: #FFF1E3; font-weight: 800; white-space: nowrap; }
tbody tr:last-child td { border-bottom: 0; }
td.placa { font-weight: 800; font-size: 1.05rem; }
th.obs, td.obs { min-width: 22rem; }
th.curta, td.curta { white-space: nowrap; }

.nota {
  background: var(--papel); border-left: 4px solid var(--ambar);
  border-radius: 0 12px 12px 0; padding: .9rem 1.1rem; margin: 0 0 1.2rem;
}
.nota p:last-child { margin-bottom: 0; }

.fonte { margin: 2rem 0; }
.lista-fonte { list-style: none; padding-left: 0; margin: 0 0 .6rem; }
.lista-fonte li { margin-bottom: .4rem; }

.cta {
  background: var(--papel);
  border: 1px solid var(--borda);
  border-radius: 18px;
  padding: 1.3rem 1.3rem 1.4rem;
  margin: 2.2rem 0 1rem;
}
.cta h2 { margin-top: 0; }

.indice { columns: 2; column-gap: 1.2rem; list-style: none; padding-left: 0; font-size: .95rem; }
.indice li { break-inside: avoid; margin-bottom: .35rem; }

.rodape {
  border-top: 1px solid var(--borda);
  padding: 1.6rem 1.1rem 2.4rem;
  max-width: 60rem; margin: 0 auto;
}
.rodape-marca { font-weight: 800; margin-bottom: .6rem; }
.rodape nav { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-bottom: .9rem; font-size: .95rem; }

@media (min-width: 40rem) {
  body { font-size: 18px; }
  h1 { font-size: 2.3rem; }
  .heroi { padding: 3rem 2.4rem; }
  .heroi h1 { font-size: 2.6rem; }
  .blocos { grid-template-columns: repeat(3, 1fr); }
  .numeros { grid-template-columns: repeat(4, 1fr); }
  .planos { grid-template-columns: repeat(3, 1fr); }
  .indice { columns: 3; }
}
@media (prefers-reduced-motion: no-preference) {
  a, .botao { transition: color .15s ease, background .15s ease, filter .15s ease; }
}

/* =========================================================== landing (index) */

body.landing main { max-width: none; padding: 0; }
body.landing .topo {
  position: sticky; top: 0; z-index: 30;
  max-width: none;
  padding: .75rem max(1.1rem, calc((100% - 60rem) / 2));
  background: rgba(255, 249, 244, .92);
  -webkit-backdrop-filter: saturate(1.6) blur(12px);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--borda);
}

.faixa { padding: 3rem 1.1rem; scroll-margin-top: 4.5rem; }
.faixa > .interno { max-width: 60rem; margin: 0 auto; }
.faixa-clara { background: var(--papel); border-block: 1px solid var(--borda); }
.faixa h2 { font-size: 1.75rem; font-weight: 800; margin: 0 0 .7rem; letter-spacing: -.015em; line-height: 1.15; }
.faixa h3 { font-size: 1.1rem; }
.olho {
  font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral); margin: 0 0 .5rem;
}
.faixa-clara .olho, .faixa .olho { color: #D8442A; }
.chamada { font-size: 1.06rem; color: #3A3A40; max-width: 40rem; }
.legenda-print { font-size: .85rem; color: var(--cinza); text-align: center; margin: .9rem 0 0; }
figure { margin: 0; }

/* hero */
.hero {
  background: var(--degrade);
  color: #fff;
  padding: 2.2rem 1.1rem 3rem;
  overflow: hidden;
}
.hero .interno { max-width: 60rem; margin: 0 auto; display: grid; gap: 2.2rem; align-items: center; }
.marca-hero { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.3rem; }
.marca-hero img { border-radius: 10px; display: block; }
.hero h1 {
  color: #fff; font-size: 2.15rem; font-weight: 800; line-height: 1.08;
  margin: 1.1rem 0 .7rem; letter-spacing: -.02em;
}
.hero .promessa { font-size: 1.15rem; font-weight: 700; margin-bottom: 1.5rem; max-width: 26rem; }
.hero .botao { background: #fff; color: #C93C1F; }
.hero .botao:hover { background: #FFF3EA; color: #C93C1F; }
.hero .mini { color: #fff; opacity: .95; margin-top: .8rem; }
.hero .visual { justify-self: center; width: 100%; }

/* moldura de iPhone, só CSS */
.iphone {
  position: relative;
  width: 100%; max-width: 300px; margin: 0 auto;
  background: #1B1B1F;
  border-radius: 48px;
  padding: 10px;
  box-shadow: 0 26px 54px rgba(27, 27, 31, .34), inset 0 0 0 2px rgba(255, 255, 255, .16);
}
.iphone .tela { position: relative; border-radius: 38px; overflow: hidden; background: #fff; line-height: 0; }
.iphone .tela img { display: block; width: 100%; border-radius: 38px; }
.iphone .ilha {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: 1.2%; width: 21%; height: 2.6%;
  background: #0B0B0D; border-radius: 999px;
}
.iphone-menor { max-width: 232px; border-radius: 42px; padding: 8px; }
.iphone-menor .tela, .iphone-menor .tela img { border-radius: 34px; }

/* arte compartilhável, em formato de story */
.story {
  width: 100%; max-width: 236px; margin: 0 auto;
  border-radius: 26px; overflow: hidden; line-height: 0;
  border: 1px solid rgba(27, 27, 31, .08);
  box-shadow: 0 18px 40px rgba(27, 27, 31, .22);
}
.story img { display: block; width: 100%; }

/* dois prints lado a lado */
.par-visual { display: grid; gap: 1.6rem; justify-items: center; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 34rem) { .par-visual { grid-template-columns: 1.25fr 1fr; } }

/* bloco de texto + print */
.dupla { display: grid; gap: 2rem; align-items: center; }
.dupla .texto p:last-child { margin-bottom: 0; }

/* as três cenas da dor */
.cenas { display: grid; gap: 1rem; margin: 1.6rem 0 0; }
.cena {
  background: var(--papel); border: 1px solid var(--borda); border-radius: 20px;
  padding: 1.5rem 1.3rem;
}
.faixa-clara .cena { background: var(--fundo); }
.cena .ordem {
  display: block; font-size: .78rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--coral); margin-bottom: .9rem;
}
.cena p { font-size: 1.3rem; font-weight: 800; line-height: 1.18; letter-spacing: -.015em; margin: 0; }
.fecho {
  font-size: 1.25rem; font-weight: 800; line-height: 1.3; text-align: center;
  max-width: 34rem; margin: 2rem auto 0; letter-spacing: -.01em;
}

/* listas de uma linha */
.linhas { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .6rem; }
.linhas li {
  background: var(--papel); border: 1px solid var(--borda); border-radius: 14px;
  padding: .8rem 1.05rem;
}
.faixa-clara .linhas li { background: var(--fundo); }
.linhas strong { font-weight: 800; }

.planos.duplo { margin-top: 1.4rem; }
.plano .preco span.mini { font-size: .9rem; font-weight: 600; }

.faq { margin-top: 1.4rem; }
.faixa-clara details { background: var(--fundo); }
.nota-prints { font-size: .9rem; color: var(--cinza); max-width: 60rem; margin: 0 auto; padding: 1.6rem 1.1rem 2rem; }

/* entrada suave; sem JS o conteúdo já está visível */
.js .aparece { opacity: 0; transform: translateY(18px); }
@media (prefers-reduced-motion: no-preference) {
  .js .aparece { transition: opacity .55s ease, transform .55s ease; }
  html:has(body.landing) { scroll-behavior: smooth; }
}
.js .aparece.visivel { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .aparece { opacity: 1; transform: none; transition: none; }
}

@media (min-width: 48rem) {
  .cenas { grid-template-columns: repeat(3, 1fr); }
  .planos.duplo { grid-template-columns: repeat(2, 1fr); }
  .linhas { gap: .7rem; }
}
@media (min-width: 60rem) {
  .faixa { padding: 4.2rem 1.1rem; }
  .faixa h2 { font-size: 2.05rem; }
  .hero { padding: 3rem 1.1rem 4rem; }
  .hero .interno { grid-template-columns: 1.02fr .98fr; gap: 3rem; }
  .hero h1 { font-size: 3rem; }
  .hero .visual .iphone { transform: rotate(-3.5deg); }
  .dupla { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .dupla.espelhada .visual { order: -1; }
  .planos.duplo { grid-template-columns: repeat(2, 1fr); }
}
