/* ═══════════════════════════════════════════
   MÉTODO ENTRELINHA — DESIGN SYSTEM CSS
   Mobile-first · Mindify/GreenClover hybrid
   ═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --bg-primary: #FCFCFC;
  --bg-section: #F3F4F6;
  --bg-card: #FFFFFF;
  --text-primary: #171717;
  --text-secondary: #525252;
  --text-muted: #A3A3A3;
  --accent: #FFAE00;
  --accent-hover: #E69D00;
  --accent-secondary: #FFAE00;
  --accent-warm: #FFCC44;
  --surface-dark: #171717; /* Preto de alto contraste para line-art */
  --surface-dark-text: #FAFAF9;
  --border: rgba(23,23,23,0.08);
  --shadow: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 16px 40px rgba(0,0,0,0.1);
  --radius: 18px;
  --radius-pill: 50px;
  --max-w: 1200px;
  --gutter: 16px;
  --section-py: 4rem;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
}

@media (min-width: 810px) {
  :root {
    --gutter: 40px;
    --section-py: 7rem;
  }
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-primary);
  background: var(--bg-primary);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; font: inherit; }

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.content-narrow { max-width: 750px; margin: 0 auto; }
.text-center { text-align: center; }
.section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.section-alt { background: var(--bg-section); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; color: var(--text-primary); }
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); line-height: 1.25; font-family: var(--font-sans); font-weight: 600; }
.accent { color: var(--accent); }
.tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ─── PILL ─── */
.pill {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.pill-light {
  color: var(--surface-dark-text);
  border-color: rgba(255,255,255,0.3);
}

/* ─── BUTTONS ─── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
  text-align: center;
}
.btn-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124,154,130,0.3);
}
.btn-cta-lg { padding: 1.15rem 2.5rem; font-size: 1rem; }
.btn-cta-sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,247,242,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.4rem; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-primary);
}
.nav-links { display: none; gap: 1.5rem; }
.nav-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-inner .btn-cta-sm { display: none; }

@media (min-width: 810px) {
  .nav-inner { height: 72px; }
  .nav-links { display: flex; }
  .nav-inner .btn-cta-sm { display: inline-flex; }
  .logo-text { font-size: 1.25rem; }
}

/* ═══ HERO ═══ */
.hero {
  padding-top: 3rem;
  padding-bottom: 2rem;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('imagens/bg-dobra-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Tagline no topo */
.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* Logo */
.hero-logo {
  max-width: 220px;
  display: block;
  margin: 0 auto 1.5rem;
}

/* Headline — DOMINANTE */
.hero-h1 {
  margin: 0 0 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(2.8rem, 10vw, 4.5rem);
}

/* Sub copy */
.hero-sub {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 2.5rem;
  padding: 0 0.5rem;
}

/* Nota abaixo do CTA */
.hero-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* Imagem hero */
.hero-media {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}
.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
@keyframes floatBadge {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
.hero-badge {
  position: absolute;
  background: var(--bg-card);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-hover);
  box-shadow: var(--shadow-hover);
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-badge-1 { top: 10%; left: -3%; animation-delay: 0s; }
.hero-badge-2 { top: 45%; right: -3%; animation-delay: 1.5s; }
.hero-badge-3 { bottom: 10%; left: 2%; animation-delay: 3s; }

@media (min-width: 810px) {
  .hero { padding-top: 5rem; padding-bottom: 4rem; }
  .hero-grid { gap: 4rem; }
  .hero-tagline { font-size: 1.05rem; margin-bottom: 3rem; }
  .hero-logo { max-width: 300px; margin-bottom: 3rem; }
  .hero-h1 { margin-bottom: 2.5rem; }
  .hero-sub { font-size: 1.05rem; margin-bottom: 2.5rem; }
  .hero-media { max-width: 460px; }
}

/* ═══ MEDIA PLACEHOLDER ═══ */
.media-placeholder {
  background: linear-gradient(135deg, var(--bg-section) 0%, #E8E3DB 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  min-height: 280px;
  border: 2px dashed rgba(168,162,158,0.3);
}
.hero-img-placeholder { min-height: 350px; }

/* ═══ STATS ═══ */
.stats-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.stat-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent-secondary);
  letter-spacing: -0.02em;
  line-height: 1.1;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
  max-width: 280px;
  margin: 0 auto;
}
.bridge {
  text-align: center;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 810px) {
  .stats-card { padding: 2rem; }
}

/* ═══ PAIN / DOR ═══ */
.section-title {
  margin-bottom: 2rem;
}
.content-narrow .pill { margin-bottom: 0.75rem; }
.content-narrow .section-title { margin-top: 0.5rem; }
/* ═══ CAROUSEL DOR (DOBRA 3) ═══ */
.carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto 2rem;
}
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0.5rem; 
  scrollbar-width: none; /* Firefox */
}
.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.carousel-card {
  flex: 0 0 88%;
  scroll-snap-align: center;
  background: linear-gradient(145deg, var(--bg-card) 0%, #FAF8F5 100%);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  border: none;
  display: flex;
  flex-direction: column;
}
@media (min-width: 810px) {
  .carousel-card { flex: 0 0 60%; }
}
.carousel-step {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.carousel-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
}
.carousel-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.carousel-list li {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.carousel-list li strong {
  color: var(--text-primary);
}

.pain-anchor, .future-close {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
}

/* ═══ TRANSITION (DOBRA 4) ═══ */
#transicao::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('imagens/bg-dobra-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}
.quote-title {
  margin-bottom: 2rem;
}

.transition-problems {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: transparent;
}
.problem-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.problem-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 0.25rem;
}
.problem-item p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 400px;
}

.transition-solution {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 0 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: left;
}
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
}
.icon-check {
  color: #10B981; /* Verde */
  font-weight: 800;
  font-size: 1.2rem;
  margin-top: 0.1rem;
}
.solution-item div {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.solution-item strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.transition-bridge {
  margin-top: 2rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

/* ═══ STEPS ═══ */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.step {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-number {
  font-family: 'Give You Glory', cursive, var(--font-serif);
  font-size: 3.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.step-title { margin-bottom: 0.25rem; }
.step-period {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.step-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.step-arrow {
  display: none;
  font-size: 2rem;
  color: var(--text-muted);
  align-self: center;
}
.steps-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

@media (min-width: 810px) {
  .steps-grid { flex-direction: row; align-items: stretch; }
  .step { flex: 1; }
  .step-arrow { display: block; }
}

/* ═══ VALUE STACK ═══ */
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.value-card-img {
  height: auto;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
}
.value-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.value-card-body h3 { font-size: 1.15rem; }
.value-card-sub {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}
.value-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.value-old-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: auto;
}

@media (min-width: 810px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══ CHECKLISTS ═══ */
.checklist { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li {
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0.75rem 1rem;
  border-radius: 12px;
}
.checklist-yes li { background: rgba(124,154,130,0.08); }
.checklist-no li { background: rgba(196,133,106,0.08); color: var(--text-secondary); }

/* ═══ ANCHOR / PREÇO ═══ */
.anchor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.anchor-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.anchor-emoji { font-size: 1.5rem; flex-shrink: 0; }
.anchor-item p { font-size: 0.9rem; color: var(--text-secondary); flex: 1; }
.anchor-price {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.anchor-offer {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  margin-top: 2rem;
}
.anchor-offer-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.anchor-offer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.anchor-old {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.anchor-new {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.anchor-metaphor {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

@media (min-width: 810px) {
  .anchor-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══ CTA SECTIONS ═══ */
.section-cta {
  background: var(--accent);
  color: #fff;
}
.section-cta .cta-title {
  color: #fff;
  margin-bottom: 1.5rem;
}
.cta-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.cta-checklist li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}
.section-cta .btn-cta {
  background: var(--bg-card);
  color: var(--accent);
}
.section-cta .btn-cta:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.cta-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.section-cta .cta-sub { color: rgba(255,255,255,0.6); }

/* ═══ CONVERSA ═══ */
.conversa-body p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.conversa-close {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-primary);
  margin-top: 1rem;
}

/* ═══ AUTHORITY / DARK ═══ */
.section-dark {
  background: var(--surface-dark);
  color: var(--surface-dark-text);
}
.section-dark .section-title { color: var(--surface-dark-text); }
.authority-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.authority-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}
.authority-card:hover { border-color: rgba(255,255,255,0.2); }
.authority-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.authority-card h3 {
  color: var(--surface-dark-text);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.authority-card p {
  font-size: 0.9rem;
  color: rgba(250,250,249,0.65);
  line-height: 1.55;
}

@media (min-width: 810px) {
  .authority-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══ CTA FINAL ═══ */
.section-cta-final {
  position: relative;
  background: var(--surface-dark);
  color: var(--surface-dark-text);
  overflow: hidden;
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41,37,36,0.92), rgba(41,37,36,0.85));
}
.cta-final-content { position: relative; z-index: 1; }
.cta-final-title {
  color: var(--surface-dark-text);
  margin-bottom: 2rem;
}
.cta-final-stack {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cta-final-stack p {
  font-size: 0.9rem;
  color: rgba(250,250,249,0.7);
}
.cta-final-stack s { color: rgba(250,250,249,0.4); }
.cta-final-total {
  font-size: 1.25rem !important;
  color: var(--surface-dark-text) !important;
  margin-top: 0.5rem;
}
.section-cta-final .btn-cta {
  background: var(--accent);
  color: #fff;
}
.section-cta-final .cta-sub { color: rgba(250,250,249,0.5); }
.cta-guarantee {
  font-size: 0.8rem;
  color: var(--accent-warm);
  margin-top: 0.75rem;
}

/* ═══ FAQ ═══ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-bottom: 1.25rem;
  padding-right: 2rem;
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--accent); }
.footer-seals {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-tagline {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ═══ ANIMATIONS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* Smooth FAQ open */
.faq-item p {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}


/* ═══ VISÃO DO FUTURO (DOBRA 6) ═══ */
/* ═══ VISÃO DO FUTURO (DOBRA 6) ═══ */
.future-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.future-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.future-badge {
  font-family: var(--font-sans);
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}
.future-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.future-card-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.future-card-text:last-child {
  margin-bottom: 0;
}
.future-close {
  color: var(--text-secondary);
  font-size: 1.2rem;
  line-height: 1.6;
}
