/* ============================================================
   VIVENDO O SIM — DESIGN SYSTEM
   Dark-luxury · Editorial · Acolhedor
   ============================================================ */

:root {
  /* Paleta inspirada no livro "Recomeçar Juntos" */
  /* Marrom profundo + dourado pôr-do-sol + creme quente */
  --bg:        #1A0F0A;         /* marrom profundo (frame do livro) */
  --bg-soft:   #2A1810;         /* marrom card */
  --bg-warm:   #3D1F0D;         /* warm tone para gradientes */
  --bg-deep:   #0F0805;         /* mais profundo ainda */
  --ink:       #F5EDD8;         /* creme dourado (texto título) */
  --ink-soft:  #EFE2C4;         /* creme suave */
  --ink-mute:  #B59A78;         /* secundário caramelo */
  --line:      rgba(245, 237, 216, 0.14);

  --sunset:    #B85C2A;         /* laranja pôr-do-sol */
  --sunset-2:  #E8924A;         /* dourado solar quente */
  --gold:      #C9974A;         /* dourado profundo */
  --gold-soft: #E8C97A;         /* dourado claro */
  --ember:     #7A3B1E;         /* brasa - acento */

  /* Gradientes assinatura — luz do entardecer (vertical, brasa intensa) */
  --grad-hero:  linear-gradient(180deg, #0F0805 0%, #1A0F0A 18%, #3D1F0D 45%, #8A4220 72%, #C26033 92%, #E07A3E 100%);
  --grad-text:  linear-gradient(180deg, #C9974A 0%, #E8C97A 50%, #F5EDD8 100%);
  --grad-cta:   linear-gradient(135deg, #B85C2A 0%, #E8924A 100%);
  --grad-card:  linear-gradient(180deg, rgba(61,31,13,0.78) 0%, rgba(138,66,32,0.32) 100%);
  --glow-cta:   0 10px 36px rgba(224, 122, 62, 0.55);
  --glow-cta-hover: 0 16px 48px rgba(224, 122, 62, 0.75);
  --glow-gold:  0 0 18px rgba(232, 201, 122, 0.45);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Inter Tight', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --max:       1320px;
  --gut:       clamp(20px, 5vw, 80px);
  --section-y: clamp(80px, 14vh, 180px);

  /* Easing */
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--grad-hero);
  background-attachment: fixed;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
input { font: inherit; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

::selection { background: var(--gold); color: var(--bg); }

/* ============================================================
   CUSTOM CURSOR (desktop only)
   ============================================================ */
.cursor, .cursor-dot { display: none; }

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, input, [data-hover] { cursor: none; }

  .cursor {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
    mix-blend-mode: difference;
  }
  .cursor-dot {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 5px; height: 5px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
  }
  .cursor.is-hover {
    width: 64px; height: 64px;
    background: rgba(201, 169, 97, 0.1);
  }

  /* Texto circular no cursor — estilo pomelo/375 */
  .cursor__ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.35s var(--ease), transform 0.6s var(--ease);
    pointer-events: none;
    transform: scale(0.6);
  }
  .cursor__circle-text {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 14px;
    fill: #241712;                              /* marrom bem escuro — mais visível */
    stroke: rgba(245, 237, 216, 0.5);           /* realce claro atrás = letra cavada */
    stroke-width: 0.6px;
    paint-order: stroke;
    letter-spacing: 0.06em;
    filter: drop-shadow(0 1px 0.5px rgba(255, 245, 220, 0.55));
  }
  .cursor.is-label {
    width: 140px; height: 140px;
    background: transparent;
    border-color: transparent;
    mix-blend-mode: normal;
  }
  .cursor.is-label .cursor__ring {
    opacity: 1;
    transform: scale(1);
    animation: spin-cursor 9s linear infinite;
  }
  .cursor.is-label ~ .cursor-dot {
    opacity: 0;
    background: #C9A961;
  }
  @keyframes spin-cursor {
    from { transform: scale(1) rotate(0deg); }
    to   { transform: scale(1) rotate(360deg); }
  }

  /* Magnetismo — pomelo.la style */
  [data-magnetic] {
    transition: transform 0.4s var(--ease);
    will-change: transform;
  }
}

/* ============================================================
   TYPE — item 02 do checklist
   ============================================================ */
.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h-display em {
  font-style: italic;
  font-weight: 500;
  color: var(--sunset-2);
  background: linear-gradient(180deg, var(--sunset-2) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Palavra de impressão marcante (estilo "slowly") */
.mark {
  font-family: 'Pinyon Script', 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 400;
  color: var(--sunset-2);
  background: linear-gradient(180deg, var(--sunset-2) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.15em;
  padding: 0.35em 0.14em 0.4em;        /* topo+base com folga para ascenders/descenders */
  letter-spacing: 0;
  line-height: 1.5;                    /* respira pra cima e pra baixo */
  display: inline-block;
  overflow: visible;
  vertical-align: baseline;
  margin: -0.25em -0.05em -0.3em;      /* compensa o padding para não desalinhar a linha */
  /* Estado padrão (sempre visível em parents sem letter-by-letter) */
  opacity: 1;
  transform: translateY(0.05em);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

/* As palavras de destaque (.mark) surgem junto com o bloco pai (data-reveal).
   Sem entrada/saída lateral — aparecem de uma vez com o texto. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.eyebrow__line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gut);
  background: linear-gradient(180deg, rgba(13,17,23,0.85) 0%, rgba(13,17,23,0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav__brand-mark {
  color: var(--gold);
  font-size: 1.4rem;
  transform: rotate(-15deg);
  display: inline-block;
}
.nav__brand-logo {
  width: 38px;
  height: 38px;
  display: inline-block;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}
.footer__brand .nav__brand-logo { width: 44px; height: 44px; }
@media (max-width: 600px) {
  .nav__brand-logo { width: 32px; height: 32px; }
}
.nav__brand-text em {
  font-style: italic;
  color: var(--gold-soft);
  padding: 0 4px;
}
.nav__links {
  display: flex;
  gap: 34px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav__links a {
  position: relative;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { color: var(--gold-soft); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav__cta:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(201,169,97,0.05); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav { padding: 18px var(--gut); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--gut) 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.92;
  filter: saturate(1.2) contrast(1.08) brightness(1.08);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 0%, rgba(26,15,10,0.25) 60%, rgba(26,15,10,0.7) 100%),
    linear-gradient(180deg, rgba(26,15,10,0.35) 0%, transparent 25%, transparent 70%, rgba(26,15,10,0.55) 100%);
}
.hero__glow {
  position: absolute;
  top: 20%; left: 50%;
  width: 80vw; height: 80vw;
  max-width: 900px; max-height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232,165,71,0.25) 0%, rgba(184,82,30,0.10) 40%, transparent 70%);
  filter: blur(40px);
  animation: glow-pulse 8s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%      { transform: translate(-50%, -50%) scale(1.1); opacity: 0.85; }
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 11vw, 9.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 28px 0 36px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  padding: 0 0.1em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__line {
  display: block;
  overflow: hidden;
}
.hero__sub {
  max-width: 540px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-mute);
  line-height: 1.6;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: var(--gut);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  z-index: 1;
}
.hero__scroll-bar {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero__scroll-bar span {
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scroll-bar 2.4s var(--ease) infinite;
}
@keyframes scroll-bar {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 768px) {
  .hero__scroll { display: none; }
  .hero { min-height: 90vh; padding-top: 100px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad-cta);
  color: var(--ink);
  box-shadow: var(--glow-cta);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), filter 0.4s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--glow-cta-hover);
    filter: brightness(1.08);
  }
}
.btn--primary:active {
  transform: translateY(0) scale(0.99);
}
.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}
.btn--small {
  padding: 10px 18px;
  font-size: 0.8rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  position: relative;
  padding: var(--section-y) var(--gut);
  max-width: var(--max);
  margin: 0 auto;
}
.section__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.section__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0;
}
.section__label::before {
  content: '— ';
  margin-right: 4px;
}
.section__title { margin-bottom: 80px; }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.sobre__text p {
  font-size: 1.05rem;
  color: var(--ink-mute);
  margin-top: 24px;
  max-width: 520px;
}
.sobre__text p strong {
  color: var(--ink);
  font-weight: 500;
}
.sobre__text h2 { margin-bottom: 12px; }
.sobre__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar {
  position: relative;
  background: var(--grad-card);
  backdrop-filter: blur(8px);
  padding: 36px 28px;
  border-radius: 22px;
  border: 1px solid var(--line);
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 240px at var(--mx) var(--my),
    rgba(224, 197, 137, 0.18) 0%,
    rgba(224, 197, 137, 0.06) 30%,
    transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.pillar:hover {
  border-color: rgba(224, 197, 137, 0.45);
  transform: translateY(-3px);
}
.pillar:hover::before { opacity: 1; }
.pillar > * { position: relative; z-index: 1; }
.pillar__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: 0.9rem;
  color: var(--ink-mute);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 60px; }
  .sobre__pillars { grid-template-columns: 1fr; }
  .pillar { padding: 28px 20px; }
}

/* ============================================================
   DEVOCIONAIS
   ============================================================ */
.dev__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dev {
  background: var(--grad-card);
  backdrop-filter: blur(8px);
  padding: 40px 32px;
  border-radius: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  position: relative;
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease), background 0.5s var(--ease);
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
}
.dev > * { position: relative; z-index: 1; }

/* Glow seguindo o cursor (iluminação radial) — APENAS desktop com mouse real */
@media (hover: hover) and (pointer: fine) {
  .dev::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 280px at var(--mx) var(--my),
      rgba(224, 197, 137, 0.22) 0%,
      rgba(233, 150, 122, 0.10) 35%,
      transparent 65%);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
    z-index: 0;
  }
  .dev:hover {
    border-color: rgba(224, 197, 137, 0.45);
    transform: translateY(-3px);
  }
  .dev:hover::before { opacity: 1; }
  .dev:hover .dev__arrow { transform: translateX(8px); }
}

.dev__meta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  gap: 10px;
  transition: color 0.5s var(--ease);
}
.dev__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.dev__excerpt {
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.55;
  flex: 1;
  transition: color 0.5s var(--ease);
}
.dev__arrow {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 4px;
  transition: transform 0.5s var(--ease), color 0.5s var(--ease);
}
.dev--feature {
  grid-column: span 1;
  background: var(--bg-warm);
}

@media (max-width: 900px) {
  .dev__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dev__list { grid-template-columns: 1fr; gap: 12px; }
  .dev {
    padding: 22px 20px;
    min-height: auto;
    gap: 10px;
    border-radius: 16px;
  }
  .dev__meta { font-size: 0.62rem; letter-spacing: 0.16em; gap: 8px; }
  .dev__title {
    font-size: 1.15rem;
    line-height: 1.18;
  }
  .dev__excerpt {
    font-size: 0.85rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .dev__arrow { font-size: 1.1rem; margin-top: 0; }
}

/* ============================================================
   DEPOIMENTOS — colunas rolantes infinitas (estilo 21st.dev)
   ============================================================ */
.depoimentos { padding-bottom: 0; }
.dep__head {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}
.dep__lede {
  margin-top: 22px;
  color: var(--ink-mute);
  font-size: 1.02rem;
  line-height: 1.6;
}

.dep__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  height: 640px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.dep__col {
  overflow: hidden;
  position: relative;
  will-change: transform;
  transition: transform 0.15s linear;
}

.dep__track {
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation-duration: 38s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
.dep__track--up   { animation-name: dep-scroll-up; }
.dep__track--down { animation-name: dep-scroll-down; animation-duration: 46s; }
.dep__track--fast { animation-duration: 30s; }

/* Pausa ao passar o cursor */
.dep__col:hover .dep__track { animation-play-state: paused; }

@keyframes dep-scroll-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes dep-scroll-down {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

.dep__card {
  background: var(--grad-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
}
/* Hover removido — depoimentos ficam estáticos */
.dep__card--accent {
  background: linear-gradient(160deg, #2D1810 0%, #3A1F0E 100%);
  border-color: rgba(232, 165, 71, 0.28);
}

.dep__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.dep__by {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}
.dep__by strong {
  color: var(--sunset-2);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.dep__by span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 900px) {
  .dep__columns { grid-template-columns: 1fr 1fr; height: 560px; gap: 16px; }
  .dep__col:nth-child(3) { display: none; }
}

/* ============================================================
   DEPOIMENTOS MOBILE — carrossel rotativo (entrada direita → saída esquerda)
   Apenas 5 cards selecionados visíveis por vez (1 em primeiro plano).
   Pure CSS, sem JS, sem animação contínua pesada.
   ============================================================ */
@media (max-width: 600px) {
  /* Container vira um palco */
  .dep__columns {
    display: block;
    grid-template-columns: none;
    height: 240px;
    overflow: hidden;
    position: relative;
    mask-image: none;
    -webkit-mask-image: none;
    padding: 0;
    margin: 0;
  }

  /* Esconde a coluna do meio e a terceira por completo */
  .dep__col:nth-child(2),
  .dep__col:nth-child(3) { display: none; }

  /* Primeira coluna ocupa todo o palco */
  .dep__col:first-child {
    position: absolute;
    inset: 0;
    overflow: visible;
  }

  /* Track sem animação vertical */
  .dep__track {
    flex-direction: row;
    animation: none !important;
    transform: none !important;
    will-change: auto;
    gap: 0;
    height: 100%;
    position: relative;
  }

  /* Cada card flutua sobre o palco e gira em sequência */
  .dep__col:first-child .dep__card {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 26px 22px;
    border-radius: 20px;
    background: var(--grad-card);
    border: 1px solid rgba(232, 201, 122, 0.18);
    opacity: 0;
    transform: translateX(100%);
    animation: dep-rotate 25s infinite;
    animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform, opacity;
  }

  /* Mostra apenas 5 primeiros — esconde do 6º em diante */
  .dep__col:first-child .dep__card:nth-child(n+6) { display: none; }

  /* Delays escalonados — cada card aparece 5s depois do anterior */
  .dep__col:first-child .dep__card:nth-child(1) { animation-delay:  0s; }
  .dep__col:first-child .dep__card:nth-child(2) { animation-delay:  5s; }
  .dep__col:first-child .dep__card:nth-child(3) { animation-delay: 10s; }
  .dep__col:first-child .dep__card:nth-child(4) { animation-delay: 15s; }
  .dep__col:first-child .dep__card:nth-child(5) { animation-delay: 20s; }

  .dep__quote { font-size: 1rem; line-height: 1.45; }
  .dep__by { padding-top: 12px; font-size: 0.82rem; }
  .dep__head { margin-bottom: 36px; }

  /* Indicador embaixo do palco */
  .depoimentos .dep__columns::after {
    content: '— deslize automático —';
    position: absolute;
    bottom: -28px;
    left: 0; right: 0;
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    opacity: 0.6;
  }
}

/* Keyframes: entra da direita, fica centralizado, sai pela esquerda
   Total: 25s. Cada card ocupa 20% (5s) do ciclo:
   - 0–4%   : entrando da direita (fade + slide)
   - 4–16%  : visível no centro
   - 16–20% : saindo pela esquerda
   - 20–100%: invisível, esperando próxima rodada
*/
@keyframes dep-rotate {
  0%   { opacity: 0; transform: translateX(100%); }
  4%   { opacity: 1; transform: translateX(0); }
  16%  { opacity: 1; transform: translateX(0); }
  20%  { opacity: 0; transform: translateX(-100%); }
  100% { opacity: 0; transform: translateX(-100%); }
}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dep__track { animation: none !important; }
}

/* ============================================================
   E-BOOKS
   ============================================================ */
.ebook__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Quando há só 1 e-book — centralizar com destaque proporcional ao site */
.ebook__list--single {
  grid-template-columns: 1fr !important;
  max-width: 1040px;
  margin: 0 auto;
}
.ebook__list--single .ebook {
  display: flex !important;
  flex-direction: row !important;
  gap: 64px !important;
  align-items: center !important;
  padding: 60px 64px !important;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232,201,122,0.10) 0%, transparent 70%),
    var(--grad-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 201, 122, 0.22);
  border-radius: 32px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(245,237,216,0.06);
  grid-template-columns: none !important;
}
.ebook__list--single .ebook__cover {
  flex-shrink: 0 !important;
  width: 300px !important;
  height: auto;
  aspect-ratio: 948 / 1659;
  padding: 0 !important;
}
.ebook__list--single .ebook__info {
  flex: 1 !important;
  min-width: 0;
  display: block !important;
  min-height: auto !important;
}
.ebook__list--single .ebook__month {
  font-size: 0.78rem !important;
  letter-spacing: 0.24em !important;
  margin-bottom: 14px !important;
}
.ebook__list--single .ebook__info h3 {
  font-size: 2.6rem !important;
  margin-bottom: 18px !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
}
.ebook__list--single .ebook__info p {
  font-size: 1.08rem !important;
  margin-bottom: 32px !important;
  line-height: 1.65 !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
  color: var(--ink-soft) !important;
}
.ebook__list--single .ebook__price {
  font-size: 2rem !important;
}
.ebook__list--single .btn--small {
  padding: 14px 26px !important;
  font-size: 0.92rem !important;
}

/* MAIS E-BOOKS (Perdão / Tempestade) — grid de 2 abaixo do destaque */
.ebooks__more {
  text-align: center;
  margin: 90px auto 36px;
}
.ebooks__more-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 12px;
}
.ebooks__more-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ebook__list--duo {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 0 auto;
  gap: 32px;
}
.ebook__price--soon {
  font-size: 1rem !important;
  font-style: italic;
  color: var(--ink-mute) !important;
}
@media (max-width: 900px) {
  .ebook__list--duo { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 900px) {
  .ebook__list--single .ebook {
    padding: 48px 40px !important;
    gap: 48px !important;
  }
  .ebook__list--single .ebook__cover {
    width: 260px !important;
  }
  .ebook__list--single .ebook__info h3 {
    font-size: 2.1rem !important;
  }
}

@media (max-width: 700px) {
  .ebook__list--single .ebook {
    flex-direction: column !important;
    padding: 36px 26px !important;
    gap: 28px !important;
    text-align: center;
    border-radius: 26px;
  }
  .ebook__list--single .ebook__cover {
    width: 220px !important;
  }
  .ebook__list--single .ebook__info h3 {
    font-size: 1.7rem !important;
  }
  .ebook__list--single .ebook__info p {
    font-size: 0.98rem !important;
  }
  .ebook__list--single .ebook__price {
    font-size: 1.6rem !important;
  }
  .ebook__list--single .ebook__foot {
    justify-content: center;
  }
}
.ebook {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.5s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .ebook:hover { transform: translateY(-6px); }
  .ebook:hover .ebook__cover {
    box-shadow: 0 40px 80px -20px rgba(201, 169, 97, 0.4), inset 0 0 0 1px rgba(255,255,255,0.15);
    filter: brightness(1.15);
  }
}
.ebook__cover { transition: box-shadow 0.5s var(--ease), filter 0.5s var(--ease); }
.ebook__cover {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--sunset) 0%, #6b3a0f 100%);
  border-radius: 18px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}
.ebook__cover::after {
  content: '';
  position: absolute;
  top: 0; left: 18px; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.ebook__cover--coral {
  background: linear-gradient(160deg, var(--ember) 0%, #4a1f0b 100%);
}
.ebook__cover--teal {
  background: linear-gradient(160deg, #2D1810 0%, #6b3a0f 100%);
}

/* Vol. 04 — capa REAL com imagem (Recomeçar Juntos) */
.ebook__cover--image {
  padding: 0;
  background: #1A0F0A;
  border: 1px solid rgba(232, 201, 122, 0.32);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255, 216, 134, 0.12);
  position: relative;
  overflow: hidden;
}
.ebook__cover--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .ebook--featured:hover .ebook__cover--image img {
    transform: scale(1.04);
  }
}
/* Esconde o divisor vertical "lombada" só nessa capa com imagem */
.ebook__cover--image::after {
  display: none;
}

/* Faixa "Vol. 04 · Novo" no canto superior */
.ebook__cover-ribbon {
  position: absolute;
  top: 14px;
  left: -32px;
  transform: rotate(-38deg);
  background: linear-gradient(135deg, #FFE4A6 0%, #C9974A 100%);
  color: #1A0F0A;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 38px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Featured badge sutil no card */
.ebook--featured .ebook__info h3::after {
  content: '✨';
  margin-left: 8px;
  font-size: 0.8em;
}

/* Mês do e-book (eyebrow acima do título) */
.ebook__month {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
  font-weight: 500;
}

/* "Em breve" — selo sempre; escurecido/fade só no computador (hover) */
@media (hover: hover) and (pointer: fine) {
  .ebook--soon { opacity: 0.78; }
  .ebook--soon .ebook__cover { filter: saturate(0.6) brightness(0.85); }
  .ebook--soon:hover { opacity: 1; }
  .ebook--soon:hover .ebook__cover { filter: none; }
}
.ebook--soon .btn { opacity: 0.85; }

/* CARDS dos e-books "Em breve" (Perdão / Tempestade) */
.ebook__list--duo .ebook {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232,201,122,0.08) 0%, transparent 70%),
    var(--grad-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px 18px 28px;
  gap: 20px;
  backdrop-filter: blur(8px);
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.ebook__list--duo .ebook__info { padding: 0 10px; }

/* Leve pulsar — só transform (acelerado por GPU), não pesa a rolagem */
@keyframes ebook-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.022); }
}
@media (hover: hover) and (pointer: fine) {
  .ebook__list--duo .ebook:hover {
    border-color: rgba(232, 201, 122, 0.4);
    box-shadow: 0 30px 70px -30px rgba(201, 169, 97, 0.45);
  }
  .ebook__list--duo .ebook:hover,
  .ebook__list--single .ebook:hover {
    animation: ebook-pulse 1.7s ease-in-out infinite;
  }
}
@media (hover: none) {
  .ebook__list--duo .ebook:active,
  .ebook__list--single .ebook:active {
    animation: ebook-pulse 1.7s ease-in-out infinite;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ebook__list--duo .ebook:hover,
  .ebook__list--duo .ebook:active,
  .ebook__list--single .ebook:hover,
  .ebook__list--single .ebook:active { animation: none; }
}

.ebook__cover-soon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  background: rgba(15, 8, 5, 0.85);
  border: 1px solid rgba(232, 201, 122, 0.45);
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  z-index: 3;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* ============================================================
   KITS / COMBOS
   ============================================================ */
.kits {
  margin-top: 80px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}
.kits__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.kits__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-block;
  margin-bottom: 14px;
}
.kits__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.kits__title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.kit {
  background: var(--grad-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .kit:hover {
    border-color: rgba(232, 201, 122, 0.35);
    transform: translateY(-3px);
  }
}
.kit__tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 4px;
}
.kit h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.kit p {
  color: var(--ink-mute);
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}
.kit__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin: 6px 0 14px;
  display: block;
}
.kit__price small {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  color: var(--sunset-2);
  margin-left: 4px;
  display: block;
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.kit--anual {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232, 201, 122, 0.16) 0%, transparent 60%),
    var(--grad-card);
  border-color: rgba(232, 201, 122, 0.3);
}
.kit--anual .kit__tag {
  background: linear-gradient(135deg, #FFE4A6, #C9974A);
  color: #1A0F0A;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-self: flex-start;
  font-weight: 700;
}

@media (max-width: 900px) {
  .kits__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .kits__grid { grid-template-columns: 1fr; gap: 14px; }
  .kits { margin-top: 50px; padding-top: 50px; }
}
.ebook__cover-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: var(--ink);
}
.ebook__cover-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(244,237,224,0.7);
  letter-spacing: 0.08em;
}
.ebook__cover-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.ebook__cover-author {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,237,224,0.6);
}
.ebook__info h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.ebook__info p {
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.55;
  margin-bottom: 20px;
}
.ebook__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.ebook__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
}

/* Tablet + Mobile: layout horizontal (mini-capa à esquerda + info à direita)
   Tablet (601–900px) usa 2 colunas, mobile (<=600px) usa 1 coluna */
@media (max-width: 900px) {
  .ebook__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Layout horizontal de cada ebook */
  .ebook {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    align-items: start;
  }
  .ebook__cover {
    aspect-ratio: 3 / 4;
    padding: 16px 14px;
    border-radius: 12px;
    box-shadow: 0 18px 32px -12px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.06);
  }
  .ebook__cover::after { left: 11px; }
  .ebook__cover-eyebrow { font-size: 0.66rem; }
  .ebook__cover-title {
    font-size: 1rem !important;
    line-height: 1.12;
  }
  .ebook__cover-author {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
  }
  .ebook__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
  }
  .ebook__info h3 {
    font-size: 1.18rem;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .ebook__info p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .ebook__foot { gap: 12px; flex-wrap: wrap; }
  .ebook__price { font-size: 1.3rem; }
  .ebook__foot .btn {
    padding: 9px 16px;
    font-size: 0.8rem;
  }
}

/* Mobile (≤600px): vira coluna única + capa um pouco menor */
@media (max-width: 600px) {
  .ebook__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ebook {
    grid-template-columns: 110px 1fr;
    gap: 18px;
  }
  .ebook__cover {
    padding: 14px 12px;
    border-radius: 10px;
  }
  .ebook__cover::after { left: 10px; }
  .ebook__cover-title { font-size: 0.9rem !important; }
  .ebook__cover-eyebrow { font-size: 0.62rem; }
  .ebook__cover-author { font-size: 0.5rem; }
  .ebook__info h3 { font-size: 1.15rem; margin-bottom: 6px; }
  .ebook__info p { font-size: 0.85rem; }
  .ebook__price { font-size: 1.2rem; }
  .ebook__foot .btn { padding: 8px 14px; font-size: 0.78rem; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  max-width: 100%;
  margin: 0;
  padding-left: 0; padding-right: 0;
  overflow: hidden;
}
.newsletter__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gut);
  text-align: center;
}

/* Card que envolve descrição + form + nota (a partir do "Devocional inédito") */
.newsletter__card {
  position: relative;
  max-width: 640px;
  margin: 48px auto 0;
  padding: 56px clamp(28px, 5vw, 64px);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(232, 146, 74, 0.10) 0%, transparent 70%),
    var(--grad-card);
  border: 1px solid rgba(232, 201, 122, 0.18);
  border-radius: 36px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(245, 237, 216, 0.06);
  isolation: isolate;
}

/* Luz clareando ao fundo — halo difuso atrás do card */
.newsletter__card::before {
  content: '';
  position: absolute;
  inset: -40% -20%;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(232, 146, 74, 0.45) 0%, rgba(201, 151, 74, 0.18) 35%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: glow-breathe 6s ease-in-out infinite;
}

/* Brilho interno sutil — luz vindo de cima */
.newsletter__card::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 180px;
  background: radial-gradient(ellipse at top, rgba(232, 201, 122, 0.22) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 36px 36px 0 0;
  overflow: hidden;
  z-index: 0;
}

.newsletter__card > * { position: relative; z-index: 1; }

/* Ajustes dos elementos internos dentro do card */
.newsletter__card .newsletter__desc { margin: 0 0 32px; }
.newsletter__card .newsletter__note { margin-top: 32px; }

@keyframes glow-breathe {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.05); }
}
.newsletter .section__head { justify-content: center; }
.newsletter__desc {
  font-size: 1.05rem;
  color: var(--ink-mute);
  margin: 28px 0 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter__form {
  display: flex;
  gap: 10px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--grad-card);
  backdrop-filter: blur(8px);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}
.newsletter__form input {
  flex: 1;
  padding: 14px 22px;
  background: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 0.95rem;
}
.newsletter__form input::placeholder { color: var(--ink-mute); }
.newsletter__form .btn {
  padding: 14px 24px;
}
.newsletter__success {
  position: absolute;
  bottom: -42px;
  left: 0; right: 0;
  font-size: 0.9rem;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}
.newsletter__note {
  margin-top: 40px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .newsletter__form { flex-direction: column; border-radius: 18px; padding: 12px; }
  .newsletter__form .btn { justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-warm);
  padding: 80px var(--gut) 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto 80px;
  align-items: start;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  justify-self: end;
}
.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  font-size: 0.95rem;
  padding: 4px 0;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--gold-soft); }
.footer__big {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(4rem, 18vw, 18rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(232, 201, 122, 0.7);
  margin: 40px 0;
  user-select: none;
  /* Brilho irradiando nas bordas (mantém o "cavado" do texto) */
  filter:
    drop-shadow(0 0 18px rgba(232, 201, 122, 0.35))
    drop-shadow(0 0 4px rgba(232, 201, 122, 0.5));
}
.footer__big em {
  font-style: italic;
  padding: 0 0.05em;
  -webkit-text-stroke: 1.6px rgba(232, 201, 122, 0.85);
}
.footer__bot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  padding-top: 30px;
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { justify-self: start; }
}
@media (max-width: 480px) {
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .footer__bot { font-size: 0.7rem; }
}


/* ============================================================
   REVEAL ANIMATIONS (intersection observer)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 1.1s var(--ease),
    transform 1.1s var(--ease),
    filter 1.1s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ============================================================
   TEXTOS — agora surgem de uma vez (via [data-reveal]).
   Efeito letra-por-letra (entrada/saída) removido a pedido.
   ============================================================ */

/* ============================================================
   GLOW SUTIL — links, ícones, elementos dourados
   ============================================================ */

/* Links com glow ao passar */
a:not(.btn):hover {
  text-shadow: var(--glow-gold);
  transition: text-shadow 0.3s var(--ease);
}

/* Ícones SVG com filtro de glow no hover do pai */
svg [stroke="#C9882E"],
svg [stroke="#C9974A"],
svg [fill="#E8A547"],
svg [fill="#E8924A"] {
  transition: filter 0.4s var(--ease);
}
.submark-box:hover svg,
.sun:hover,
a:hover > svg {
  filter: drop-shadow(0 0 12px rgba(232, 201, 122, 0.55));
}

/* Hero scroll bar com leve glow */
.hero__scroll-bar span {
  box-shadow: 0 0 8px rgba(201, 151, 74, 0.6);
}

/* Selection com glow */
::selection {
  background: var(--sunset-2);
  color: var(--bg-deep);
  text-shadow: 0 0 8px rgba(232, 146, 74, 0.5);
}

/* Mark (palavra final) — glow constante sutil */
.hero__title .mark {
  text-shadow: 0 0 30px rgba(232, 201, 122, 0.25);
}

/* Reduced motion — item 08 do checklist (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   MOBILE MENU — hamburger + drawer
   ============================================================ */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  transition: border-color 0.3s var(--ease);
}
.nav__toggle:hover { border-color: var(--gold); }
.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232, 146, 74, 0.25) 0%, transparent 60%),
    var(--grad-hero);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 32px 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition:
    opacity 0.5s var(--ease),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.6s;
  overflow-y: auto;
}
.mobile-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.5s var(--ease),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}
/* Botão de fechar dentro do drawer */
.mobile-menu__close {
  position: absolute;
  top: max(24px, env(safe-area-inset-top));
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 14px;
  background: rgba(245, 237, 216, 0.06);
  border: 1px solid rgba(232, 201, 122, 0.25);
  color: var(--ink);
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  z-index: 5;
}
.mobile-menu__close:hover {
  border-color: var(--gold);
  background: rgba(245, 237, 216, 0.12);
}
.mobile-menu__close svg {
  color: var(--gold-soft);
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu__inner a {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.mobile-menu__inner a:hover,
.mobile-menu__inner a:active {
  color: var(--gold-soft);
  padding-left: 12px;
}
.mobile-menu__foot {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1rem;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
body.menu-open { overflow: hidden; }

/* ============================================================
   MOBILE OPTIMIZATION — ajustes finos por breakpoint
   ============================================================ */
@media (max-width: 768px) {
  .nav__toggle { display: inline-flex; }
  .nav { padding: 14px 22px; }
  .nav__brand-text { font-size: 1rem; }

  /* HERO — tipografia mobile */
  .hero { padding: 100px 22px 60px; min-height: 100svh; }
  .hero__title {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 22px 0 26px;
  }
  .hero__sub {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 32px;
    color: var(--ink-soft);
    text-shadow: 0 1px 12px rgba(0,0,0,0.6);
  }
  /* Hero overlay um pouco mais forte no mobile pra legibilidade */
  .hero__overlay {
    background:
      radial-gradient(ellipse at 50% 65%, transparent 0%, rgba(26,15,10,0.42) 60%, rgba(26,15,10,0.85) 100%),
      linear-gradient(180deg, rgba(26,15,10,0.45) 0%, transparent 30%, transparent 60%, rgba(26,15,10,0.7) 100%);
  }
  /* CTAs em coluna, full-width */
  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 0.92rem;
  }

  /* Section spacing e títulos */
  :root {
    --section-y: 80px;
  }
  .section__title,
  .h-display {
    font-size: clamp(2rem, 7vw, 2.6rem) !important;
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  /* Newsletter card — padding menor */
  .newsletter__card {
    padding: 40px 24px;
    border-radius: 28px;
    margin-top: 36px;
  }
  /* Sem animação de entrada nos textos/form da newsletter */
  .newsletter [data-reveal],
  .newsletter .h-display,
  .newsletter .h-display .char,
  .newsletter .h-display .mark,
  .newsletter__desc,
  .newsletter__form,
  .newsletter__note {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
  .newsletter__form {
    flex-direction: column;
    border-radius: 22px;
    padding: 8px;
    gap: 8px;
  }
  .newsletter__form input {
    text-align: center;
    padding: 14px 18px;
  }
  .newsletter__form .btn {
    width: 100%;
    justify-content: center;
  }

  /* Eyebrow e marca */
  .eyebrow { font-size: 0.7rem; letter-spacing: 0.22em; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .nav { padding: 12px 18px; }
  .hero { padding: 90px 18px 50px; }
  .hero__title {
    font-size: clamp(2.15rem, 12vw, 2.8rem);
  }
  .newsletter__card { padding: 36px 20px; border-radius: 24px; }
  .mobile-menu__inner a { font-size: 2rem; padding: 10px 0; }
  /* Sem barra cursor no mobile */
  .cursor, .cursor-dot { display: none !important; }
}

/* iOS safe area (notch) */
@supports (padding: max(0px)) {
  .nav { padding-top: max(14px, env(safe-area-inset-top)); }
  .mobile-menu {
    padding-top: max(100px, calc(env(safe-area-inset-top) + 80px));
    padding-bottom: max(50px, env(safe-area-inset-bottom));
  }
}

/* ============================================================
   MOBILE PERFORMANCE — desliga efeitos pesados
   (blur por letra + animações contínuas travam em devices fracos)
   ============================================================ */
@media (max-width: 900px) {
  /* Letras do hero: aparecem direto, sem char-by-char com blur */
  .char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .chars-in .char,
  .chars-out .char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  /* Palavra de destaque (.mark) — visível direto, sem fade lateral */
  .hero__title .hero__line .mark,
  .sobre .h-display .mark,
  .newsletter .h-display .mark,
  .hero__title .hero__line.chars-out .mark,
  .sobre .h-display.chars-out .mark,
  .newsletter .h-display.chars-out .mark {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Halo do card newsletter: estático, sem animação contínua */
  .newsletter__card::before {
    animation: none !important;
  }

  /* Glow pulsante do hero: estático no mobile */
  .hero__glow {
    animation: none !important;
  }

  /* Backdrop-filter / blur são caros — reduz */
  .swatch,
  .type-card,
  .logo-box,
  .submark-box,
  .newsletter__form,
  .newsletter__card {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  /* Transições com filter caem para opacity/transform apenas */
  [data-reveal] {
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease) !important;
  }
}
