:root {
  --azul: #0a1628;
  --azul-medio: #0f1f38;
  --azul-deep: #060f1c;
  --azul-claro: #1b3461;
  --dourado: #b8922a;
  --dourado-claro: #d4b154;
  --dourado-brilho: #e8c969;
  --branco: #e5e9f0;
  --branco-puro: #ffffff;
  --wa: #25d366;
  --gradient-gold: linear-gradient(135deg, #b8922a, #e8c969);
  --gradient-hero: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.78) 50%,
    rgba(15, 31, 56, 0.85) 100%
  );
  --gradient-card-trab: linear-gradient(
    160deg,
    rgba(184, 146, 42, 0.1),
    rgba(10, 22, 40, 0.6)
  );
  --gradient-card-trans: linear-gradient(
    160deg,
    rgba(27, 52, 97, 0.45),
    rgba(10, 22, 40, 0.7)
  );
  --shadow-elevated: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow-gold: 0 10px 30px rgba(184, 146, 42, 0.35);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--azul);
  color: var(--branco);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

/* ===== KEYFRAMES ===== */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 4px 28px rgba(37, 211, 102, 0.7),
      0 0 0 8px rgba(37, 211, 102, 0.08);
  }
}
@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.4);
    opacity: 0;
  }
}
.fade-up {
  animation: fade-up 0.7s ease-out both;
}

/* ===== REVEAL (scroll animation) ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
}
.wa-float:hover {
  background: #1ebe5a;
  transform: scale(1.05);
  animation: none;
}
.pulse-wa {
  animation: pulse-wa 2.5s ease-in-out infinite;
}
@media (max-width: 540px) {
  .wa-text {
    display: none;
  }
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(184, 146, 42, 0.2);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-shield {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid var(--dourado);
  color: var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}
.logo:hover .logo-shield {
  transform: scale(1.06);
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--branco-puro);
}
.logo-sub {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dourado-claro);
  font-weight: 500;
}
.header-cta {
  background: var(--dourado);
  color: var(--azul);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  transition: background 0.2s;
}
.header-cta:hover {
  background: var(--dourado-brilho);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 128px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  animation: fade-in 1.2s ease-out both;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.6;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(184, 146, 42, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(27, 52, 97, 0.4) 0%,
      transparent 40%
    );
}
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 59px,
    rgba(184, 146, 42, 0.05) 60px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero-content {
    margin: 0 0 0 max(24px, calc((100vw - 1100px) / 2));
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 146, 42, 0.15);
  border: 1px solid rgba(184, 146, 42, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--dourado-claro);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  color: var(--branco-puro);
  margin: 0 0 20px;
  font-size: clamp(34px, 6.2vw, 64px);
}
.hero-title .accent {
  display: block;
  color: var(--dourado-claro);
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 18px);
  color: rgba(229, 233, 240, 0.75);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 560px;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s ease;
}
.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}
.btn-ghost {
  border: 1px solid rgba(184, 146, 42, 0.5);
  color: var(--dourado-claro);
  padding: 14px 24px;
}
.btn-ghost:hover {
  border-color: var(--dourado);
  background: rgba(184, 146, 42, 0.1);
}
.btn-gold {
  background: var(--dourado);
  color: var(--azul);
}
.btn-gold:hover {
  background: var(--dourado-brilho);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 24px;
  background: var(--azul);
  position: relative;
}
.section-medio {
  background: var(--azul-medio);
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dourado);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 42px);
  color: var(--branco-puro);
  margin: 0 0 12px;
  line-height: 1.2;
}
.section-title.left {
  text-align: left;
}
.section-sub {
  font-size: 16px;
  color: rgba(229, 233, 240, 0.6);
  max-width: 540px;
  margin: 12px auto 0;
  font-weight: 300;
}
.divider {
  width: 56px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 20px auto 0;
  border-radius: 999px;
}
.max-960 {
  max-width: 960px;
  margin: 0 auto;
}
.max-1000 {
  max-width: 1000px;
  margin: 0 auto;
}
.center {
  text-align: center;
}
.mt-40 {
  margin-top: 40px;
}

/* ===== ESCOLHA ===== */
.grid-2 {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.choice {
  position: relative;
  display: block;
  border-radius: 18px;
  padding: 40px 36px;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 42, 0.3);
  transition: all 0.3s ease;
}
.choice.trabalhista {
  background: var(--gradient-card-trab);
}
.choice.transito {
  background: var(--gradient-card-trans);
  border-color: rgba(184, 146, 42, 0.2);
}
.choice:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
  border-color: var(--dourado);
}
.choice-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  transition: opacity 0.5s;
}
.choice:hover .choice-bg {
  opacity: 0.18;
}
.choice-icon {
  position: relative;
  width: 56px;
  height: 56px;
  background: rgba(184, 146, 42, 0.15);
  border: 1px solid rgba(184, 146, 42, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado-claro);
  margin-bottom: 24px;
  transition: all 0.3s;
}
.choice:hover .choice-icon {
  transform: scale(1.1);
  background: rgba(184, 146, 42, 0.25);
}
.choice h3 {
  position: relative;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--branco-puro);
  margin: 0 0 12px;
}
.choice p {
  position: relative;
  font-size: 14px;
  color: rgba(229, 233, 240, 0.65);
  line-height: 1.7;
  margin: 0 0 28px;
  font-weight: 300;
}
.choice-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dourado-claro);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.25s;
}
.choice:hover .choice-cta {
  gap: 14px;
}

/* ===== ADVOGADO ===== */
.advogado {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .advogado {
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
  }
}
.advogado-img-wrap {
  position: relative;
}
.advogado-img {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 42, 0.3);
  background: var(--azul-claro);
  box-shadow: var(--shadow-elevated);
}
.advogado-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85), transparent);
  pointer-events: none;
}
.advogado-badge {
  position: absolute;
  bottom: -16px;
  right: -12px;
  background: var(--dourado);
  color: var(--azul);
  padding: 14px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-glow-gold);
}
@media (min-width: 768px) {
  .advogado-badge {
    right: -20px;
  }
}
.advogado-badge .big {
  font-family: var(--font-display);
  font-size: 28px;
  display: block;
  line-height: 1;
}
.advogado-badge .small {
  font-size: 11px;
  letter-spacing: 0.5px;
}
.lead {
  font-size: 16px;
  color: rgba(229, 233, 240, 0.7);
  line-height: 1.8;
  margin: 0 0 16px;
  font-weight: 300;
}
.lead strong {
  color: var(--branco-puro);
  font-weight: 600;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(229, 233, 240, 0.8);
}
.checks li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--dourado);
  flex-shrink: 0;
}

/* ===== TABS (Soluções) ===== */
.tabs {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 42, 0.2);
  margin-bottom: 36px;
}
.tab {
  flex: 1;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: rgba(229, 233, 240, 0.55);
  transition: all 0.2s;
}
.tab:hover {
  background: rgba(184, 146, 42, 0.1);
  color: var(--dourado-claro);
}
.tab.active {
  background: var(--dourado);
  color: var(--azul);
}
.grid-2-sm {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) {
  .grid-2-sm {
    grid-template-columns: 1fr 1fr;
  }
}
.sol-card {
  background: var(--azul);
  border: 1px solid rgba(184, 146, 42, 0.15);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
  animation: fade-up 0.5s ease-out both;
}
.sol-card:hover {
  border-color: rgba(184, 146, 42, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}
.sol-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 146, 42, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado-claro);
  margin-bottom: 16px;
}
.sol-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--branco-puro);
  margin: 0 0 8px;
}
.sol-card p {
  font-size: 13px;
  color: rgba(229, 233, 240, 0.55);
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

/* ===== TIMELINE / PROCESSO ===== */
.processo-section {
  overflow: hidden;
}
.processo-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background: radial-gradient(
    ellipse at top,
    rgba(184, 146, 42, 0.6),
    transparent 60%
  );
}
.processo-intro {
  text-align: center;
  color: rgba(229, 233, 240, 0.65);
  max-width: 640px;
  margin: -24px auto 56px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}
.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}
.timeline-line {
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(184, 146, 42, 0),
    rgba(184, 146, 42, 0.4),
    rgba(184, 146, 42, 0)
  );
}
@media (min-width: 768px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
}
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .timeline-list {
    gap: 64px;
  }
}
.timeline-item {
  position: relative;
}
@media (min-width: 768px) {
  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .timeline-item.right .timeline-card {
    grid-column: 2;
  }
}
.timeline-dot {
  position: absolute;
  left: 14px;
  top: 24px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--dourado);
  box-shadow:
    0 0 0 4px var(--azul),
    0 0 0 6px rgba(184, 146, 42, 0.35),
    0 0 24px rgba(184, 146, 42, 0.6);
  z-index: 2;
  transform: translateX(-50%);
}
.timeline-ring {
  position: absolute;
  left: 14px;
  top: 24px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(184, 146, 42, 0.5);
  transform: translateX(-50%);
  animation: pulse-ring 2.5s ease-out infinite;
  z-index: 1;
}
@media (min-width: 768px) {
  .timeline-dot,
  .timeline-ring {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .timeline-ring {
    animation: pulse-ring 2.5s ease-out infinite;
  }
  @keyframes pulse-ring {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.7;
    }
    100% {
      transform: translate(-50%, -50%) scale(2.4);
      opacity: 0;
    }
  }
}
.timeline-card {
  position: relative;
  margin-left: 56px;
  background: var(--azul-medio);
  border: 1px solid rgba(184, 146, 42, 0.15);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .timeline-card {
    margin-left: 0;
  }
  .timeline-item.left .timeline-card {
    margin-right: 32px;
    text-align: right;
  }
  .timeline-item.right .timeline-card {
    margin-left: 32px;
  }
}
.timeline-card:hover {
  border-color: rgba(184, 146, 42, 0.45);
  transform: translateY(-4px);
}
.timeline-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .timeline-item.left .timeline-head {
    justify-content: flex-end;
  }
}
.timeline-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.timeline-bar {
  height: 2px;
  flex: 1;
  max-width: 60px;
  background: rgba(184, 146, 42, 0.2);
  transition: background 0.3s;
}
.timeline-card:hover .timeline-bar {
  background: rgba(184, 146, 42, 0.5);
}
.timeline-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--branco-puro);
  margin: 0 0 8px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .timeline-card h3 {
    font-size: 24px;
  }
}
.timeline-card p {
  font-size: 14.5px;
  color: rgba(229, 233, 240, 0.7);
  line-height: 1.75;
  margin: 0 0 16px;
  font-weight: 300;
}
.timeline-prazo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--dourado-claro);
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.timeline-item.left .timeline-prazo {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .timeline-item.left .timeline-prazo {
    flex-direction: row;
  }
}
.timeline-prazo::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--dourado-claro);
}

/* ===== FAQ ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--azul);
  border: 1px solid rgba(184, 146, 42, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: rgba(184, 146, 42, 0.45);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  color: var(--branco-puro);
  font-size: 15px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .faq-q {
    font-size: 16px;
  }
}
.faq-plus {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(184, 146, 42, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-plus {
  background: var(--dourado);
  border-color: var(--dourado);
  color: var(--azul);
  transform: rotate(45deg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}
.faq-a-inner {
  overflow: hidden;
}
.faq-a-text {
  margin: 0 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(184, 146, 42, 0.1);
  font-size: 15px;
  color: rgba(229, 233, 240, 0.7);
  line-height: 1.75;
  font-weight: 300;
}

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  padding: 112px 24px;
  background: var(--azul);
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 146, 42, 0.1) 0%,
    transparent 65%
  );
}
.cta-box {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--branco-puro);
  margin: 32px 0 16px;
  line-height: 1.2;
}
.cta-box p {
  font-size: 17px;
  color: rgba(229, 233, 240, 0.65);
  margin: 0 0 40px;
  font-weight: 300;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--azul-deep);
  border-top: 1px solid rgba(184, 146, 42, 0.15);
  padding: 48px 24px 24px;
  }
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  gap: 200px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(184, 146, 42, 0.1);
  margin-bottom: 28px;
 }
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
.foot-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--branco-puro);
  margin-bottom: 2px;
}
.foot-role {
  display: block;
  color: var(--dourado);
  padding: 0px 5px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  margin: 0 0 0;
  letter-spacing: 0.4px;
  width: max-content;
  margin-left: -6px;
}
.foot-oab {
  font-size: 12px;
  color: var(--dourado);
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 12px;
}
.foot-desc {
  font-size: 13px;
  color: rgba(229, 233, 240, 0.45);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

.ft-info{
color: rgba(229, 233, 240, 0.55);}
.site-footer h5 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dourado);
  font-weight: 600;
  margin: 0 0 16px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer a {
  font-size: 14px;
  color: rgba(229, 233, 240, 0.55);
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--dourado-claro);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(229, 233, 240, 0.3);
  font-weight: 300;
  margin: 0;
}
.disclaimer {
  font-size: 11px;
  color: rgba(229, 233, 240, 0.55);
  text-align: center;
  margin: 16px 0 0;
  line-height: 1.5;
}
.ft-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.ft-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff12;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;
}

.ft-social a:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}
