/* ============================================
   ÓRUS — Seções do site (todas após o hero)
   ============================================ */

/* Tokens compartilhados */
:root {
  --light-bg: #f4f1ec;
  --light-card: #ffffff;
  --light-border: #e7e3dc;
  --light-text: #0f0f10;
  --light-muted: #5a5a62;
}

/* ===== SECTION SCAFFOLD ===== */
.section {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section.dark {
  background: var(--bg);
  color: var(--text);
}

.section.dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.section.dark::after {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(239,68,68,0.18) 0%, transparent 60%);
  filter: blur(40px);
  animation: pulseGlow 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.section.light {
  background: var(--light-bg);
  color: var(--light-text);
}

.section.light::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(239,68,68,0.18) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
  animation: pulseGlow 10s ease-in-out infinite;
}

/* Eyebrow */
.eyebrow-2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-2::before {
  content: ""; width: 28px; height: 2px;
  background: var(--red); border-radius: 2px;
}

/* Section title */
.s-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  text-wrap: balance;
}

.s-lede {
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
}

.section.dark .s-lede { color: var(--muted); }
.section.light .s-lede { color: var(--light-muted); }

/* ============================================
   SECTION 1 — O CUSTO DE FICAR PARADO
   ============================================ */
.cost-section .top {
  max-width: 780px;
  margin-bottom: 64px;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cost-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--light-border);
  border-left: 3px solid var(--red);
  padding: 28px 26px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.cost-card.visible {
  animation: fadeUp 0.7s ease forwards;
}

.cost-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(239,68,68,0.18);
  border-left-width: 5px;
}

.cost-check {
  width: 22px; height: 22px;
  color: var(--red);
  margin-bottom: 32px;
}

.cost-text {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--light-text);
}

/* ============================================
   SECTION 2 — SISTEMA ÓRUS
   ============================================ */
.system-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.system-top .right { display: flex; justify-content: flex-end; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  background: linear-gradient(180deg, #161619 0%, #121215 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.pillar-card.visible {
  animation: fadeUp 0.8s ease forwards;
}

.pillar-card.featured {
  background: linear-gradient(180deg, #2a1212 0%, #170808 100%);
  border-color: rgba(239,68,68,0.35);
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,0.6), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239,68,68,0.5);
}

.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
  width: 36px; height: 36px;
  color: var(--red-2);
  margin-bottom: 28px;
  transition: transform 0.4s ease;
}

.pillar-card:hover .pillar-icon { transform: scale(1.15) rotate(-6deg); }

.pillar-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 24px;
}

.pillar-bullets {
  list-style: none; padding: 0; margin: 0 0 28px 0;
  display: flex; flex-direction: column; gap: 10px;
}

.pillar-bullets li {
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  color: var(--text);
}

.pillar-bullets li::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--red);
  box-shadow: 0 0 8px rgba(239,68,68,0.5);
  flex-shrink: 0;
}

.pillar-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center; gap: 8px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.pillar-link:hover { color: var(--red-2); gap: 12px; }

/* ============================================
   SECTION 3 — IA NO MARKETING
   ============================================ */
.ia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ia-left .s-title { font-size: clamp(40px, 5vw, 64px); }

.ia-right {
  display: flex; flex-direction: column; gap: 14px;
}

.ia-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  cursor: default;
  opacity: 0;
  transform: translateX(30px);
}

.ia-card.visible {
  animation: slideInRight 0.7s ease forwards;
}

.ia-card:hover {
  transform: translateX(-4px);
  box-shadow: 0 16px 36px -10px rgba(239,68,68,0.18);
}

.ia-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 8px;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.ia-card-text {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--light-text);
}

/* ============================================
   SECTION 4 — MÉTODO
   ============================================ */
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  margin-bottom: 70px;
  align-items: start;
}

.method-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  border: none; cursor: pointer;
  font-weight: 600; font-size: 14.5px;
  font-family: inherit;
  margin-top: 24px;
  box-shadow: 0 4px 20px rgba(239,68,68,0.35);
  transition: all 0.2s ease;
}
.method-cta:hover { background: #dc2626; transform: translateY(-1px); }

.steps-list {
  display: flex; flex-direction: column; gap: 14px;
}

.step-card {
  background: linear-gradient(180deg, #161619 0%, #121215 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 22px;
  position: relative;
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateX(30px);
}

.step-card.visible { animation: slideInRight 0.7s ease forwards; }

.step-card:hover {
  border-color: rgba(239,68,68,0.5);
  transform: translateX(6px);
}

.step-num {
  font-family: 'Inter', monospace;
  font-weight: 800;
  font-size: 16px;
  background: var(--red);
  color: #fff;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.step-name {
  font-size: 18px; font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Flow row */
.flow-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}

.flow-row::before {
  content: ""; position: absolute;
  top: 50%; left: 4%; right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,0.4), transparent);
  z-index: 0;
}

.flow-card {
  background: #0a0a0b;
  border: 1px solid rgba(239,68,68,0.5);
  border-radius: 10px;
  padding: 18px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  opacity: 0;
}

.flow-card.visible { animation: fadeUp 0.6s ease forwards; }

.flow-card:hover {
  border-color: var(--red);
  background: #100808;
  transform: translateY(-4px);
}

.flow-num {
  display: inline-grid; place-items: center;
  background: var(--red); color: #fff;
  width: 24px; height: 24px;
  border-radius: 5px;
  font-weight: 800; font-size: 12px;
  margin-bottom: 18px;
}

.flow-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================
   SECTION 5 — PROVA E FEEDBACKS
   ============================================ */
.proof-top { max-width: 780px; margin-bottom: 56px; }

.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}

.funnel-card,
.proof-card {
  background: linear-gradient(180deg, #161619 0%, #121215 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s ease;
}

.funnel-card:hover,
.proof-card:hover { border-color: rgba(239,68,68,0.4); }

.funnel-title {
  font-size: 19px; font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.funnel-sub {
  font-size: 13.5px;
  color: var(--muted-2);
  margin-bottom: 22px;
}

.funnel-stages {
  display: flex; flex-direction: column;
  gap: 8px;
  align-items: center;
}

.funnel-stage {
  background: #1c1c21;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 18px;
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.95);
}

.funnel-stage.visible { animation: popIn 0.5s ease forwards; }

.funnel-stage:hover {
  background: #2a1212;
  border-color: rgba(239,68,68,0.5);
}

.funnel-stage:nth-child(1) { width: 100%; }
.funnel-stage:nth-child(2) { width: 92%; }
.funnel-stage:nth-child(3) { width: 84%; }
.funnel-stage:nth-child(4) { width: 76%; }
.funnel-stage:nth-child(5) { width: 68%; }
.funnel-stage:nth-child(6) { width: 60%; }
.funnel-stage:nth-child(7) { width: 52%; }

.stage-num {
  color: var(--muted-2);
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
}

.proof-stack {
  display: flex; flex-direction: column;
  gap: 18px;
}

.proof-card-name {
  font-size: 17px; font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.proof-card-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* ============================================
   SECTION 6 — FAQ
   ============================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.faq-list {
  display: flex; flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--light-border);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.visible { animation: fadeUp 0.6s ease forwards; }

.faq-item:hover {
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.1);
}

.faq-item.open {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.faq-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--light-text);
  transition: color 0.2s ease;
}

.faq-header:hover { color: var(--red); }

.faq-icon {
  width: 26px; height: 26px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.35s ease, background 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--red); color: #fff;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body-inner {
  padding: 0 26px 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--light-muted);
}

.faq-item.open .faq-body { max-height: 320px; }

/* ============================================
   SECTION 7 — PRÓXIMO PASSO + FORMULÁRIO
   ============================================ */
.next-section {
  background: var(--bg);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.next-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(239,68,68,0.18), transparent 60%);
  pointer-events: none;
}

.next-card {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1f0e0e 0%, #14080a 100%);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 22px;
  padding: 60px;
  overflow: hidden;
  z-index: 2;
}

.next-watermark {
  position: absolute;
  bottom: -40px; right: 30px;
  font-size: 280px;
  font-weight: 900;
  color: rgba(239,68,68,0.06);
  line-height: 0.8;
  pointer-events: none;
  letter-spacing: -0.05em;
}

.next-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.next-form {
  background: rgba(10,10,11,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-label {
  font-size: 12px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  background: var(--card-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 14px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--red);
  background: #20171a;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.15);
}

.field-input::placeholder,
.field-textarea::placeholder { color: var(--muted-2); }

.field-textarea {
  resize: vertical;
  min-height: 84px;
  font-family: inherit;
}

.field-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-submit {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 15px 22px;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(239,68,68,0.3);
  transition: all 0.2s ease;
}

.form-submit:hover {
  background: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(239,68,68,0.45);
}

.form-tiny {
  font-size: 12px;
  color: var(--muted-2);
  text-align: center;
  margin-top: 2px;
}

.form-privacy {
  color: var(--muted-2);
  font-size: 11.5px;
  line-height: 1.55;
  text-align: center;
  max-width: 380px;
  margin: 8px auto 0;
}

.form-privacy a {
  color: var(--red-2);
  text-decoration: none;
}

.form-privacy a:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #08070a;
  border-top: 1px solid #1a0808;
  padding: 70px 48px 40px;
  position: relative;
}

.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand img {
  width: 150px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 22px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 380px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }

.footer-col li { margin-bottom: 12px; }

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a:hover { color: var(--red-2); padding-left: 4px; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid #1a0808;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted-2);
}

.social-row {
  display: flex; gap: 14px;
}

.social-link {
  width: 36px; height: 36px;
  background: #14080a;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--muted);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #16a34a;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(22,163,74,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, bottom 0.22s ease;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(22,163,74,0.45);
}

.whatsapp-float__bubble {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #fff;
  color: #111114;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

.whatsapp-float__bubble::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transform: translateY(-50%) rotate(-45deg);
}

.cookie-consent.is-visible + .whatsapp-float {
  bottom: 168px;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(12, 12, 14, 0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--red);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-consent[hidden] { display: none; }

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent__copy strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 6px;
}

.cookie-consent__copy p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 720px;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-consent__link,
.cookie-consent__ghost,
.cookie-consent__primary {
  min-height: 40px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
}

.cookie-consent__link {
  color: var(--red-2);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0 6px;
}

.cookie-consent__ghost,
.cookie-consent__primary {
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  padding: 0 16px;
}

.cookie-consent__ghost {
  background: transparent;
  color: var(--text);
}

.cookie-consent__primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.cookie-consent__ghost:hover {
  background: rgba(255,255,255,0.06);
}

.cookie-consent__primary:hover {
  background: #dc2626;
}

/* ============================================
   LEGAL PAGE
   ============================================ */
.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(239,68,68,0.18), transparent 62%),
    #0a0a0b;
  color: var(--text);
}

.legal-nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-nav img {
  height: 48px;
  width: auto;
  display: block;
}

.legal-nav__link {
  color: var(--text);
  border: 1px solid var(--border-2);
  border-radius: 9px;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.legal-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

.legal-kicker {
  color: var(--red-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.legal-title {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 760px;
  margin-bottom: 22px;
}

.legal-lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 760px;
}

.legal-updated {
  color: var(--muted-2);
  display: block;
  font-size: 13px;
  margin-top: 18px;
}

.legal-content {
  background: #111114;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-top: 48px;
  padding: 44px;
}

.legal-section + .legal-section {
  border-top: 1px solid var(--border);
  margin-top: 34px;
  padding-top: 34px;
}

.legal-section h2 {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.legal-section ul {
  margin: 12px 0 0 18px;
}

.legal-section a {
  color: var(--red-2);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ===== SECTION 5: POR QUE A ÓRUS — COMPARE TABLE ===== */
.compare-top {
  max-width: 680px;
  margin-bottom: 56px;
}

.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 48px;
}

.compare-col {
  padding: 44px 40px;
}

.compare-old {
  background: #16161a;
}

.compare-new {
  background: #1c1c21;
  border-left: 1px solid rgba(239,68,68,0.2);
}

.compare-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.compare-old .compare-label { color: #6b6b75; }
.compare-new .compare-label { color: #ef4444; }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.compare-old .compare-list li {
  color: #6b6b75;
  font-size: 14.5px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.compare-old .compare-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #3a3a42;
  font-size: 11px;
  top: 2px;
}

.compare-new .compare-list li {
  color: #d4d4d8;
  font-size: 14.5px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.compare-new .compare-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
  font-size: 12px;
  top: 2px;
}

/* Sectors */
.sectors-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.sector-chip {
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 13px;
  color: #6b6b75;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, color 0.2s;
}

.sector-chip:hover {
  border-color: rgba(239,68,68,0.3);
  color: #a1a1aa;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .section { padding: 80px 32px; }
  .cost-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; }
  .ia-grid, .method-grid, .proof-grid, .faq-grid, .next-grid, .system-top {
    grid-template-columns: 1fr; gap: 40px;
  }
  .flow-row { grid-template-columns: repeat(3, 1fr); }
  .flow-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .next-card { padding: 36px; }
  .next-watermark { font-size: 180px; }
  .cookie-consent { grid-template-columns: 1fr; }
  .cookie-consent__actions { justify-content: flex-start; }
  .cookie-consent.is-visible + .whatsapp-float { bottom: 240px; }
}

@media (max-width: 640px) {
  .section { padding: 60px 20px; }
  .cost-grid { grid-template-columns: 1fr; }
  .flow-row { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .next-section { padding: 60px 20px; }
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
  .cookie-consent__actions { gap: 8px; }
  .cookie-consent__link,
  .cookie-consent__ghost,
  .cookie-consent__primary { flex: 1 1 auto; justify-content: center; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; }
  .whatsapp-float__bubble { display: none; }
  .cookie-consent.is-visible + .whatsapp-float { bottom: 300px; }
  .legal-nav { padding: 20px; }
  .legal-nav img { height: 38px; }
  .legal-shell { padding: 42px 20px 72px; }
  .legal-content { padding: 28px 22px; border-radius: 12px; }
  .compare-table { grid-template-columns: 1fr; gap: 1px; }
  .compare-col { padding: 28px 22px; }
  .sectors-row { gap: 8px; }
}
}
