/* ═══════════════════════════════════════════
   LAYOUT BASE
════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main>section {
  padding: clamp(120px, 15vh, 180px) 0;
  position: relative;
}

.section-break {
  height: 12vh;
  min-height: 120px;
  pointer-events: none;
}


.novus-concept,
.results-stats,
.mockup-section,
.cta-section {
  overflow: hidden;
}


.cta-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ═══════════════════════════════════════════
   EYEBROW (reusable component)
════════════════════════════════════════════ */
.eyebrow {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: #080808;
  color: #cf9f00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  border-radius: 100px;
  font-family: sans-serif;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(243, 230, 51, 0.1);
}

.eyebrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: conic-gradient(transparent, transparent, transparent, #cf9f00, transparent 20%);
  animation: rotateData 4s linear infinite !important;
  z-index: -2;
}

.eyebrow::after {
  content: '';
  position: absolute;
  inset: 1px;
  background: #080808;
  border-radius: 100px;
  z-index: -1;
}

@keyframes rotateData {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.eyebrow:hover::before {
  animation-duration: 1.5s;
  filter: brightness(1.5);
}


/* ═══════════════════════════════════════════
   NOVUS CONCEPT
════════════════════════════════════════════ */
.novus-concept {
  padding: 120px 20px;
  position: relative;
  text-align: center;
  background: #000;
}

.novus-concept::before {
  content: none;
}

@keyframes grid-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 0.4;
  }
}

.novus-concept .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.novus-concept h2 {
  font-family: sans-serif;
  font-size: clamp(2rem, 2vw, 3.5rem);
  line-height: 1.1;
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 50px;
}

.text-gradient,
.gold-text {
  background: linear-gradient(180deg, #ffffff 0%, rgb(255, 238, 3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.definition-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  margin-top: 60px;
}

.main-promise p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #cccccc;
  font-weight: 300;
}

.benefit-pills {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: float-pill 4s ease-in-out infinite;
  font-family: sans-serif;
  color: var(--text-primary);
}

.pill .pill-icon {
  width: 24px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  color: #ede24d;
}

.pill span {
  font-size: 14px;
  font-weight: 600;
  color: #eee;
}

.pill:hover {
  background: rgba(221, 237, 77, 0.05);
  border-color: #ede24d;
  transform: translateX(10px);
}

.highlight-pill {
  background: linear-gradient(90deg, rgba(226, 237, 77, 0.1) 0%, transparent 100%);
}

.pill:nth-child(1) {
  animation-duration: 5s;
}

.pill:nth-child(2) {
  animation-duration: 6s;
}

.pill:nth-child(3) {
  animation-duration: 5.5s;
}

@keyframes float-pill {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.hightlight {
  color: var(--text-primary);
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.hightlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #b88900;
  opacity: 0.3;
}

.glow-up {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 80vw, 600px);
  height: clamp(300px, 80vw, 600px);
  background: radial-gradient(circle, rgba(234, 237, 77, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
  animation: glow-fade-in 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes glow-fade-in {
  0% {
    opacity: 0;
    filter: blur(100px);
  }

  100% {
    opacity: 1;
    filter: blur(80px);
  }
}

@media (max-width: 768px) {
  .definition-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pill:hover {
    transform: none;
  }

  .hightlight::after {
    display: none;
  }
}


/* ═══════════════════════════════════════════
   SERVICES — Cards + Promise Layout
════════════════════════════════════════════ */
.services-section {
  padding: 120px 0 0;
  font-family: sans-serif;
  color: var(--text-primary);
  overflow: hidden;
}

.svc-eyebrow-row {
  margin-bottom: 60px;
}

/* ── Body: cards (left) + promise (right) ── */
.svc-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

/* ── Cards column ── */
.svc-cards-col {
  opacity: 0;
}

/* anime.js entrance */

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

/* ── Card ── */
.svc-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  opacity: 0;
  /* anime.js */
  transition: border-color 0.4s ease,
    background 0.4s ease,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(179, 137, 0, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.svc-card:hover {
  border-color: rgba(179, 137, 0, 0.3);
  background: rgba(179, 137, 0, 0.025);
  transform: translateY(-4px);
}

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

.svc-card--wide {
  grid-column: span 2;
}

/* Card top row: SVG + number */
.svc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.svc-svg-wrap {
  width: 86px;
  height: 75px;
  flex-shrink: 0;
}

.svc-svg-wrap svg {
  width: 100%;
  height: 100%;
}

.svc-num {
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(179, 137, 0, 0.45);
  letter-spacing: 0.12em;
}

/* Card middle: name + desc */
.svc-mid {
  flex: 1;
  margin-bottom: 22px;
}

.svc-name {
  font-family: sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}

.svc-desc {
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.7;
  margin: 0;
}

/* Card CTA */
.svc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  padding: 10px 16px;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  margin-top: auto;
}

.svc-btn span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.svc-btn:hover {
  border-color: rgba(179, 137, 0, 0.4);
  color: var(--gold-light);
  background: rgba(179, 137, 0, 0.07);
}

.svc-btn:hover span {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────
   SVG ANIMATIONS
   All start paused; .svc-animated activates them.
───────────────────────────────────────── */

/* ── Capital Raising: bars ── */
.svc-bar {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transform: scaleY(0);
  animation: svcBarUp 0.85s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation-play-state: paused;
}

.svc-bar--1 {
  fill: rgba(179, 137, 0, 0.38);
  animation-delay: 0.10s;
}

.svc-bar--2 {
  fill: rgba(179, 137, 0, 0.62);
  animation-delay: 0.28s;
}

.svc-bar--3 {
  fill: rgba(179, 137, 0, 0.88);
  animation-delay: 0.46s;
}

@keyframes svcBarUp {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

/* Trend line draw (dasharray = ~42) */
.svc-trendline {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: svcLineDraw 0.85s ease 0.65s both;
  animation-play-state: paused;
}

/* Arrow up fade */
.svc-arrow-up {
  opacity: 0;
  animation: svcFadeIn 0.4s ease 1.35s both;
  animation-play-state: paused;
}

/* Shared dot: capital + trading */
.svc-dot {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation:
    svcFadeIn 0.4s ease 1.25s both,
    svcDotPulse 2.5s ease-in-out 1.7s infinite;
  animation-play-state: paused;
}

@keyframes svcDotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.55;
  }
}

/* ── M&A: circles slide in ── */
.svc-circle-l,
.svc-circle-r {
  transform-box: fill-box;
  transform-origin: center;
}

.svc-circle-l {
  animation: svcSlideFromLeft 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
  animation-play-state: paused;
}

.svc-circle-r {
  animation: svcSlideFromRight 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
  animation-play-state: paused;
}

@keyframes svcSlideFromLeft {
  from {
    transform: translateX(-14px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes svcSlideFromRight {
  from {
    transform: translateX(14px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.svc-overlap {
  opacity: 0;
  animation: svcFadeIn 0.6s ease 0.9s both;
  animation-play-state: paused;
}

.svc-center-dot {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  animation: svcPopIn 0.5s cubic-bezier(0.23, 1, 0.32, 1) 1.1s both;
  animation-play-state: paused;
}

/* ── Strategic Advisory: rings + needle ── */
.svc-ring {
  opacity: 0;
  animation: svcFadeIn 0.5s ease both;
  animation-play-state: paused;
}

.svc-ring--3 {
  animation-delay: 0.1s;
}

.svc-ring--2 {
  animation-delay: 0.25s;
}

.svc-ring--1 {
  animation-delay: 0.4s;
}

.svc-needle {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  /* pivot = center of circle at bottom of the line's bbox */
  animation:
    svcNeedleIn 1.4s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both,
    svcNeedleIdle 4s ease-in-out 1.95s infinite;
  animation-play-state: paused;
}

@keyframes svcNeedleIn {
  from {
    transform: rotate(115deg);
  }

  to {
    transform: rotate(-12deg);
  }
}

@keyframes svcNeedleIdle {

  0%,
  100% {
    transform: rotate(-12deg);
  }

  50% {
    transform: rotate(12deg);
  }
}

/* ── Sales & Trading: candles ── */
.svc-candle {
  opacity: 0;
  animation: svcFadeIn 0.4s ease both;
  animation-play-state: paused;
}

/* stagger by pair (wick + body) */
.svc-svg--trading .svc-candle:nth-child(2),
.svc-svg--trading .svc-candle:nth-child(3) {
  animation-delay: 0.1s;
}

.svc-svg--trading .svc-candle:nth-child(4),
.svc-svg--trading .svc-candle:nth-child(5) {
  animation-delay: 0.3s;
}

.svc-svg--trading .svc-candle:nth-child(6),
.svc-svg--trading .svc-candle:nth-child(7) {
  animation-delay: 0.5s;
}

.svc-svg--trading .svc-candle:nth-child(8),
.svc-svg--trading .svc-candle:nth-child(9) {
  animation-delay: 0.7s;
}

/* price line draw (dasharray = ~52) */
.svc-priceline {
  stroke-dasharray: 52;
  stroke-dashoffset: 52;
  animation: svcLineDraw 0.9s ease 0.6s both;
  animation-play-state: paused;
}

/* ── Research & Analysis: edges + nodes ── */
.svc-edge {
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
  animation: svcLineDraw 0.65s ease both;
  animation-play-state: paused;
}

.svc-edge--h {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}

.svc-svg--research .svc-edge:nth-child(1) {
  animation-delay: 0.20s;
}

.svc-svg--research .svc-edge:nth-child(2) {
  animation-delay: 0.35s;
}

.svc-svg--research .svc-edge:nth-child(3) {
  animation-delay: 0.50s;
}

.svc-svg--research .svc-edge:nth-child(4) {
  animation-delay: 0.65s;
}

.svc-svg--research .svc-edge:nth-child(5) {
  animation-delay: 0.82s;
}

.svc-svg--research .svc-edge:nth-child(6) {
  animation-delay: 0.98s;
}

.svc-node {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  animation:
    svcPopIn 0.4s ease-in-out both,
    svcNodePulse 3s ease-in-out infinite;
  animation-play-state: paused;
}

.svc-svg--research .svc-node:nth-child(7) {
  animation-delay: 1.10s, 1.60s;
}

.svc-svg--research .svc-node:nth-child(8) {
  animation-delay: 1.22s, 1.85s;
}

.svc-svg--research .svc-node:nth-child(9) {
  animation-delay: 1.34s, 2.10s;
}

.svc-svg--research .svc-node:nth-child(10) {
  animation-delay: 1.46s, 2.35s;
}

@keyframes svcNodePulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.svc-center-ring {
  transform-box: fill-box;
  transform-origin: center;
  animation: svcRingPulse 3s ease-in-out 1.5s infinite;
  animation-play-state: paused;
}

@keyframes svcRingPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* ── Shared keyframes ── */
@keyframes svcLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes svcFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes svcPopIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

/* ── Master switch: .svc-animated activates all ── */
.svc-animated .svc-bar,
.svc-animated .svc-trendline,
.svc-animated .svc-arrow-up,
.svc-animated .svc-dot,
.svc-animated .svc-circle-l,
.svc-animated .svc-circle-r,
.svc-animated .svc-overlap,
.svc-animated .svc-center-dot,
.svc-animated .svc-ring,
.svc-animated .svc-needle,
.svc-animated .svc-candle,
.svc-animated .svc-priceline,
.svc-animated .svc-edge,
.svc-animated .svc-node,
.svc-animated .svc-center-ring {
  animation-play-state: running;
}

/* ── Promise column ── */
.svc-promise-col {
  position: relative;
}

.svc-promise-sticky {
  position: sticky;
  top: 140px;
}

.svc-h2 {
  font-family: sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0 0 40px;
}

/* Promise list */
.promise-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  /* anime.js entrance */
  transform: translateX(20px);
}

.promise-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.promise-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
}

.promise-text {
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.promise-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(179, 137, 0, 0.3);
  padding-bottom: 3px;
  transition: gap 0.3s ease, border-color 0.3s ease;
}

.promise-cta-link:hover {
  gap: 14px;
  border-color: var(--gold);
}

/* ── Ticker (unchanged) ── */
.services-ticker {
  margin-top: 100px;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 25px 0;
  background: rgba(179, 137, 0, 0.02);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scrollTicker 30s linear infinite;
  gap: 50px;
  will-change: transform;
}

.ticker-track span {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  font-family: sans-serif;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .svc-body {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .svc-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .svc-promise-col {
    order: -1;
  }

  .svc-cards-col {
    order: 1;
    opacity: 1;
  }

  .svc-promise-sticky {
    position: relative;
    top: 0;
  }

  /* Reveal everything immediately on mobile (no JS dependency) */
  .svc-card {
    opacity: 1;
  }

  .promise-item {
    opacity: 1;
    transform: none;
  }

  /* Run SVG animations without waiting for JS */
  .svc-bar,
  .svc-trendline,
  .svc-arrow-up,
  .svc-dot,
  .svc-circle-l,
  .svc-circle-r,
  .svc-overlap,
  .svc-center-dot,
  .svc-ring,
  .svc-needle,
  .svc-candle,
  .svc-priceline,
  .svc-edge,
  .svc-node,
  .svc-center-ring {
    animation-play-state: running;
  }
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-card--wide {
    grid-column: span 1;
  }
}

/* ═══════════════════════════════════════════
   MÉTRICAS & CREDIBILIDADE JURÍDICA
════════════════════════════════════════════ */

.results-stats {
  padding: 80px 0;
  background: #050505;
  /* Ajuste para a variável de fundo da sua landing page */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 5;
}

/* Grid de Métricas */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.stat-number {
  font-family: 'Outfit Variable', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-number .counter {
  color: var(--gold, #b38900);
  /* Usa sua variável dourada */
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  max-width: 220px;
  margin: 0 auto;
}

.stats-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 40px 0;
}

/* ─── TRUST LOGOS — Marquee Elegante ─────────────────────────── */

.trust-logos-wrapper {
  text-align: center;
  overflow: hidden;
  position: relative;
  padding: 0 0 8px;
}

.trust-logos-wrapper::before,
.trust-logos-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.trust-logos-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}
.trust-logos-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.trust-label::before,
.trust-label::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(179,137,0,0.35));
}
.trust-label::after {
  background: linear-gradient(to left, transparent, rgba(179,137,0,0.35));
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-logos 22s linear infinite;
}
.logos-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  padding: 0 48px;
  position: relative;
}

.logo-item::after {
  content: '✦';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.45rem;
  color: rgba(179, 137, 0, 0.4);
  line-height: 1;
}

/* ─── Logo Badges Tipográficos ───────────────────────────────── */

.logo-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  user-select: none;
  gap: 2px;
}

.lb-prefix,
.lb-suffix {
  font-family: 'Inter', sans-serif;
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.6;
}

.lb-main {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: 1.35rem;
  line-height: 1;
}

.logo-oab .lb-main   { color: #1a4fa0; }
.logo-oab .lb-prefix,
.logo-oab .lb-suffix { color: #1a4fa0; }

.logo-ibdp .lb-main   { color: #8899bb; font-size: 1.2rem; letter-spacing: 2px; }
.logo-ibdp .lb-suffix { color: #8899bb; }

.logo-migalhas .lb-main {
  color: #e84e0f;
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -1px;
}

.logo-jota .lb-main {
  color: #d0021b;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 4px;
}

.logo-g1 .lb-main {
  color: #ffffff;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -1px;
}
.logo-g1 .lb-accent {
  color: #e8000d;
}

.logo-item .logo-badge {
  opacity: 0.65;
  transition: opacity 0.35s ease;
}
.logo-item:hover .logo-badge {
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-item {
    padding: 0 32px;
  }
  .trust-logos-wrapper::before,
  .trust-logos-wrapper::after {
    width: 60px;
  }
}

/* Responsividade stats */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ═══════════════════════════════════════════
  UTILITIES
════════════════════════════════════════════ */

/* Skip link — acessibilidade por teclado */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

/* Visualmente oculto, acessível por leitores de tela */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible global — navegação por teclado */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Neutraliza outline nos inputs que já têm estilo próprio */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible,
.lead-form-group input:focus-visible,
.lead-select-wrapper select:focus-visible {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ═══════════════════════════════════════════
   SUCCESS STORIES
════════════════════════════════════════════ */

.cases-section {
  padding: clamp(100px, 15vh, 160px) 0;
  position: relative;
  font-family: sans-serif;
  color: var(--text-primary);
  overflow: hidden;
}

.cases-bg-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(400px, 60vw, 800px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(ellipse at center, rgba(179, 137, 0, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.cases-section .container {
  position: relative;
  z-index: 2;
}

.cases-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.cases-header h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 20px 0;
  letter-spacing: -0.02em;
}

.cases-header p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto;
}

/* Metric Banner */
.case-metrics-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 48px;
  max-width: 900px;
  margin: 0 auto 60px;
  backdrop-filter: blur(10px);
}

.case-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.c-metric-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.c-metric-value {
  font-family: 'Outfit Variable', 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.c-metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

/* Cards Grid */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

/* Linha de progresso no topo dos cards */
.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(179, 137, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.case-card:hover {
  background: rgba(179, 137, 0, 0.03);
  border-color: rgba(179, 137, 0, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

/* Card Destaque (The Result) */
.case-result {
  background: linear-gradient(180deg, rgba(179, 137, 0, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(179, 137, 0, 0.15);
}

.case-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.case-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
}

.case-icon-wrap.gold-fill {
  background: linear-gradient(135deg, #ffcc33 0%, #b38900 100%);
  border: none;
  box-shadow: 0 0 20px rgba(179, 137, 0, 0.4);
}

.case-step {
  font-family: 'Outfit Variable', 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.case-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.case-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.case-card p strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* Estado inicial para animação JS */
.case-reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* Responsividade */
@media (max-width: 1024px) {
  .case-metrics-banner {
    padding: 20px 24px;
  }
}

@media (max-width: 900px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .case-metrics-banner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .c-metric-divider {
    display: none;
  }

  .case-metric {
    width: 40%;
  }
}




/* ═══════════════════════════════════════════
   METHODOLOGY
════════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   METHODOLOGY SECTION — v2
   Substitui TODOS os blocos entre
   .methodology-section e o @media (max-width: 900px)
   correspondente no style.css (linhas 1351–1585).
   Os @keyframes success-ripple, gold-shimmer e
   icon-float-mini também podem ser removidos SE
   não forem usados em nenhuma outra seção.
════════════════════════════════════════════ */

/* ── Seção base ─────────────────────────── */
.methodology-section {
  padding: clamp(80px, 12vh, 150px) 0;
  position: relative;
  overflow: hidden;
  font-family: sans-serif;
  color: var(--text-primary);
}

/* Glow ambiental — padrão do template */
.method-bg-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at center,
      rgba(179, 137, 0, 0.07) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Header ─────────────────────────────── */
.method-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.method-header h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 16px 0 14px;
}

.method-header p {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.75;
  font-weight: 400;
}

/* ── Timeline wrapper ────────────────────── */
.method-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
}

/* Linha conectora horizontal */
.timeline-track {
  position: absolute;
  top: 36px;
  /* alinhada ao centro do ícone */
  left: calc(12.5% + 28px);
  width: calc(75% - 56px);
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
  overflow: hidden;
}

.track-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 10px rgba(179, 137, 0, 0.5);
  transition: width 2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Grid de cards ───────────────────────── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* ── Card individual ─────────────────────── */
.method-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px 20px 22px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.35s ease;
}

.method-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(ellipse at top center,
      rgba(179, 137, 0, 0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.method-card:hover {
  transform: translateY(-6px);
  border-color: rgba(179, 137, 0, 0.3);
}

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

/* Variante final — destaque permanente */
.method-card--final {
  border-color: rgba(179, 137, 0, 0.28);
  background: rgba(179, 137, 0, 0.05);
}

.method-card--final::before {
  opacity: 0.6;
}

/* Badge de fase (canto superior direito) */
.method-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(179, 137, 0, 0.28);
  background: rgba(179, 137, 0, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
}

.method-card--final .method-card-badge {
  background: rgba(179, 137, 0, 0.18);
  border-color: var(--gold);
}

/* ── Ícone circular ──────────────────────── */
.method-icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #0f0f0f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  color: var(--gold);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.method-icon-ring svg {
  width: 22px;
  height: 22px;
}

.method-card:hover .method-icon-ring {
  border-color: rgba(179, 137, 0, 0.5);
  box-shadow: 0 0 20px rgba(179, 137, 0, 0.15);
}

/* Ícone gold-fill para a fase final */
.method-icon-ring--gold {
  background: linear-gradient(135deg, #b38900 0%, #ffcc33 45%, #fff 50%, #ffcc33 55%, #b38900 100%);
  background-size: 400% 400%;
  animation: gold-shimmer 6s linear infinite;
  border: none;
  box-shadow: 0 0 20px rgba(179, 137, 0, 0.35);
}

.method-icon-ring--gold svg {
  stroke: #000;
  animation: icon-float-mini 4s ease-in-out infinite;
}

/* Ripple no ícone final */
.method-icon-ring--gold::before,
.method-icon-ring--gold::after {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(179, 137, 0, 0.35);
  pointer-events: none;
}

.method-icon-ring--gold::before {
  animation: success-ripple 3s ease-out infinite;
}

.method-icon-ring--gold::after {
  animation: success-ripple 3s ease-out infinite 1.5s;
}

/* ── Conteúdo do card ────────────────────── */
.method-card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.method-phase-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.method-card-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.method-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 14px;
}

/* ── Bullets ─────────────────────────────── */
.method-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.method-bullets li {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.method-bullets li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
  opacity: 0.7;
}

/* ── Tag de prazo ────────────────────────── */
.method-prazo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 5px 11px;
  border-radius: 20px;
  width: fit-content;
}

.method-prazo svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.method-prazo--gold {
  color: var(--gold);
  border-color: rgba(179, 137, 0, 0.35);
}

/* ── Nota de rodapé da seção ─────────────── */
.method-footnote {
  text-align: center;
  margin-top: 44px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.02em;
}

.method-footnote strong {
  color: rgba(255, 255, 255, 0.45);
}

/* ── Keyframes (mantidos — também usados em outros lugares) */
@keyframes success-ripple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes gold-shimmer {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes icon-float-mini {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* ── Responsivo ──────────────────────────── */
@media (max-width: 900px) {
  .method-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline-track {
    left: 27px;
    top: 0;
    width: 1px;
    height: 100%;
  }

  .method-card {
    display: flex;
    gap: 20px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 16px;
    background: transparent;
  }

  .method-card::before {
    display: none;
  }

  .method-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.06);
  }

  .method-icon-ring {
    flex-shrink: 0;
    margin: 0;
  }

  .method-card-body h3 {
    padding-right: 52px;
    /* espaço para o badge */
  }

  .method-card--final {
    border-color: rgba(179, 137, 0, 0.2);
    background: rgba(179, 137, 0, 0.04);
    border-radius: 0 0 18px 18px;
  }
}

@media (max-width: 600px) {
  .method-bullets {
    display: none;
  }

  /* remove para economizar espaço em telas pequenas */
  .method-desc {
    margin-bottom: 10px;
  }
}

/* ═══════════════════════════════════════════
   LENIS SMOOTH SCROLL
════════════════════════════════════════════ */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   MOCKUP PROCESSO DIGITAL (ADVOCACIA)
════════════════════════════════════════════ */

/* ── 1. Seção, Fundos e Cabeçalho (Mantidos e Otimizados) ── */
.mockup-section {
  padding: clamp(100px, 14vh, 160px) 0 0;
  position: relative;
  overflow: hidden;
  font-family: sans-serif;
}

.mockup-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(179, 137, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179, 137, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.mockup-bg-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 100vw, 900px);
  height: clamp(200px, 55vw, 500px);
  background: radial-gradient(ellipse at center, rgba(179, 137, 0, 0.07) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.mockup-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.mockup-header h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 18px 0 20px;
  color: var(--text-primary);
}

.mockup-header p {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
}

/* ── 2. Badges de Funcionalidades ── */
.mockup-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.feature-badge i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.feature-badge:hover {
  border-color: rgba(179, 137, 0, 0.3);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(179, 137, 0, 0.05);
}

.feature-badge--gold {
  background: rgba(179, 137, 0, 0.1);
  border-color: rgba(179, 137, 0, 0.35);
  color: var(--gold-light);
}

.feature-badge--gold i {
  color: var(--gold);
}

/* ── 3. Palco do Mockup (Frente limpa, sem máscara nas bordas) ── */
.mockup-stage {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 80px;
  z-index: 2;
}

/* ── 4. UI Híbrida: Portal do Cliente + WhatsApp ── */
.legal-ui-wrapper {
  display: flex;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
  z-index: 2;
  height: 540px;
  /* Estado inicial para a animação do JS */
  opacity: 0;
  transform: translateY(50px);
}

/* Sidebar - Portal de Documentos */
.legal-sidebar {
  width: 340px;
  background: rgba(0, 0, 0, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.legal-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.legal-case-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #27c840;
  background: rgba(39, 200, 64, 0.12);
  padding: 6px 12px;
  border-radius: 100px;
  width: fit-content;
  border: 1px solid rgba(39, 200, 64, 0.2);
}

.case-title {
  font-family: sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

.case-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.legal-docs h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.doc-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(179, 137, 0, 0.4);
  transform: translateX(4px);
}

.doc-item i {
  color: var(--gold);
}

/* Área Principal - Chat Estilo WhatsApp */
.legal-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(20, 20, 20, 0.4);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b38900 0%, #ffcc33 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.2rem;
}

.chat-contact h4 {
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.chat-contact span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #27c840;
}

.chat-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.chat-date {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.msg-bubble {
  display: flex;
  flex-direction: column;
  max-width: 80%;
}

.msg-lawyer {
  align-self: flex-start;
}

.msg-lawyer .msg-content {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px 16px 16px 4px;
}

.msg-client {
  align-self: flex-end;
}

.msg-client .msg-content {
  background: rgba(179, 137, 0, 0.15);
  border: 1px solid rgba(179, 137, 0, 0.3);
  border-radius: 16px 16px 4px 16px;
}

.msg-content {
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.msg-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 6px;
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.msg-attachment {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  cursor: pointer;
  border: 1px solid rgba(179, 137, 0, 0.2);
}

.chat-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
}

.chat-input-mock {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 12px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── 5. Responsividade ── */
@media (max-width: 768px) {
  .legal-ui-wrapper {
    flex-direction: column;
    height: 700px;
  }

  .legal-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
    gap: 20px;
  }

  .legal-docs {
    display: none;
    /* Simplifica a visualização mobile */
  }

  .msg-bubble {
    max-width: 90%;
  }
}

/* ═══════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-section {
  padding: clamp(100px, 14vh, 160px) 0;
  font-family: sans-serif;
  position: relative;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* Sticky left side */
.faq-aside {
  position: sticky;
  top: 120px;
}

.faq-aside h2 {
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 18px 0 20px;
  color: var(--text-primary);
}

.faq-aside p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 320px;
}

.faq-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.3s ease;
  border-bottom: 1px solid rgba(179, 137, 0, 0.3);
  padding-bottom: 4px;
}

.faq-cta-link:hover {
  gap: 12px;
  border-bottom-color: var(--gold);
}

/* List of FAQs */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* question button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
  text-align: left;
  font-family: sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #fff;
}

.faq-question[aria-expanded="true"] {
  color: #fff;
}

/* Icon + / × */
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: rgba(179, 137, 0, 0.15);
  border-color: rgba(179, 137, 0, 0.4);
}

.faq-icon-bar {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-icon-bar--h {
  width: 12px;
  height: 1.5px;
}

.faq-icon-bar--v {
  width: 1.5px;
  height: 12px;
}

.faq-question[aria-expanded="true"] .faq-icon-bar--h {
  background: var(--gold);
}

.faq-question[aria-expanded="true"] .faq-icon-bar--v {
  transform: rotate(90deg) scaleY(0);
  background: var(--gold);
  opacity: 0;
}

/* Response with animation */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s ease,
    padding 0.35s ease;
  opacity: 0;
  padding-bottom: 0;
}

.faq-answer.open {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 28px;
}

.faq-answer[hidden] {
  display: block;
  /* overwrites hidden to allow animation. */
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  font-family: 'Inter', sans-serif;
}

.faq-answer p strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-aside {
    position: relative;
    top: 0;
  }

  .faq-aside p {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════
   CTA SPLIT
════════════════════════════════════════════ */
.cta-section {
  padding: clamp(100px, 14vh, 160px) 0;
  position: relative;
  overflow: hidden;
  font-family: sans-serif;
}

.cta-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 100vw, 1000px);
  height: clamp(200px, 60vw, 600px);
  background: radial-gradient(ellipse at top center,
      rgba(179, 137, 0, 0.1) 0%,
      transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(179, 137, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179, 137, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 0%, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT */
.cta-left h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 18px 0 22px;
  color: var(--text-primary);
}

.cta-left>p {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 440px;
}

/* Trust items */
.cta-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.trust-item i {
  color: var(--gold);
  font-size: 0.78rem;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

/* Avatars */
.cta-avatars {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatars-stack {
  display: flex;
}

.avatar-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  color: #fff;
  margin-left: -10px;
  font-family: 'Inter', sans-serif;
}

.avatars-stack .avatar-bubble:first-child {
  margin-left: 0;
}

.avatars-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

.avatars-label strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

/*Form card*/
.cta-form-card {
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(179, 137, 0, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

/* Gold line at the top of the card.*/
.cta-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(179, 137, 0, 0.6) 40%,
      rgba(255, 220, 50, 0.9) 50%,
      rgba(179, 137, 0, 0.6) 60%,
      transparent);
}

.form-header {
  margin-bottom: 28px;
}

.form-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* Form */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: border-color 0.3s ease, background 0.3s ease;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(179, 137, 0, 0.5);
  background: rgba(179, 137, 0, 0.04);
  box-shadow: 0 0 0 3px rgba(179, 137, 0, 0.08);
}

.form-group textarea {
  resize: none;
  line-height: 1.6;
}

/* Custom Select */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  padding-right: 40px;
  cursor: pointer;
}

.select-wrapper select option {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.85);
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  transition: color 0.3s, transform 0.3s;
}

.select-wrapper:focus-within .select-arrow {
  color: var(--gold);
  transform: translateY(-50%) rotate(180deg);
}

/* submit button*/
.form-submit {
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, #ffcc33 0%, #b38900 100%);
  border: none;
  border-radius: 14px;
  font-family: sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(179, 137, 0, 0.3);
  margin-top: 4px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(179, 137, 0, 0.5);
}

.form-submit:active {
  transform: translateY(0);
}

.submit-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.form-submit:hover .submit-icon {
  transform: translateX(4px);
}

/* Loading state */
.form-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.form-submit.loading .submit-text::after {
  content: '...';
  animation: ellipsis 1s steps(4) infinite;
}

@keyframes ellipsis {
  0% {
    content: '';
  }

  25% {
    content: '.';
  }

  50% {
    content: '..';
  }

  75% {
    content: '...';
  }
}

/* Disclaimer */
.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  justify-content: center;
}

.form-disclaimer i {
  font-size: 0.65rem;
  color: rgba(179, 137, 0, 0.4);
  flex-shrink: 0;
}

/* Success status */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}

.form-success[hidden] {
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(39, 200, 64, 0.12);
  border: 1px solid rgba(39, 200, 64, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #27c840;
  animation: success-pop 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes success-pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  70% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-success h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.form-success p strong {
  color: var(--gold);
}

/* Responsive CTA */
@media (max-width: 960px) {
  .cta-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-left>p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .cta-trust {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-form-card {
    padding: 28px 22px;
  }
}

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  position: relative;
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: sans-serif;
  overflow: hidden;
}

/* Superior golden shine */
.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(179, 137, 0, 0.6) 30%,
      rgba(255, 220, 50, 0.9) 50%,
      rgba(179, 137, 0, 0.6) 70%,
      transparent 100%);
  box-shadow: 0 0 30px rgba(179, 137, 0, 0.3);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
}

/* brand column */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo .logo-mark {
  font-size: 1.2rem;
  background: linear-gradient(to right, #b38900 20%, #ffdb6e 40%, #ffdb6e 60%, #b38900 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 5s linear infinite;
}

.footer-logo .logo-text {
  font-family: sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.footer-logo .logo-text strong {
  font-weight: 800;
  color: #fff;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  max-width: 280px;
  margin-bottom: 30px;
  font-weight: 400;
}

/*Social media */
.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(179, 137, 0, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(179, 137, 0, 0.15);
}

/* Navigation columns */
.footer-nav-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
}

/* Contact column */
.footer-contact-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #000;
  background: linear-gradient(135deg, #ffcc33 0%, #b38900 100%);
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(179, 137, 0, 0.2);
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(179, 137, 0, 0.4);
  color: #000;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}

.footer-contact-info i {
  color: var(--gold);
  opacity: 0.7;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

/*Bottom footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  font-family: 'Inter', sans-serif;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
}

/*Responsive footer */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 30px 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 24px 32px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
  }
}