/* =========================
   VARIÁVEIS / TEMA (DARK)
   ========================= */
:root {
  --bg-primary: #020617;
  --bg-secondary: #050816;
  --bg-tertiary: #0b1220;

  --text-primary: #f9fafb;
  --text-secondary: #cbd5f5;
  --text-tertiary: #94a3b8;

  --accent-1: #38bdf8;
  --accent-2: #6366f1;
  --accent-3: #a855f7;
  --accent-soft: rgba(56, 189, 248, 0.12);

  --border-soft: rgba(148, 163, 184, 0.4);

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.75);
  --shadow-glow: 0 0 30px rgba(56, 189, 248, 0.55);

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 999px;
}


/* ===== LIGHT THEME ===== */
:root.light {
  --bg-primary: #f7f7f9;
  --bg-secondary: #ffffff;
  --bg-tertiary: #e8e8ef;

  --text-primary: #111827;
  --text-secondary: #374151;
  --text-tertiary: #6b7280;

  --neon-cyan: #0078ff;
  --neon-purple: #7b3bf7;
  --neon-pink: #c026d3;
  --neon-green: #16a34a;
  --neon-blue: #0284c7;

  --border-color: rgba(120, 120, 120, 0.35);
  --shadow-neon: 0 0 18px rgba(0, 122, 255, 0.28);
}

/* =========================
   TEMA CLARO
   ========================= */
body.theme-light {
  --bg-primary: #e5e7eb;
  --bg-secondary: #f3f4f6;
  --bg-tertiary: #ffffff;

  --text-primary: #020617;
  --text-secondary: #4b5563;
  --text-tertiary: #6b7280;

  --accent-1: #0ea5e9;
  --accent-2: #4f46e5;
  --accent-3: #a855f7;
  --accent-soft: rgba(14, 165, 233, 0.12);

  --border-soft: rgba(148, 163, 184, 0.6);

  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 26px rgba(59, 130, 246, 0.45);
}

/* =========================
   RESET / BASE
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #0b1220 0, var(--bg-primary) 55%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Fundo animado suave */
body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background:
    radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.08) 0, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.12) 0, transparent 55%);
  opacity: 0.9;
  z-index: -1;
  animation: bg-move 40s linear infinite alternate;
}

@keyframes bg-move {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-60px, 40px, 0); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================
   HEADER
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.9));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

/* logo */
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--accent-1), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1120;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.75);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* nav */
.main-nav {
  display: flex;
  gap: 1.8rem;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.2s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  transition: width 0.2s;
}

.main-nav a:hover {
  color: var(--accent-1);
}

.main-nav a:hover::after {
  width: 100%;
}

/* header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--bg-tertiary);
  color: var(--accent-1);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.theme-toggle:hover {
  box-shadow: 0 0 12px rgba(148, 163, 184, 0.6);
  transform: translateY(-1px);
}

.btn-header {
  padding: 0.75rem 1.9rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #020617;
  box-shadow: 0 0 26px rgba(56, 189, 248, 0.65);
  transition: all 0.2s;
}

.btn-header:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* =========================
   BOTÕES GERAIS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.4s;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #020617;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.85);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-1);
  border-color: rgba(56, 189, 248, 0.5);
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.45);
  transform: translateY(-2px);
}

/* =========================
   SEÇÕES
   ========================= */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.8rem auto;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

/* =========================
   HERO
   ========================= */
.hero {
  padding-top: 4.5rem;
  padding-bottom: 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--accent-1);
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  font-size: 2.9rem;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.hero-content h1 span {
  color: var(--accent-2);
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.hero-badges span {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.8);
}

/* hero visual */
.hero-visual {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.96));
  box-shadow: var(--shadow-soft);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.16), transparent 55%);
  opacity: 0.25;
}

.hero-visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* IA chip */
.hero-chip {
  align-self: flex-start;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.chip-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-1);
}

.chip-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* charts */
.hero-charts {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
}

/* candles */
.chart-candles {
  height: 150px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 0.9rem 0.7rem;
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  overflow: hidden;
}

.candle {
  width: 0.55rem;
  border-radius: 999px;
  background: var(--accent-1);
  position: relative;
  animation: candles 4s ease-in-out infinite alternate;
}

.candle::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  top: -12px;
  bottom: 100%;
  background: rgba(148, 163, 184, 0.7);
  transform: translateX(-50%);
}

.candle-up {
  height: 60%;
}

.candle-down {
  height: 35%;
  background: #fb7185;
}

.candle:nth-child(2) { animation-delay: 0.2s; }
.candle:nth-child(3) { animation-delay: 0.4s; }
.candle:nth-child(4) { animation-delay: 0.6s; }
.candle:nth-child(5) { animation-delay: 0.8s; }

@keyframes candles {
  0% { transform: translateY(4px) scaleY(0.9); opacity: 0.85; }
  100% { transform: translateY(-4px) scaleY(1.03); opacity: 1; }
}

/* digits */
.chart-digits {
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
  border: 1px dashed rgba(148, 163, 184, 0.55);
  padding: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-content: flex-start;
}

.digit {
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.digit-active {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.8);
  color: var(--accent-1);
}

/* metrics */
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.metric {
  flex: 1;
  min-width: 110px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.75rem 0.85rem;
}

.metric-label {
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

.metric-value {
  font-size: 1.1rem;
  font-weight: 700;
}

/* =========================
   CARDS
   ========================= */
   .plan-card {
  border-top: 2px solid rgba(255,255,255,0.12);
}
.plan-card {
  border-top: 2px solid rgba(0,0,0,0.12);
}

   
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-soft);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.75);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.95);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* =========================
   TIMELINE
   ========================= */
.timeline {
  position: relative;
  padding-top: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-1), var(--accent-2), var(--accent-3));
  transform: translateX(-50%);
  opacity: 0.6;
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.timeline-item {
  position: relative;
}

.timeline-item:nth-child(odd) {
  padding-right: 2.5rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: 2.5rem;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent-1);
  transform: translate(-50%, 0);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.8);
}

.timeline-content {
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--border-soft);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.timeline-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-1);
  margin-bottom: 0.3rem;
}

.timeline-title {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.timeline-text {
  font-size: 0.94rem;
  color: var(--text-secondary);
}

/* =========================
   PLANOS
   ========================= */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.pricing-card {
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--border-soft);
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: rgba(56, 189, 248, 0.8);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: 1.1rem;
  left: 1.7rem;
  padding: 0.25rem 0.85rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #020617;
}

.pricing-name {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.pricing-price {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-bottom: 1.6rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.7rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.55rem;
}

/* =========================
   AGENDAMENTO
   ========================= */
.agendar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.agendar-copy .section-title {
  text-align: left;
}

.agendar-copy .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.bullet-list {
  list-style: none;
  margin: 1.6rem 0 1.7rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.bullet-list li {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.bullet-list li::before {
  content: "•";
  color: var(--accent-1);
  margin-top: 0.15rem;
}

.agendar-cta-extra {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.agendar-note {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.agendar-form-card {
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 1.9rem 1.7rem;
}

.agendar-form .form-row {
  margin-bottom: 1rem;
}

.agendar-form label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
  color: var(--text-secondary);
}

.agendar-form input,
.agendar-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.96);
  color: var(--text-primary);
  padding: 0.65rem 0.7rem;
  font-size: 0.9rem;
}

body.theme-light .agendar-form input,
body.theme-light .agendar-form textarea {
  background: #f9fafb;
}

.agendar-form textarea {
  resize: vertical;
}

.form-row-inline {
  display: flex;
  gap: 0.9rem;
}

.form-row-inline > div {
  flex: 1;
}

.form-submit {
  width: 100%;
}

.form-footnote {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-tertiary);
}


/* ===== FORMULÁRIO DE AGENDAMENTO ===== */

.agendar-form-card {
  background: radial-gradient(circle at top left,
              rgba(0, 195, 255, 0.08),
              rgba(0, 0, 0, 0.92));
  border-radius: 18px;
  padding: 1.75rem 1.75rem 2rem;
  box-shadow: 0 18px 45px rgba(10, 18, 40, 0.9);
  border: 1px solid rgba(91, 183, 255, 0.25);
  max-width: 480px;
  margin-left: auto;
}

/* inputs, selects e textarea dentro do card */
.agendar-form-card input,
.agendar-form-card select,
.agendar-form-card textarea {
  width: 100%;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 165, 255, 0.45);
  background: rgba(3, 9, 30, 0.95);
  color: #e5f0ff;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
              background 0.2s ease, transform 0.1s ease;
}

/* corrige o select e os campos de data/hora que são menores */
.agendar-form-card select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #7de4ff 50%),
                    linear-gradient(135deg, #7de4ff 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.agendar-form-card input[type="date"],
.agendar-form-card input[type="time"] {
  max-width: 140px;
}

/* foco bonito */
.agendar-form-card input:focus,
.agendar-form-card select:focus,
.agendar-form-card textarea:focus {
  border-color: #7de4ff;
  box-shadow: 0 0 0 1px rgba(125, 228, 255, 0.6);
  background: rgba(6, 18, 50, 0.98);
}

/* botão de enviar dentro do card */
.agendar-form-card .form-submit {
  margin-top: 0.9rem;
  width: 100%;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* status do formulário: já está no seu CSS, mas deixo junto pra garantir */
.form-status {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #7de4ff;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-status.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-status.error {
  color: #ff7b7b;
}

/* MOBILE – deixa tudo em coluna bonitinho */
@media (max-width: 768px) {
  .agendar-form-card {
    margin: 1.5rem auto 0;
    max-width: 100%;
    padding: 1.25rem 1.25rem 1.75rem;
  }

  .agendar-form-card input[type="date"],
  .agendar-form-card input[type="time"] {
    max-width: 100%;
  }
}

.agendar-form-card input,
.agendar-form-card select,
.agendar-form-card textarea {
  height: 52px; /* aumenta a altura */
  margin-bottom: 10px; /* espaçamento entre campos */
}

.agendar-form-card input:focus,
.agendar-form-card select:focus {
  outline: none;
  border: 1px solid rgba(0, 170, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 170, 255, 0.6);
  transition: 0.2s ease-in-out;
}


.agendar-form-card button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0, 200, 255, 0.8);
}

/* PASSOS – MOBILE */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;   /* em vez de 2 colunas, só 1 */
    gap: 24px;
  }

  .step-card {
    max-width: 340px;
    margin: 0 auto;
    padding: 24px 18px;
  }

  .step-card h3 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .step-card p {
    font-size: 13px;
    line-height: 1.5;
  }
}


/* STATUS DO FORMULÁRIO ----------------------------------------- */

.form-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  min-height: 1.2em;
  color: var(--text-tertiary);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-status--visible {
  opacity: 1;
  transform: translateY(0);
}

.form-status--sending {
  color: var(--accent-3);
}

.form-status--success {
  color: #4ade80; /* verde sucesso */
}

.form-status--error {
  color: #f97373; /* vermelho erro */
}


/* =========================
   FAQ
   ========================= */
.faq-items {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(15, 23, 42, 0.96);
  margin-bottom: 0.9rem;
  overflow: hidden;
}

.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent-1);
  transition: transform 0.2s;
}

.faq-input {
  display: none;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.faq-input:checked ~ .faq-content {
  max-height: 300px;
}

.faq-input:checked ~ .faq-label .faq-icon {
  transform: rotate(180deg);
}

.faq-text {
  padding: 0 1.2rem 1rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* =========================
   CTA FINAL
   ========================= */
.cta-final {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.7);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.96));
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cta-final h2 {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.cta-final p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1.6rem auto;
}

.cta-final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-urgency {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22c55e;
}

/* =========================
   DIVISORES ENTRE SEÇÕES
   ========================= */
.section-divider {
  height: 90px;
  position: relative;
  overflow: hidden;
}

.divider-graph::before,
.divider-digits::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
}

/* linha estilo gráfico */
.divider-graph::before {
  background:
    linear-gradient(to right,
      rgba(56, 189, 248, 0.15),
      rgba(99, 102, 241, 0.8),
      rgba(56, 189, 248, 0.15));
  clip-path: polygon(
    0 70%, 8% 45%, 18% 60%, 28% 30%, 40% 55%, 52% 35%, 65% 50%, 78% 25%, 88% 40%, 100% 20%
  );
  animation: divider-move 16s linear infinite alternate;
}

/* blocos tipo dígitos */
.divider-digits::before {
  background-image:
    radial-gradient(circle at 10% 70%, rgba(56, 189, 248, 0.4) 0, transparent 45%),
    radial-gradient(circle at 35% 40%, rgba(99, 102, 241, 0.4) 0, transparent 45%),
    radial-gradient(circle at 65% 65%, rgba(56, 189, 248, 0.4) 0, transparent 45%),
    radial-gradient(circle at 90% 35%, rgba(168, 85, 247, 0.4) 0, transparent 45%);
  animation: divider-move 22s linear infinite alternate;
}

@keyframes divider-move {
  0% { transform: translateX(-20px); }
  100% { transform: translateX(20px); }
}

/* =========================
   FOOTER
   ========================= */
footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.96);
  padding-top: 2.5rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.2rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-section h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
  color: var(--text-primary);
}

.footer-section a {
  display: block;
  text-decoration: none;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
}

.footer-section a:hover {
  color: var(--accent-1);
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 1);
  padding: 0.9rem 0 1.3rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-tertiary);
}



/* ===== HERO GRAPH ===== */

.chart-wrapper {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  width: 160%;
  height: 3px;
  background: linear-gradient(90deg,
    rgba(0, 199, 255, 0.9),
    rgba(140, 100, 255, 0.9),
    rgba(0, 199, 255, 0.9)
  );
  opacity: 0.7;
  border-radius: 4px;
}


.chart-line-1 {
  top: 30%;
  animation: move-line 12s linear infinite;
}

.chart-line-2 {
  top: 70%;
  animation: move-line 14s linear infinite reverse;
}

@keyframes move-line {
  0%   { transform: translateX(-300px); }
  100% { transform: translateX(300px);  }
}


.chart-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: radial-gradient(circle, rgba(56,189,248,0.15), transparent);
}


/* ===== DIVIDER ===== */

.divider {
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.divider-chart {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg,
    var(--accent-1),
    var(--accent-2),
    var(--accent-3)
  );
  opacity: 0.4;
  position: relative;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.divider-line {
  position: absolute;
  height: 100%;
  width: 40%;
  left: -200px;
  background: rgba(255,255,255,0.2);
  animation: divider-move 5s linear infinite;
}

@keyframes divider-move {
  0% { transform: translateX(-200px); }
  100% { transform: translateX(2000px); }
}



/* =========================
   RESPONSIVIDADE
   ========================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agendar-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none; /* simplão para agora; depois podemos pôr menu móvel */
  }
}




@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 3.3rem;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .cards-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .section-divider {
    height: 60px;
  }

  /* reduzir animações pesadas no mobile */
  .heavy-anim {
    animation: none !important;
    box-shadow: var(--shadow-soft);
  }

  body::before {
    animation-duration: 55s;
  }
}

/* ===== COOKIE BANNER ===== */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 360px;
  padding: 1.2rem 1.4rem;
  background: radial-gradient(circle at top left,
              rgba(0, 188, 255, 0.18),
              rgba(3, 7, 30, 0.96));
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(120, 200, 255, 0.45);
  color: var(--text-primary);
  font-size: 0.88rem;
  line-height: 1.5;
  z-index: 9999;
  backdrop-filter: blur(10px);
  display: none; /* começa escondido, o JS controla */
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-content p {
  margin: 0;
  color: var(--text-secondary);
}

.btn-cookie-accept {
  align-self: flex-end;
  padding: 0.4rem 1.1rem;
  font-size: 0.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #00c9ff, #0078ff);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 30px rgba(0, 140, 255, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0, 140, 255, 0.7);
  opacity: 0.96;
}

/* Mobile – ocupa mais largura sem atrapalhar */

@media (max-width: 768px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 12px;
    padding: 1rem 1.1rem;
  }

  .cookie-content {
    gap: 0.6rem;
  }

  .btn-cookie-accept {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}



/* Preferência do usuário para menos movimento */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 768px) {
  .heavy-anim {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* esconder gráficos no mobile */
@media (max-width: 768px) {
  .chart-wrapper {
    display: none !important;
  }
}

/* 💠 FORMULÁRIO PREMIUM NEON 💠 */

.agendar-form {
    background: linear-gradient(135deg, rgba(5,20,45,0.95), rgba(5,10,25,0.95));
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 0 35px rgba(0, 200, 255, 0.18);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 150, 255, 0.15);
}

.agendar-form input,
.agendar-form select {
    width: 100%;
    height: 46px;
    border-radius: 12px;
    background: rgba(8, 25, 55, 0.85);
    border: 1px solid rgba(0, 150, 255, 0.25);
    color: #b9dfff;
    padding: 0 14px;
    margin-bottom: 14px;
    font-size: 15px;
    transition: 0.3s ease;
}

/* Hover/Focus efeito */
.agendar-form input:focus,
.agendar-form select:focus {
    border-color: rgba(0, 200, 255, 0.9);
    box-shadow: 0 0 12px rgba(0, 200, 255, 0.6);
    outline: none;
}

/* Botão */
.agendar-form button {
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, #3aa8ff, #0068ff);
    border-radius: 28px;
    border: none;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    box-shadow: 0 0 18px rgba(0, 150, 255, 0.45);
    transition: 0.35s ease;
}

.agendar-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.85);
    background: linear-gradient(90deg, #5fd8ff, #0090ff);
}

/* Mensagem de sucesso */
.agendar-success {
    margin-top: 12px;
    font-size: 14px;
    color: #00ffbf;
    text-shadow: 0 0 6px rgba(0,255,200,0.6);
}



.agendar-form input,
.agendar-form select {
    background: rgba(12, 27, 60, 0.95);
}

/* =========================
   AJUSTES TEMA CLARO
   ========================= */

:root.light body {
  background: radial-gradient(circle at top left, #e5e7eb 0, var(--bg-primary) 45%);
  color: var(--text-primary);
}

/* Header e navegação mais claros */
:root.light header {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 22px rgba(15, 23, 42, 0.15);
  border-bottom-color: var(--border-color);
}

:root.light .logo {
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.35);
}

:root.light nav a {
  color: var(--text-secondary);
}

:root.light nav a:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

:root.light .btn-header {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: #ffffff;
}

/* Cards, blocos e superfícies no claro */
:root.light .card,
:root.light .solution-visual,
:root.light .timeline-content,
:root.light .testimonial,
:root.light .pricing-card,
:root.light .faq-item,
:root.light .comparison-table,
:root.light .contact-placeholder {
  background: linear-gradient(135deg, #ffffff, #e5e7eb);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  border-color: var(--border-color);
}

:root.light .section {
  border-top-color: var(--border-color);
}

:root.light .cta-final {
  background: linear-gradient(135deg, #e0f2fe, #e0e7ff);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

/* Hero visual / gráficos no claro */
:root.light .hero-visual,
:root.light .solution-visual {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(168, 85, 247, 0.08));
}

/* Títulos continuam com gradiente, mas ficam mais suaves */
:root.light .section-title,
:root.light .cta-final h2,
:root.light .hero-content h1 {
  text-shadow: none;
}

/* Inputs do formulário bonitos no tema claro */
:root.light input[type="text"],
:root.light input[type="email"],
:root.light input[type="tel"],
:root.light input[type="date"],
:root.light input[type="time"],
:root.light textarea,
:root.light select {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
}

:root.light input[type="text"]:focus,
:root.light input[type="email"]:focus,
:root.light input[type="tel"]:focus,
:root.light input[type="date"]:focus,
:root.light input[type="time"]:focus,
:root.light textarea:focus,
:root.light select:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.35);
  outline: none;
}

/* Botões mantêm o punch neon mesmo no claro */
:root.light .btn-primary {
  color: #ffffff;
}

:root.light .btn-secondary {
  background: transparent;
  color: var(--neon-blue);
  border-color: var(--neon-blue);
}

/* Footer no claro */
:root.light footer {
  background: #f3f4f6;
  box-shadow: inset 0 16px 32px rgba(15, 23, 42, 0.06);
  border-top-color: var(--border-color);
}

:root.light .footer-bottom {
  color: var(--text-tertiary);
}


.plan-card {
  padding-top: 32px; /* espaço extra superior */
  padding-bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.plan-card h3,
.plan-card h4 {
  margin-bottom: 16px;
  text-align: center;
}

.plan-card p {
  margin-bottom: 12px;
  line-height: 1.45;
  text-align: center;
}


/* ===== COMO A TRADEMIND AI ENTRA NO SEU DIA – CARDS ALINHADOS ===== */

/*.timeline {*/
/*  margin-top: 40px;*/
/*}*/

/*.timeline-items {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(2, minmax(0, 1fr));*/
/*  gap: 32px;*/
  align-items: stretch; /* todos os cards com a mesma altura */
/*}*/

/* Cada item (coluna) */
/*.timeline-item {*/
/*  position: relative;*/
/*}*/

/* Card em si */
/*.timeline-content {*/
/*  position: relative;*/
/*  padding: 32px 24px;*/
/*  border-radius: 28px;*/
/*  background: linear-gradient(*/
/*    180deg,*/
/*    rgba(255, 255, 255, 0.96),*/
/*    rgba(245, 247, 255, 0.96)*/
/*  );*/
/*  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: center;*/
/*  text-align: center;*/
  height: 100%; /* força todos a terem a mesma altura 
}

/* Se quiser, pode esconder o dot original ou usar bem discreto */
/*.timeline-dot {*/
/*  display: none;*/
/*}*/

/* Bolinha com o número em cima do card */
/*.timeline-number {*/
/*  position: absolute;*/
/*  top: -18px;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  border-radius: 999px;*/
/*  background: #00e5ff;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  font-weight: 700;*/
/*  font-size: 18px;*/
/*  color: #001a3a;*/
/*  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);*/
/*}*/

/* Título – aqui é o truque pra alinhar o começo do texto */
/*.timeline-title {*/
  margin-top: 24px;     /* espaço da bolinha */
/*  margin-bottom: 12px;*/
/*  font-size: 16px;*/
/*  font-weight: 700;*/
/*  line-height: 1.3;*/

  /* Todos os títulos com a mesma altura,
     então o parágrafo sempre começa alinhado */
/*  min-height: 46px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/-

/* Texto */
/*.timeline-text {*/
/*  font-size: 14px;*/
/*  line-height: 1.6;*/
/*  color: #334155;*/
/*}*/

/* Responsivo – no mobile fica 1 coluna */
/*@media (max-width: 768px) {*/
/*  .timeline-items {*/
/*    grid-template-columns: 1fr;*/
/*    gap: 24px;*/
/*  }*/

/*  .timeline-content {*/
/*    max-width: 340px;*/
/*    margin: 0 auto;*/
/*  }*/
/*}*/
/* Ajuste de cor para títulos no DARK MODE */
/*body.theme-dark .timeline-title {*/
/*  color: var(--text-primary) !important;*/
/*  font-weight: 700;*/
/*}*/

/* Ajuste de cor para textos no DARK MODE */
/*body.theme-dark .timeline-text {*/
/*  color: var(--text-secondary) !important;*/
/*}*/

/* Caso queira ainda mais contraste no DARK */
/*body.theme-dark .timeline-item {*/
/*  background: rgba(0,0,0,0.45) !important;*/
/*}*/

/* Mantém o LIGHT perfeito */
/*body.theme-light .timeline-title {*/
/*  color: #0E0520 !important;*/
/*}*/
/*body.theme-light .timeline-text {*/
/*  color: #444 !important;*/
/*}*/






/* DARK MODE – deixa tudo nítido e com contraste bonito */
body.theme-dark #como-funciona .timeline-item {
  background: rgba(15, 23, 42, 0.96);        /* card escuro */
  border: 1px solid rgba(148, 163, 184, 0.38);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.75);
  color: #E5E7EB;
}

body.theme-dark #como-funciona .timeline-title {
  color: #F9FAFB;                            /* quase branco */
}

body.theme-dark #como-funciona .timeline-text {
  color: #D1D5DB;                            /* cinza claro */
}

/* Deixa o número (01, 02, 03, 04) com glow bonito no dark */
body.theme-dark #como-funciona .timeline-number {
  background: #00D4FF;
  color: #00111F;
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.9);
}




/* ---------- DARK MODE ---------- */
/*body.theme-dark #como-funciona .timeline-item {*/
  background: rgba(15, 23, 42, 0.95) !important; /* card bem visível */
/*  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.65) !important;*/
/*}*/

/*body.theme-dark #como-funciona .timeline-number {*/
  color: #22d3ee !important;          /* número azul neon */
/*}*/

/*body.theme-dark #como-funciona .timeline-title {*/
  color: #ffffff !important;          /* título branco */
/*}*/

/*body.theme-dark #como-funciona .timeline-text {*/
  color: rgba(226, 232, 240, 0.9) !important;  /* texto cinza claro */
/*}*/

/* ---------- LIGHT MODE ---------- */
body.theme-light #como-funciona .timeline-item {
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 20px 40px rgba(148, 163, 184, 0.45) !important;
}

body.theme-light #como-funciona .timeline-number {
  color: #0ea5e9 !important;
}

/* ===============================
   FIX LINHA DO TEMPO (#como-funciona)
   DARK E LIGHT UNIFICADO
   =============================== */

/* Layout básico */
#como-funciona .timeline {
  margin-top: 48px;
}

#como-funciona .timeline-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 768px) {
  #como-funciona .timeline-items {
    grid-template-columns: 1fr;
  }
}

/* Card base (valendo pros dois temas) */
#como-funciona .timeline-item {
  position: relative;
  padding: 32px 32px 28px;
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.55);
  overflow: hidden;
}

/* Esconde qualquer bolinha / linha antiga */
#como-funciona .timeline-dot {
  display: none !important;
}

/* Número redondo no topo do card */
#como-funciona .timeline-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #00b5ff;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.8);
}

/* Título e texto – base */
#como-funciona .timeline-title {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

#como-funciona .timeline-text {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

/* -------- TEMA DARK -------- */
body.theme-dark #como-funciona .timeline-item {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  border-color: rgba(148, 163, 184, 0.45);
}

body.theme-dark #como-funciona .timeline-title {
  color: #f9fafb;
}

body.theme-dark #como-funciona .timeline-text {
  color: rgba(226, 232, 240, 0.92);
}

/* -------- TEMA LIGHT -------- */
body.theme-light #como-funciona .timeline-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 252, 0.97));
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.35);
  border-color: rgba(148, 163, 184, 0.18);
}



/* ===== AJUSTE DA LINHA DO TEMPO NO TEMA ESCURO ===== */

/* ===== LINHA DO TEMPO – BASE (VALE PARA OS DOIS TEMAS) ===== */

#como-funciona .timeline-title {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}

#como-funciona .timeline-text {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

/* ===== LINHA DO TEMPO – TEMA ESCURO ===== */

body.theme-dark #como-funciona .timeline-item {
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

body.theme-dark #como-funciona .timeline-title,
body.theme-dark #como-funciona .timeline-content h3 {
  color: #f9fafb !important;        /* título bem clarinho */
  opacity: 1 !important;
}

body.theme-dark #como-funciona .timeline-text,
body.theme-dark #como-funciona .timeline-content p {
  color: rgba(248, 250, 252, 0.88) !important;  /* texto do parágrafo legível */
  opacity: 1 !important;
}

body.theme-dark #como-funciona .timeline-content {
  color: #f9fafb !important;
}

/* opcional: deixar a bolinha mais suave no dark */
body.theme-dark #como-funciona .timeline-dot {
  opacity: 0.7;
}

/* ===== LINHA DO TEMPO – TEMA CLARO ===== */

body.theme-light #como-funciona .timeline-item {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 40px rgba(148, 163, 184, 0.18);
}

body.theme-light #como-funciona .timeline-title,
body.theme-light #como-funciona .timeline-content h3 {
  color: #0f172a !important;        /* título escuro no card claro */
  opacity: 1 !important;
}

body.theme-light #como-funciona .timeline-text,
body.theme-light #como-funciona .timeline-content p {
  color: #334155 !important;        /* cinza legível */
  opacity: 1 !important;
}

body.theme-light #como-funciona .timeline-content {
  color: #111827 !important;
}
/* === FIX: timeline - dark mode (legibilidade) === */
body.theme-dark #como-funciona .timeline-item {
  /* card externamente escuro, mas mais suave */
  background: linear-gradient(180deg, rgba(18,22,34,0.95), rgba(10,12,20,0.95));
  box-shadow: 0 18px 40px rgba(0,0,0,0.6); /* sombra pronunciada mas não cobre texto */
  border-color: rgba(148,163,184,0.08);
}

/* Garanta que o conteúdo interno esteja claro e sem transparência que apague o texto */
body.theme-dark #como-funciona .timeline-content {
  background: rgba(255,255,255,0.03); /* leve “vidro” claro — mantém o card escuro, texto legível */
  color: rgba(255,255,255,0.92) !important; /* texto quase branco */
  opacity: 1 !important; /* evita herança de opacidades */
  z-index: 3; /* fica acima de pseudoelementos */
  box-shadow: inset 0 10px 30px rgba(0,0,0,0.45); /* relevo interno sutil */
}

/* títulos e parágrafos — contraste forte */
body.theme-dark #como-funciona .timeline-content h3,
body.theme-dark #como-funciona .timeline-title,
body.theme-dark #como-funciona .timeline-content p {
  color: rgba(255,255,255,0.95) !important;
  opacity: 1 !important;
}

/* cancelar pseudo-elementos que criem um overlay escuro por cima do conteúdo */
body.theme-dark #como-funciona .timeline-item::before,
body.theme-dark #como-funciona .timeline-item::after,
body.theme-dark #como-funciona .timeline-content::before,
body.theme-dark #como-funciona .timeline-content::after {
  display: none !important;
  content: none !important;
}


