/* ═══════════════════════════════════════════════════════════
   DESTRAVA PROCESSO | destravaprocesso.com.br
   Brand: Emerald / Forest / Copper / Sand / Sage
   Typography: DM Sans (Google Fonts)
   ═══════════════════════════════════════════════════════════ */

:root {
  --emerald: #0A7B5A;
  --emerald-hover: #08694C;
  --forest: #1A3A32;
  --copper: #B87333;
  --copper-light: #D4945A;
  --sand: #F5F0E8;
  --sand-dark: #EDE6DA;
  --sage: #7BAF96;
  --sage-light: #A3C9B4;
  --sage-text: #3F6B55;
  --copper-text: #96591F;
  --white-warm: #FDFBF8;

  --font: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--forest);
  background: var(--sand);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Selection ── */
::selection { background: var(--emerald); color: var(--sand); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--emerald); }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font); font-weight: 300; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 400; letter-spacing: -0.01em; }
p { max-width: 640px; }
a { color: var(--emerald); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--emerald-hover); }

.label {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper-text);
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 60px); }
.section { padding: clamp(60px, 10vw, 120px) 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--emerald);
  color: var(--sand);
}
.btn-primary:hover {
  background: var(--emerald-hover);
  color: var(--sand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 123, 90, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--emerald);
  box-shadow: inset 0 0 0 1.5px var(--emerald);
}
.btn-outline:hover {
  background: var(--emerald);
  color: var(--sand);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--emerald);
  color: #fff;
}
.btn-whatsapp:hover {
  background: var(--emerald-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 123, 90, 0.3);
}
.btn-copper {
  background: var(--copper);
  color: var(--sand);
}
.btn-copper:hover {
  background: var(--copper-light);
  color: var(--sand);
  transform: translateY(-2px);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(26, 58, 50, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--forest);
}
.nav-logo svg { width: 32px; height: auto; }
.nav-logo span {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--emerald);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--emerald); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--emerald) !important;
  color: var(--sand) !important;
  padding: 10px 24px !important;
  border-radius: 10px !important;
  font-size: 0.85rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--emerald-hover) !important; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--forest);
  transition: all 0.3s;
  border-radius: 1px;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sand);
  z-index: 99;
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 24px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-label {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease-out) 0.3s forwards;
}
.hero h1 {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--emerald);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--sage-text);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

/* Hero decorative mark */
.hero-mark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
}
.hero-mark svg { width: clamp(300px, 40vw, 550px); height: auto; }
.hero-mark svg rect {
  transform: translateX(-100px);
  animation: slideBand 1s var(--ease-out) forwards;
}
.hero-mark svg rect:nth-child(1) { animation-delay: 0.6s; }
.hero-mark svg rect:nth-child(2) { animation-delay: 0.7s; }
.hero-mark svg rect:nth-child(3) { animation-delay: 0.8s; }
.hero-mark svg rect:nth-child(4) { animation-delay: 0.9s; }
.hero-mark svg rect:nth-child(5) { animation-delay: 1.0s; }

/* Copper accent line */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper) 0%, transparent 70%);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideBand {
  to { transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.trust-bar {
  padding: 32px 0;
  background: var(--white-warm);
  border-bottom: 1px solid rgba(26, 58, 50, 0.05);
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--sage-text);
}
.trust-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(10, 123, 90, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 11px; height: 11px; }

/* ═══════════════════════════════════════════════════════════
   COMO FUNCIONA
   ═══════════════════════════════════════════════════════════ */
.como-funciona { background: var(--sand); }
.como-funciona-header {
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 80px);
}
.como-funciona-header h2 { margin-bottom: 16px; }
.como-funciona-header p { margin: 0 auto; color: var(--sage); font-size: 1.05rem; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--sage-light), var(--copper));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.step:hover .step-number {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 123, 90, 0.2);
}
.step-number-emerald { background: var(--emerald); color: var(--sand); }
.step-number-copper { background: var(--copper); color: var(--sand); }
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { font-size: 0.9rem; color: var(--sage); margin: 0 auto; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   SERVICES / TIPOS DE CRÉDITO
   ═══════════════════════════════════════════════════════════ */
.services {
  background: var(--forest);
  color: var(--sand);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 123, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.services-header { margin-bottom: clamp(40px, 6vw, 64px); }
.services-header .label { color: var(--copper-light); }
.services-header h2 { margin-bottom: 16px; }
.services-header p { color: var(--sage); font-size: 1.05rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  background: rgba(245, 240, 232, 0.08);
  border-color: rgba(245, 240, 232, 0.15);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(10, 123, 90, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; color: var(--sage); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   ABOUT / QUEM SOMOS
   ═══════════════════════════════════════════════════════════ */
.about { background: var(--sand); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-content .label { margin-bottom: 16px; display: block; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--sage); margin-bottom: 16px; font-size: 1rem; line-height: 1.7; }
.about-content p strong { color: var(--forest); font-weight: 400; }
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-card {
  background: var(--white-warm);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(26, 58, 50, 0.06);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.about-visual-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--copper));
}
.about-stat {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.about-stat-item {
  text-align: center;
}
.about-stat-number {
  font-family: var(--font);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--emerald);
  line-height: 1.1;
}
.about-stat-label {
  font-size: 0.8rem;
  color: var(--sage);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   FALÊNCIAS
   ═══════════════════════════════════════════════════════════ */
.falencias { background: var(--white-warm); }
.falencias-header { max-width: 720px; margin-bottom: clamp(40px, 6vw, 56px); }
.falencias-header .label { display: block; margin-bottom: 16px; }
.falencias-header h2 { margin-bottom: 20px; }
.falencias-header p { color: var(--sage); font-size: 1.05rem; }
.falencias-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(48px, 7vw, 72px);
}
.falencia-stat {
  background: var(--sand);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.falencia-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--copper));
}
.falencia-stat-number {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--emerald);
  line-height: 1.1;
  margin-bottom: 8px;
}
.falencia-stat-label {
  font-size: 0.9rem;
  color: var(--forest);
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}
.falencias-note {
  font-size: 0.75rem;
  color: var(--sage);
  margin-top: -32px;
  margin-bottom: clamp(48px, 7vw, 72px);
}
.falencias-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.falencias-content p { color: var(--sage); margin-bottom: 16px; font-size: 1rem; line-height: 1.7; }
.falencias-content p strong { color: var(--forest); font-weight: 400; }
.falencias-card {
  background: var(--sand);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 44px);
  box-shadow: 0 16px 48px rgba(26, 58, 50, 0.05);
}
.falencias-card h3 { margin-bottom: 24px; }
.falencias-card ol {
  list-style: none;
  counter-reset: fal-step;
  margin-bottom: 28px;
}
.falencias-card ol li {
  counter-increment: fal-step;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--forest);
  line-height: 1.5;
}
.falencias-card ol li::before {
  content: counter(fal-step);
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--emerald);
  color: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.falencias-card ol li:last-child::before { background: var(--copper); }

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq { background: var(--white-warm); }
.faq-header { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.faq-header h2 { margin-bottom: 12px; }
.faq-header p { margin: 0 auto; color: var(--sage); }
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(26, 58, 50, 0.08);
}
.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--forest);
  text-align: left;
  gap: 24px;
  line-height: 1.4;
}
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(10, 123, 90, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--emerald);
  transform: rotate(45deg);
}
.faq-icon svg { width: 14px; height: 14px; transition: all 0.3s; }
.faq-item.open .faq-icon svg { stroke: var(--sand); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--sage);
  line-height: 1.7;
  max-width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--emerald);
  color: var(--sand);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26, 58, 50, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 16px; position: relative; }
.cta-section p {
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: rgba(245, 240, 232, 0.75);
  position: relative;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}
.cta-section .btn-whatsapp { font-size: 1rem; padding: 18px 36px; }
.cta-section .btn-outline {
  color: var(--sand);
  box-shadow: inset 0 0 0 1.5px rgba(245, 240, 232, 0.4);
}
.cta-section .btn-outline:hover {
  background: var(--sand);
  color: var(--emerald);
  box-shadow: none;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact { background: var(--sand); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.contact-info .label { display: block; margin-bottom: 16px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { color: var(--sage); margin-bottom: 32px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(10, 123, 90, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 20px; height: 20px; }
.contact-method-text h3 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 2px;
}
.contact-method-text p {
  font-size: 0.85rem;
  color: var(--sage);
  line-height: 1.4;
}

/* Contact form */
.contact-form {
  background: var(--white-warm);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 48px);
  box-shadow: 0 16px 48px rgba(26, 58, 50, 0.05);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--sage-text);
  line-height: 1.4;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(26, 58, 50, 0.1);
  border-radius: 10px;
  background: var(--sand);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--forest);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--sage); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(10, 123, 90, 0.08);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--emerald);
  margin-top: 2px;
  flex-shrink: 0;
}
.form-consent label {
  font-size: 0.8rem;
  color: var(--sage);
  line-height: 1.4;
}
.form-consent a { color: var(--emerald); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--forest);
  color: var(--sand);
  padding: clamp(48px, 6vw, 80px) 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}
.footer-brand svg { width: 120px; height: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--sage); max-width: 320px; line-height: 1.6; }
.footer-col h3 {
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--sand); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  font-size: 0.75rem;
  color: var(--sage);
  line-height: 1.5;
}
.footer-legal strong { font-weight: 400; color: rgba(245, 240, 232, 0.6); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .falencias-grid { grid-template-columns: 1fr; }
  .falencias-stats { grid-template-columns: 1fr; gap: 14px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-mark { opacity: 0.025; right: -120px; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .about-stat { flex-direction: column; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   PÁGINAS POR PRODUTO (/trabalhista, /falencia, /recuperacao-judicial)
   ═══════════════════════════════════════════════════════════ */
.nav-links a[aria-current="page"] { color: var(--emerald); }
.nav-links a[aria-current="page"]::after { width: 100%; }
.hero-product { min-height: 0; padding: 160px 0 96px; }
.hero-product .hero-content { max-width: 760px; }
.crumbs {
  display: flex; gap: 10px; align-items: center;
  font-size: 0.8rem; color: var(--sage-text); margin-bottom: 28px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease-out) 0.2s forwards;
}
.crumbs a { color: var(--sage-text); }
.crumbs a:hover { color: var(--emerald); }
.crumbs span:not(:last-child) { color: var(--sage-light); }
/* Elegibilidade */
.elig { background: var(--white-warm); }
.elig-header { max-width: 720px; margin-bottom: clamp(32px, 5vw, 48px); }
.elig-header .label { display: block; margin-bottom: 16px; }
.elig-header h2 { margin-bottom: 16px; }
.elig-header p { color: var(--sage); font-size: 1.05rem; }
.elig-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; align-items: start; }
.elig-card { border-radius: 20px; padding: clamp(28px, 4vw, 40px); }
.elig-yes { background: var(--sand); box-shadow: 0 16px 48px rgba(26, 58, 50, 0.05); }
.elig-no { background: transparent; border: 1.5px solid rgba(26, 58, 50, 0.08); }
.elig-card h3 { margin-bottom: 20px; font-size: 1.1rem; }
.elig-card ul { list-style: none; }
.elig-card li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: 0.95rem; line-height: 1.5; color: var(--forest);
  border-bottom: 1px solid rgba(26, 58, 50, 0.06);
}
.elig-card li:last-child { border-bottom: none; }
.elig-card li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; }
.elig-no li { color: var(--sage-text); }
.elig-dot {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; border-radius: 50%;
  border: 1.5px solid var(--sage-light);
}
.elig-note { margin-top: 20px; font-size: 0.85rem; color: var(--sage-text); line-height: 1.5; }
/* Outros produtos */
.other-products { background: var(--white-warm); padding-top: 0; }
.other-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.other-card {
  display: block; background: var(--sand); border-radius: 16px; padding: 28px 32px;
  color: var(--forest); transition: all 0.3s var(--ease-out);
  position: relative; overflow: hidden;
}
.other-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--emerald); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.other-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26, 58, 50, 0.08); color: var(--forest); }
.other-card:hover::before { transform: scaleX(1); }
.other-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.other-card p { font-size: 0.9rem; color: var(--sage-text); line-height: 1.5; margin-bottom: 14px; }
.other-card span { font-size: 0.85rem; color: var(--emerald); font-weight: 400; }
/* Home: cards de produto */
.products { background: var(--forest); color: var(--sand); position: relative; overflow: hidden; }
.products::before {
  content: ''; position: absolute; top: -60px; right: -100px; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(10, 123, 90, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.products-header { margin-bottom: clamp(40px, 6vw, 64px); }
.products-header .label { color: var(--copper-light); }
.products-header h2 { margin: 12px 0 16px; }
.products-header p { color: var(--sage); font-size: 1.05rem; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  display: flex; flex-direction: column;
  background: rgba(245, 240, 232, 0.04); border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 16px; padding: 32px; color: var(--sand);
  transition: all 0.3s var(--ease-out); position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--emerald); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.product-card:hover { background: rgba(245, 240, 232, 0.08); border-color: rgba(245, 240, 232, 0.15); transform: translateY(-4px); color: var(--sand); }
.product-card:hover::before { transform: scaleX(1); }
.product-card .service-icon { margin-bottom: 20px; }
.product-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.product-card p { font-size: 0.92rem; color: var(--sage); line-height: 1.6; margin-bottom: 20px; }
.product-card .product-who { font-size: 0.8rem; color: var(--sage-light); margin-bottom: 20px; }
.product-card .product-link { margin-top: auto; font-size: 0.9rem; color: var(--sage-light); font-weight: 400; }
.product-card:hover .product-link { color: var(--sand); }
.products-more { margin-top: 28px; font-size: 0.9rem; color: var(--sage); }
.products-more a { color: var(--sage-light); text-decoration: underline; }
@media (max-width: 900px) {
  .elig-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }
  .hero-product { padding: 130px 0 72px; }
}

/* ── Menu "O que compramos" (dropdown, desktop) ── */
.nav-dd { position: relative; }
.nav-dd-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font); font-size: 0.85rem; font-weight: 400;
  color: var(--forest); letter-spacing: 0.01em; transition: color 0.2s;
}
.nav-dd-btn svg { transition: transform 0.25s var(--ease-out); }
.nav-dd-btn:hover, .nav-dd-btn.is-active, .nav-dd.open .nav-dd-btn, .nav-dd:hover .nav-dd-btn { color: var(--emerald); }
.nav-dd.open .nav-dd-btn svg, .nav-dd:hover .nav-dd-btn svg { transform: rotate(180deg); }
.nav-dd-menu {
  display: none; position: absolute; top: 100%; left: -20px;
  padding-top: 16px; z-index: 110;
}
.nav-dd:hover .nav-dd-menu, .nav-dd.open .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { display: block; }
.nav-dd-menu ul {
  list-style: none; margin: 0; padding: 10px;
  background: #fff; border-radius: 14px; min-width: 340px;
  box-shadow: 0 20px 60px rgba(26, 58, 50, 0.16), 0 0 0 1px rgba(26, 58, 50, 0.06);
}
.nav-dd-menu li + li { margin-top: 2px; }
.nav-links .nav-dd-menu a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 14px; border-radius: 10px; font-size: 0.9rem;
  transition: background 0.2s;
}
.nav-links .nav-dd-menu a::after { display: none; }
.nav-links .nav-dd-menu a:hover, .nav-links .nav-dd-menu a[aria-current="page"] { background: var(--sand); color: var(--forest); }
.nav-dd-menu a strong { font-weight: 500; }
.nav-dd-menu a span { font-size: 0.78rem; color: var(--sage-text); }
.nav-links .nav-dd-menu a[aria-current="page"] strong { color: var(--emerald); }

/* 6 produtos: "Também compramos" em 3 colunas */
.other-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .other-grid { grid-template-columns: 1fr; }
}
