/* =========================================================
   Catlogue — Landing Page (standalone HTML/CSS)
   Design system: dark theme, brand palette
   #081924 night · #F88D3C amber · #F36935 flame · #F35535 ember · #793525 clay
   ========================================================= */

:root {
  --night: #081924;
  --night-elevated: #0f2534;
  --night-soft: #173142;
  --amber: #F88D3C;
  --flame: #F36935;
  --ember: #F35535;
  --clay: #793525;

  --bg: var(--night);
  --fg: #f6f1e7;
  --muted: #a9b2bc;
  --card: var(--night-elevated);
  --border: rgba(255, 255, 255, .08);

  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  --gradient-flame: linear-gradient(135deg, #F88D3C 0%, #F36935 55%, #F35535 100%);
  --gradient-hero:
    radial-gradient(ellipse at top, rgba(248, 141, 60, .18), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(243, 85, 53, .12), transparent 55%);
  --shadow-glow: 0 20px 60px -20px rgba(248, 141, 60, .45);
  --shadow-soft: 0 10px 40px -20px rgba(0, 0, 0, .55);

  --font-display: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
blockquote,
p {
  overflow-wrap: break-word;
  word-break: break-word
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  margin: 0;
  line-height: 1.1
}

p {
  margin: 0
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none
}

::selection {
  background: var(--amber);
  color: #1a0f00
}

/* ---------- Utilities ---------- */
.container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.5rem
}

@media(min-width:480px) {
  .container {
    padding-inline: 1.75rem
  }
}

@media(min-width:640px) {
  .container {
    padding-inline: 2.5rem
  }
}

.text-gradient {
  background: var(--gradient-flame);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .06);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 141, 60, .25);
  background: rgba(248, 141, 60, .08);
  color: var(--amber);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.eyebrow svg {
  width: .85rem;
  height: .85rem
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}

.btn-primary {
  background: var(--gradient-flame);
  color: #1a0f00;
  box-shadow: var(--shadow-glow)
}

.btn-primary:hover {
  transform: translateY(-2px)
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .06)
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  background: var(--gradient-flame);
  color: #1a0f00;
  font-weight: 600;
  font-size: .875rem;
  box-shadow: var(--shadow-glow);
  transition: transform .25s ease;

}

.btn-pill:hover {
  transform: scale(1.03)
}

.btn-label {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
  min-width: 0
}

.btn-label small {
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7
}

.btn-label strong {
  font-size: 1rem;
  font-weight: 700
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 25, 36, .7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding-block: .875rem
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem
}

.brand-logo {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: .75rem;
  background: var(--gradient-flame);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
  color: #1a0f00;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.02em
}

.nav-links {
  display: none;
  gap: 1.35rem;
  color: var(--muted);
  font-size: .9rem
}

.nav-links a {
  white-space: nowrap;
  transition: color .2s
}

.nav-links a:hover {
  color: var(--fg)
}

/* 1080px (e não 768) porque abaixo disso os 6 links + logo + botão
   não cabem em uma linha e a navbar quebra em duas alturas.
   Era 900px enquanto o menu tinha 5 links; subiu junto com "App de
   leitura" e "Imprensa". Abaixo desse ponto vale o menu mobile, que
   tem todos os links. */
@media(min-width:1080px) {
  .nav-links {
    display: flex
  }
}

/* Mobile nav toggle */
.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .65rem;
  color: var(--fg);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
}

@media(min-width:1080px) {
  .nav-toggle {
    display: none
  }
}

/* Sem os links no meio, o botão fica solto no centro: agrupa com o menu. */
@media(max-width:1079px) {
  .nav>.nav-inner>.btn-pill {
    margin-left: auto
  }
}

@media(max-width:399px) {
  .nav>.nav-inner>.btn-pill {
    display: none
  }
}

.nav-links-mobile {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .3s ease, opacity .3s ease;
}

.nav-links-mobile>div {
  overflow: hidden;
  min-height: 0;
  border-top: 1px solid rgba(255, 255, 255, .05)
}

.nav-links-mobile.open {
  grid-template-rows: 1fr;
  opacity: 1
}

.nav-links-mobile a {
  display: block;
  padding: .9rem 1.25rem;
  color: var(--muted);
  font-size: .95rem;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.nav-links-mobile a:hover {
  color: var(--fg)
}

@media(min-width:1080px) {
  .nav-links-mobile {
    display: none
  }
}

/* ---------- Sections generic ---------- */
section {
  position: relative;
  padding: 4rem 0
}

@media(min-width:480px) {
  section {
    padding: 6rem 0
  }
}

@media(min-width:640px) {
  section {
    padding: 8rem 0
  }
}

.section-header {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center
}

.section-header h2 {
  margin-top: 1.25rem;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  overflow-x: clip;
  background-image: var(--gradient-hero)
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 15%, rgba(248, 141, 60, .10), transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(243, 85, 53, .08), transparent 50%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3.5rem;
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

@media(min-width:768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
    gap: 2rem;
    align-items: center;
    padding: 6rem 0 5rem;
    text-align: left
  }
}

.hero-inner>* {
  min-width: 0
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  margin-top: 1.25rem;
}

.hero h1 br {
  display: none
}

@media(min-width:640px) {
  .hero h1 br {
    display: inline
  }
}

.hero p.lead {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 34rem;
  margin-inline: auto;
}

@media(min-width:768px) {
  .hero p.lead {
    margin-inline: 0
  }
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  min-width: 0;
}

@media(min-width:640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center
  }
}

@media(min-width:768px) {
  .hero-cta {
    justify-content: flex-start
  }
}

.hero-cta .btn {
  width: 100%;
  min-width: 0;
  max-width: 100%
}

@media(min-width:640px) {
  .hero-cta .btn {
    width: auto
  }
}

/* Fallback for old WebViews (WhatsApp/Instagram in-app browser, outdated
   Android System WebView) that silently ignore flexbox `gap`. Without this,
   the buttons render glued together with zero space in those browsers. */
.hero-cta .btn:not(:last-child) {
  margin-bottom: .75rem
}

@media(min-width:640px) {
  .hero-cta .btn:not(:last-child) {
    margin-bottom: 0;
    margin-right: .75rem
  }
}

.hero-social {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .9rem;
}

@media(min-width:768px) {
  .hero-social {
    justify-content: flex-start
  }
}

.hero-social .divider {
  width: 1px;
  height: 1rem;
  background: rgba(255, 255, 255, .1)
}

.stars {
  display: inline-flex;
  gap: .15rem;
  color: var(--amber)
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor
}

.hero-social strong {
  color: var(--fg)
}

/* Phone mockup */
.mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center
}

@media(min-width:768px) {
  .mockup-wrap {
    justify-content: flex-end
  }
}

.mockup {
  position: relative;
  width: min(240px, 62vw);
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .5));
  animation: float-slow 6s ease-in-out infinite;
}

@media(min-width:480px) {
  .mockup {
    width: min(260px, 55vw)
  }
}

@media(min-width:640px) {
  .mockup {
    width: min(280px, 42vw)
  }
}

@media(min-width:768px) {
  .mockup {
    width: clamp(220px, 28vw, 300px)
  }
}

@media(min-width:1280px) {
  .mockup {
    width: 300px
  }
}

.mockup-halo {
  position: absolute;
  inset: -2.5rem;
  z-index: -1;
  border-radius: 999px;
  background: var(--gradient-flame);
  opacity: .25;
  filter: blur(50px);
}

.floating {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .75rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.floating .icon {
  width: 2rem;
  height: 2rem;
  border-radius: .55rem;
  display: grid;
  place-items: center
}

.floating .icon.flame {
  background: rgba(243, 105, 53, .18);
  color: var(--flame)
}

.floating .icon.amber {
  background: rgba(248, 141, 60, .18);
  color: var(--amber)
}

.floating small {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted)
}

.floating strong {
  display: block;
  font-size: .875rem;
  font-weight: 600
}

.floating.left {
  left: -.75rem;
  top: 3.5rem
}

.floating.right {
  right: -.5rem;
  bottom: 5rem
}

@media(min-width:640px) {
  .floating.left {
    left: -1.25rem
  }

  .floating.right {
    right: -1rem
  }
}

/* ---------- Storytelling ---------- */
.story {
  max-width: 48rem;
  margin-inline: auto
}

.story ol {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .75rem
}

.story li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
}

.story .num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: .15rem;
}

.story li span:last-child {
  font-size: 1.05rem;
  color: rgba(246, 241, 231, .85)
}

.story .callout {
  position: relative;
  overflow: hidden;
  margin-top: 3.5rem;
  padding: 2rem;
  border-radius: 1.75rem;
  text-align: center;
  border: 1px solid rgba(248, 141, 60, .25);
  background: linear-gradient(135deg, rgba(248, 141, 60, .08), rgba(243, 85, 53, .08));
}

.story .callout::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6rem;
  transform: translateX(-50%);
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: rgba(248, 141, 60, .25);
  filter: blur(60px);
}

.story .callout p.kicker {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
}

.story .callout h3 {
  position: relative;
  margin-top: .75rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800
}

.story .callout p.desc {
  position: relative;
  margin-top: 1rem;
  max-width: 32rem;
  margin-inline: auto;
  color: var(--muted)
}

/* ---------- Benefits ---------- */
.grid-benefits {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem
}

@media(min-width:640px) {
  .grid-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media(min-width:1024px) {
  .grid-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

/* Centraliza o último card sozinho quando sobra (ex: 5 items em grid de 2) */
@media(min-width:640px) and (max-width:1023px) {
  .grid-benefits .benefit:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
    width: 100%;
  }
}

.benefit {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1.75rem;
  transition: background .25s ease, border-color .25s ease;
  height: 100%;
}

.benefit:hover {
  border-color: rgba(248, 141, 60, .3);
  background: rgba(255, 255, 255, .06)
}

.benefit .b-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--gradient-flame);
  display: grid;
  place-items: center;
  color: #1a0f00;
  box-shadow: var(--shadow-glow);
}

.benefit .tag {
  margin-top: 1.25rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(248, 141, 60, .85)
}

.benefit h3 {
  margin-top: .4rem;
  font-size: 1.15rem;
  font-weight: 700
}

.benefit p {
  margin-top: .5rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6
}

/* ---------- How it works ---------- */
.grid-steps {
  position: relative;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem
}

@media(min-width:768px) {
  .grid-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

.grid-steps::before {
  content: "";
  display: none;
  position: absolute;
  left: 16%;
  right: 16%;
  top: 4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 141, 60, .4), transparent);
}

@media(min-width:768px) {
  .grid-steps::before {
    display: block
  }
}

.step {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.75rem;
  text-align: center
}

.step .s-icon {
  margin-inline: auto;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--gradient-flame);
  display: grid;
  place-items: center;
  color: #1a0f00;
  box-shadow: var(--shadow-glow);
}

.step .step-label {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber)
}

.step h3 {
  margin-top: .4rem;
  font-size: 1.25rem;
  font-weight: 700
}

.step p {
  margin-top: .75rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6
}

/* ---------- Bibli quote ---------- */
.bibli-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(135deg, var(--night-elevated), var(--night-elevated) 60%, rgba(121, 53, 37, .4));
}

@media(min-width:640px) {
  .bibli-card {
    padding: 3.5rem
  }
}

.bibli-card::before {
  content: "";
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(248, 141, 60, .2);
  filter: blur(60px);
  pointer-events: none;
}

.bibli-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center
}

@media(min-width:768px) {
  .bibli-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr)
  }
}

.bibli-mascot-wrap {
  position: relative;
  margin-inline: auto;
  width: fit-content
}

.bibli-mascot-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background: var(--gradient-flame);
  opacity: .3;
  filter: blur(50px);
}

.bibli-mascot-wrap img {
  width: 14rem;
  animation: float-slow 6s ease-in-out infinite
}

@media(min-width:640px) {
  .bibli-mascot-wrap img {
    width: 18rem
  }
}

.bibli-copy {
  text-align: center
}

@media(min-width:768px) {
  .bibli-copy {
    text-align: left
  }
}

.bibli-copy .role {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber)
}

.bibli-copy blockquote {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15
}

.bibli-copy .desc {
  margin-top: 1.25rem;
  color: var(--muted)
}

/* ---------- Quiz ---------- */
.quiz-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 2rem;
  text-align: center;
}

@media(min-width:640px) {
  .quiz-card {
    padding: 3.5rem
  }
}

.quiz-card::before,
.quiz-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.quiz-card::before {
  left: -4rem;
  top: -4rem;
  width: 16rem;
  height: 16rem;
  background: rgba(243, 105, 53, .2)
}

.quiz-card::after {
  right: -5rem;
  bottom: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(248, 141, 60, .15)
}

.quiz-card .bibli-reading {
  position: relative;
  margin: 0 auto 1.5rem;
  width: 8rem
}

@media(min-width:640px) {
  .quiz-card .bibli-reading {
    width: 10rem
  }
}

.quiz-card h2 {
  position: relative;
  margin-top: 1.25rem;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 800
}

.quiz-card p {
  position: relative;
  margin: 1rem auto 0;
  max-width: 32rem;
  color: var(--muted)
}

.quiz-card .btn {
  position: relative;
  margin-top: 2rem
}

.quiz-card .fine {
  position: relative;
  margin-top: 1rem;
  font-size: .75rem;
  color: var(--muted)
}

/* ---------- Social proof ---------- */
.grid-quotes {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem
}

@media(min-width:768px) {
  .grid-quotes {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

.quote {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  border-radius: 1.75rem
}

.quote .stars {
  margin-bottom: 1rem
}

.quote blockquote {
  flex: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.35
}

.quote figcaption {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .05)
}

.quote figcaption .who {
  font-weight: 600
}

.quote figcaption .role {
  font-size: .75rem;
  color: var(--muted)
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 48rem;
  margin-inline: auto
}

.faq-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .75rem
}

.faq-item {
  border-radius: 1rem;
  overflow: hidden
}

.faq-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg);
}

.faq-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--amber);
  transition: transform .3s
}

.faq-item.open .faq-btn svg {
  transform: rotate(180deg)
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .3s ease, opacity .3s ease;
}

.faq-item.open .faq-panel {
  grid-template-rows: 1fr;
  opacity: 1
}

.faq-panel>div {
  min-height: 0
}

.faq-panel p {
  padding: 0 1.25rem 1.25rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 2.5rem;
  border-radius: 2.5rem;
  text-align: center;
  border: 1px solid rgba(248, 141, 60, .25);
  background: linear-gradient(135deg, rgba(243, 105, 53, .2), rgba(243, 85, 53, .1), rgba(121, 53, 37, .3));
}

@media(min-width:640px) {
  .final-cta {
    padding: 4rem
  }
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.final-cta::before {
  left: -5rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(248, 141, 60, .3)
}

.final-cta::after {
  right: -5rem;
  bottom: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(243, 105, 53, .25)
}

.final-cta h2 {
  position: relative;
  margin-top: 1.25rem;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05
}

.final-cta p {
  position: relative;
  margin: 1.25rem auto 0;
  max-width: 34rem;
  color: var(--muted)
}

.final-cta .actions {
  position: relative;
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center
}

@media(min-width:640px) {
  .final-cta .actions {
    flex-direction: row;
    justify-content: center
  }
}

.final-cta .actions .btn {
  width: 100%
}

@media(min-width:640px) {
  .final-cta .actions .btn {
    width: auto
  }
}

.final-cta .actions .btn:not(:last-child) {
  margin-bottom: .75rem
}

@media(min-width:640px) {
  .final-cta .actions .btn:not(:last-child) {
    margin-bottom: 0;
    margin-right: .75rem
  }
}

.perks {
  position: relative;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.25rem;
  color: var(--muted);
  font-size: .875rem
}

.perks li {
  display: flex;
  align-items: center;
  gap: .4rem
}

.perks svg {
  width: 1rem;
  height: 1rem;
  color: var(--amber)
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(255, 255, 255, .05);
  background: rgba(15, 37, 52, .5)
}

.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 2.5rem;
}

@media(min-width:768px) {
  .foot {
    flex-direction: row
  }
}

.foot nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
  color: var(--muted);
  font-size: .9rem
}

.foot nav a:hover {
  color: var(--fg)
}

.foot .copy {
  font-size: .75rem;
  color: rgba(169, 178, 188, .7)
}

.foot .copy .heart {
  color: var(--flame)
}

/* ---------- Animations ---------- */
@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-14px) rotate(1deg)
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}


/* =========================================================
   Content pages (páginas pilares + blog)
   Usadas por /habito-de-leitura/, /app-de-leitura/ e /blog/**
   ========================================================= */

/* ---------- Breadcrumb ---------- */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--muted);
}

.crumbs a {
  color: var(--muted);
  transition: color .2s
}

.crumbs a:hover {
  color: var(--amber)
}

.crumbs [aria-current="page"] {
  color: var(--fg)
}

/* ---------- Page hero (mais enxuto que o hero da home) ---------- */
.page-hero {
  background-image: var(--gradient-hero);
  padding-block: 3rem 2.5rem
}

@media(min-width:640px) {
  .page-hero {
    padding-block: 4rem 3rem
  }
}

.page-hero .eyebrow {
  margin-top: 1.5rem
}

.page-hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  max-width: 22ch;
}

.page-hero .lead {
  margin-top: 1.25rem;
  max-width: 44rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.page-hero .actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem
}

/* ---------- Prose (corpo de texto longo) ---------- */
.prose {
  max-width: 44rem;
  margin-inline: auto;
  color: rgba(246, 241, 231, .82);
  font-size: 1.02rem;
  line-height: 1.75;
}

.prose>*+* {
  margin-top: 1.15rem
}

.prose h2 {
  margin-top: 3rem;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  color: var(--fg);
}

.prose h3 {
  margin-top: 2.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
}

.prose h2+p,
.prose h3+p {
  margin-top: .85rem
}

.prose strong {
  color: var(--fg);
  font-weight: 600
}

.prose a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: .18em;
  text-decoration-thickness: 1px;
}

.prose a:hover {
  color: var(--flame)
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
  display: grid;
  gap: .6rem
}

.prose ul {
  list-style: disc
}

.prose ol {
  list-style: decimal
}

.prose li::marker {
  color: var(--amber)
}

.prose blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--amber);
  border-radius: 0 1rem 1rem 0;
  background: rgba(248, 141, 60, .07);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--fg);
}

/* Caixa de destaque dentro do texto (ex.: "como o Catlogue ajuda") */
.prose .note {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(248, 141, 60, .25);
  background: linear-gradient(135deg, rgba(248, 141, 60, .08), rgba(243, 85, 53, .06));
}

.prose .note h3 {
  margin-top: 0
}

.prose .note>*+* {
  margin-top: .85rem
}

/* ---------- Índice de posts (blog) ---------- */
.post-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media(min-width:768px) {
  .post-list {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  border-radius: 1.75rem;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.post-card:hover {
  border-color: rgba(248, 141, 60, .3);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-2px);
}

.post-card .tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(248, 141, 60, .85);
}

.post-card h2,
.post-card h3 {
  margin-top: .6rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.post-card p {
  margin-top: .6rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.post-card .more {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  color: var(--amber);
}

.post-card .more svg {
  width: .9rem;
  height: .9rem
}

/* ---------- Bloco de "leia também" no fim dos posts ---------- */
.related {
  max-width: 44rem;
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.related h2 {
  font-size: 1.15rem;
  font-weight: 700
}

.related ul {
  margin-top: 1rem;
  display: grid;
  gap: .6rem
}

.related a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: .18em;
  font-size: .95rem;
}

.related a:hover {
  color: var(--flame)
}

/* ---------- Meta do artigo (data / tempo de leitura) ---------- */
.post-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  font-size: .8rem;
  color: var(--muted);
}


/* =========================================================
   Legal pages (política de privacidade, exclusão de dados)
   Usadas por /policy.html e /deleteData.html
   ========================================================= */

.legal {
  max-width: 52rem;
  margin-inline: auto
}

/* ---------- Índice ---------- */
.legal-toc {
  padding: 1.75rem;
  border-radius: 1.75rem
}

@media(min-width:640px) {
  .legal-toc {
    padding: 2rem
  }
}

.legal-toc-title {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
}

.legal-toc ol {
  margin-top: 1.25rem
}

.legal-toc li+li {
  margin-top: .6rem
}

/* Duas colunas lendo de cima para baixo (e não em ziguezague) */
@media(min-width:768px) {
  .legal-toc ol {
    columns: 2;
    column-gap: 2rem
  }

  .legal-toc li {
    break-inside: avoid
  }
}

.legal-toc a {
  display: flex;
  gap: .6rem;
  font-size: .9rem;
  color: var(--muted);
  transition: color .2s;
}

.legal-toc a:hover {
  color: var(--amber)
}

.legal-toc .toc-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--amber);
}

/* ---------- Seções do documento ---------- */
/* padding: 0 anula o espaçamento genérico de `section` (estas são aninhadas) */
.legal-section {
  padding: 0;
  margin-top: 3.5rem;
  scroll-margin-top: 5.5rem;
  color: rgba(246, 241, 231, .82);
  font-size: .95rem;
  line-height: 1.75;
}

.legal-section h2 {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--border);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--fg);
}

.legal-section h2 .sec-num {
  flex-shrink: 0;
  font-size: .95rem;
  font-weight: 700;
  color: var(--amber)
}

.legal-section h3 {
  margin-top: 2rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--amber)
}

.legal-section>p {
  margin-top: 1rem
}

.legal-section ul {
  margin-top: 1rem;
  display: grid;
  gap: .6rem
}

.legal-section ul li {
  position: relative;
  padding-left: 1.15rem
}

.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: .35rem;
  height: .35rem;
  border-radius: 999px;
  background: var(--amber);
}

.legal-section strong {
  color: var(--fg);
  font-weight: 600
}

.legal-section a:not(.btn) {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: .18em;
  text-decoration-thickness: 1px;
}

.legal-section a:not(.btn):hover {
  color: var(--flame)
}

/* ---------- Tabelas ---------- */
.legal-table-wrap {
  margin-top: 1.25rem;
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  line-height: 1.6;
}

.legal-table th {
  font-family: var(--font-display);
  font-weight: 700;
  text-align: left;
  color: var(--amber);
  background: rgba(248, 141, 60, .08);
  padding: .8rem 1rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.legal-table td {
  padding: .75rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.legal-table tr:last-child td {
  border-bottom: 0
}

.legal-table tbody tr:hover td {
  background: rgba(255, 255, 255, .03)
}

.legal-table .row-label {
  color: var(--fg);
  font-weight: 600;
  white-space: nowrap
}

/* ---------- Caixa de destaque ---------- */
.legal-note {
  margin-top: 1.25rem;
  padding: 1.15rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(248, 141, 60, .25);
  border-left: 3px solid var(--amber);
  background: linear-gradient(135deg, rgba(248, 141, 60, .08), rgba(243, 85, 53, .05));
}

.legal-note>p+p {
  margin-top: .75rem
}

/* ---------- Cartão de contato ---------- */
.legal-contact {
  margin-top: 1.5rem;
  padding: 1.75rem;
  border-radius: 1.75rem;
  text-align: center;
}

.legal-contact .email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
}

.legal-contact p+p {
  margin-top: .5rem
}

/* Destaque inline para e-mails no meio do texto */
.legal-chip {
  display: inline-block;
  padding: .1rem .55rem;
  border-radius: .5rem;
  border: 1px solid rgba(248, 141, 60, .3);
  background: rgba(248, 141, 60, .1);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92em;
  color: var(--amber);
}

/* ---------- Passo a passo (exclusão de dados) ---------- */
.legal-steps {
  display: grid;
  gap: 1rem
}

.legal-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1.75rem;
  color: rgba(246, 241, 231, .82);
  font-size: .95rem;
  line-height: 1.75;
}

.legal-step .num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--gradient-flame);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #1a0f00;
  box-shadow: var(--shadow-glow);
}

.legal-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg)
}

.legal-step p {
  margin-top: .6rem
}

.legal-step ul {
  margin-top: .75rem;
  display: grid;
  gap: .5rem
}

.legal-step ul li {
  position: relative;
  padding-left: 1.15rem
}

.legal-step ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: .35rem;
  height: .35rem;
  border-radius: 999px;
  background: var(--amber);
}

.legal-step strong {
  color: var(--fg);
  font-weight: 600
}

/* ---------- Alternador de abas ---------- */
.legal-tabs {
  display: flex;
  gap: .5rem;
  padding: .4rem;
  border-radius: 1.25rem;
  margin-bottom: 2.5rem;
}

.legal-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1rem;
  border-radius: .9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--muted);
  transition: background .25s ease, color .25s ease;
}

.legal-tab svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0
}

.legal-tab:hover {
  color: var(--amber);
  background: rgba(248, 141, 60, .07)
}

.legal-tab[aria-selected="true"] {
  background: var(--gradient-flame);
  color: #1a0f00;
  box-shadow: var(--shadow-glow);
}

@media(max-width:420px) {
  .legal-tab {
    padding: .75rem .5rem;
    font-size: .82rem;
    gap: .35rem
  }
}

.legal-panel[hidden] {
  display: none
}


/* =========================================================
   Imprensa (/newspapers.html)
   Visual de recorte de jornal — específico desta página.
   Migrado do <style> inline em ago/2026; os tokens locais
   abaixo existem só para o "papel" do clipping, que é claro
   sobre o fundo escuro do site.
   ========================================================= */

:root {
  --clip-paper: #f7f1e3;
  --clip-paper-dim: #ece3cd;
  --clip-ink: #1c2b22;
  --clip-ink-soft: #445045;
  --clip-tape: rgba(255, 201, 87, .85);
}

/* ---------- Chips de destaque do hero ---------- */
.stat-row {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-chip {
  background: var(--night-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .625rem 1.125rem;
  font-size: .85rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.stat-chip b {
  color: var(--amber);
  font-family: var(--font-display);
}

/* ---------- Mural de recortes ---------- */
.board {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .015) 0 2px, transparent 2px 40px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .015) 0 2px, transparent 2px 40px),
    var(--night-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.125rem;
}

.clippings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.clip {
  position: relative;
  background: var(--clip-paper);
  color: var(--clip-ink);
  border-radius: 6px;
  padding: 1.625rem 1.375rem 1.5rem;
  box-shadow: 0 24px 40px -18px rgba(0, 0, 0, .55);
  clip-path: polygon(0% 1%, 3% 0%, 10% 1.2%, 18% 0.2%, 27% 1%, 36% 0.1%, 45% 1.1%, 54% 0.2%, 63% 1%, 72% 0.1%, 81% 1.2%, 90% 0.2%, 97% 1%, 100% 0%, 100% 99%, 96% 100%, 88% 99%, 79% 100%, 70% 99%, 61% 100%, 52% 99%, 43% 100%, 34% 99%, 25% 100%, 16% 99%, 7% 100%, 0% 99%);
  transform: rotate(-1.6deg);
  transition: transform .3s ease;
}

.clip:hover {
  transform: rotate(0deg) translateY(-4px);
}

.clip.b {
  transform: rotate(1.4deg);
}

.clip.b:hover {
  transform: rotate(0deg) translateY(-4px);
}

.tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 88px;
  height: 26px;
  background: var(--clip-tape);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .25);
  opacity: .92;
}

.masthead {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .7rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--clip-ink-soft);
  border-bottom: 2px solid var(--clip-ink);
  padding-bottom: .5rem;
  margin-bottom: 1rem;
}

.clip h3 {
  color: var(--clip-ink);
  font-size: 1.32rem;
  line-height: 1.25;
  margin-bottom: .75rem;
}

.clip p {
  font-size: .94rem;
  line-height: 1.62;
  color: var(--clip-ink-soft);
  margin: 0 0 1rem;
}

.clip-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--flame);
  display: inline-flex;
  align-items: center;
  gap: .375rem;
}

.clip-link:hover {
  text-decoration: underline;
}

.clip-photo-frame {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.125rem;
  aspect-ratio: 16/10;
  background: var(--clip-paper-dim);
  flex-shrink: 0;
}

.clip-photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---------- Fundadores ---------- */
.founders {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}

@media(min-width:768px) {
  .founders {
    grid-template-columns: repeat(3, 1fr)
  }
}

.founder {
  background: var(--night-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.375rem 1.25rem;
}

.founder .role {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .625rem;
  display: block;
}

.founder h3 {
  font-size: 1.15rem;
  margin-bottom: .375rem;
}

.founder p {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- Kit de imprensa ---------- */
.kit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, var(--night-soft), var(--night));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

@media(min-width:900px) {
  .kit {
    grid-template-columns: 1.1fr .9fr;
    padding: 3rem
  }
}

.kit h2 {
  font-size: 1.7rem;
  margin-bottom: .875rem;
}

.kit p {
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1.375rem;
}

.kit-facts {
  margin: 0 0 1.625rem;
  display: grid;
  gap: .625rem;
}

.kit-facts li {
  font-size: .92rem;
  color: var(--fg);
  display: flex;
  gap: .625rem;
}

.kit-facts li::before {
  content: "✓";
  color: var(--amber);
  font-weight: 700;
}

.kit-visual {
  background: var(--clip-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, .5);
}

.kit-visual gmpx-store-locator {
  width: 100%;
  height: 280px;
  display: block;
  --gmpx-color-primary: var(--flame);
  --gmpx-color-surface: var(--clip-paper);
  --gmpx-font-family-base: var(--font-sans);
}

.kit-visual .tagline {
  padding: 1rem 1.25rem;
  margin: 0;
  background: var(--clip-paper);
  color: var(--clip-ink-soft);
  font-size: .85rem;
  border-top: 1px solid var(--clip-paper-dim);
}
