:root {
  /* DARK FOUNDATION */
  --ink-950: #090a08;
  --ink-900: #11110f;
  --ink-850: #191916;
  --ink-800: #23231f;

  /* LIGHT FOUNDATION */
  --paper: #fcfbf7;
  --paper-warm: #f7f5ee;
  --surface-soft: #f1efe8;
  --surface-muted: #e9e6dc;

  /* TEXT */
  --text-primary: #32322f;
  --text-secondary: #6e6d67;
  --text-muted: #a19e94;
  --text-on-dark: #f7f6f1;
  --text-on-dark-muted: rgba(247, 246, 241, 0.72);

  /* SIGNATURE ACCENT - CHAMPAGNE */
  --champagne-300: #d6ceab;
  --champagne-400: #c9bf91;
  --champagne-500: #b9ad78;
  --champagne-600: #a3955d;
  --champagne-700: #837952;
  --champagne-glow: rgba(201, 191, 145, 0.25);

  /* BORDERS */
  --border-light: rgba(61, 60, 55, 0.10);
  --border-medium: rgba(61, 60, 55, 0.16);
  --border-dark: rgba(255, 255, 255, 0.20);
  --border-champagne: rgba(201, 191, 145, 0.4);

  /* TYPOGRAPHY */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Manrope', 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Manrope', 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* SPACING TOKENS */
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 20px;
  --s6: 24px;
  --s8: 32px;
  --s10: 40px;
  --s12: 48px;
  --s16: 64px;
  --s20: 80px;
  --s24: 96px;
  --s28: 112px;
  --s32: 128px;

  /* RADIUS TOKENS */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* SHADOWS (RESTRAINED) */
  --shadow-subtle: 0 12px 32px rgba(30, 26, 18, 0.05);
  --shadow-modal: 0 24px 60px rgba(9, 10, 8, 0.35);

  /* MOTION */
  --motion-fast: 140ms;
  --motion-base: 240ms;
  --motion-slow: 420ms;
  --ease-standard: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);

  /* LAYOUT */
  --content-max: 1280px;
  --page-gutter: clamp(24px, 4.5vw, 64px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--paper);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background-color: var(--paper);
  overflow-x: hidden;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* TYPOGRAPHY HEADINGS (EXCLUSIVAMENTE PLAYFAIR DISPLAY) */
h1, h2, h3, h4, h5, h6,
.hero-title,
.hero-title-main,
.hero-title-accent,
.section-title,
.evidence-main-title,
.attorneys-title,
.attorney-single-name,
.practice-card-title,
.cta-title,
.youtube-card-title,
.modal-card h3 {
  font-family: var(--font-display);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea {
  font: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* FOCUS ACCESSIBILITY */
:focus-visible {
  outline: 2px solid var(--champagne-500);
  outline-offset: 3px;
}

/* PAGE SHELL */
.page-shell {
  width: min(100% - (var(--page-gutter) * 2), var(--content-max));
  margin-inline: auto;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  z-index: 40;
  display: flex;
  align-items: center;
  transition: height 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  position: fixed;
  height: 70px;
  background: rgba(9, 10, 8, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s8);
}

/* BRAND LOGO */
.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  text-decoration: none;
}

.brand-logo img {
  height: 96px; /* 50% MAIOR ANTES DO SCROLL (64px -> 96px) */
  width: auto;
  object-fit: contain;
  transition: height 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity var(--motion-fast) ease;
}

.site-header.is-scrolled .brand-logo img {
  height: 42px;
}

.brand-logo:hover img {
  opacity: 0.85;
}

/* NAV LINKS */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 36px);
  position: relative;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(247, 246, 241, 0.78);
  padding: 6px 0;
  position: relative;
  letter-spacing: 0.01em;
  transition: color var(--motion-fast) ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.is-active {
  color: #ffffff;
}

/* TRACINHO DESLIZANTE MAGNÉTICO (SLIDING ACTIVE INDICATOR) */
.nav-indicator {
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2.5px;
  background: var(--champagne-400);
  background: linear-gradient(90deg, #b8a670 0%, #ecdca6 50%, #b8a670 100%);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 12px rgba(201, 191, 145, 0.7);
  pointer-events: none;
  opacity: 0;
  width: 22px;
  transform: translateX(0);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), 
              width 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.25s ease;
  will-change: transform, width, opacity;
}

.nav-indicator.is-visible {
  opacity: 1;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
}

/* HEADER WHATSAPP CIRCLE BUTTON WITH BORDER */
.header-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 191, 145, 0.12);
  border: 1.5px solid var(--champagne-400);
  color: var(--champagne-400);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), inset 0 0 10px rgba(201, 191, 145, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color var(--motion-fast) ease, color var(--motion-fast) ease, transform var(--motion-fast) ease, box-shadow var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

.header-whatsapp-btn:hover {
  background: var(--champagne-400);
  color: var(--ink-950);
  border-color: var(--champagne-300);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(201, 191, 145, 0.5), 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  color: #ffffff;
  padding: 6px;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: transform var(--motion-base) ease, opacity var(--motion-base) ease;
}

/* ==========================================================================
   HERO SECTION (CANTO INFERIOR RETO)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: clamp(660px, 82vh, 860px);
  background-color: var(--ink-950);
  color: var(--text-on-dark);
  border-radius: 0; /* CANTO RETO CONFORME SOLICITADO */
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 70px;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 35%;
  display: block;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 10, 8, 0.96) 0%,
    rgba(9, 10, 8, 0.88) 38%,
    rgba(9, 10, 8, 0.45) 65%,
    rgba(9, 10, 8, 0.15) 100%
  );
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-copy {
  max-width: 620px;
  margin-left: clamp(28px, 6.5vw, 96px);
  padding-left: 0;
}

.hero-title {
  font-size: clamp(2.4rem, 4.3vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: var(--s6);
}

.hero-title-main {
  color: var(--text-on-dark);
  display: block;
}

.hero-title-accent {
  color: var(--champagne-400);
  display: block;
}

.hero-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-on-dark-muted);
  max-width: 530px;
  margin-bottom: var(--s8);
  font-weight: 400;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 26px;
  background-color: var(--champagne-400);
  color: var(--ink-950);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
  transition: background-color var(--motion-base) ease, transform var(--motion-base) var(--ease-soft), box-shadow var(--motion-base) ease;
}

.btn-hero:hover {
  background-color: var(--champagne-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 191, 145, 0.25);
}

.btn-hero:active {
  transform: translateY(0);
}

/* ==========================================================================
   EXPERIENCE SECTION (COMPROMISSO PROFISSIONAL & ÉTICO)
   ========================================================================== */
.experience-section {
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(60px, 7vw, 90px);
  background-color: var(--paper);
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

.experience-visual-box {
  position: relative;
}

.scales-image-wrap {
  width: 100%;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
  border: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scales-image {
  width: 100%;
  height: auto;
  max-height: 520px;
  display: block;
  object-fit: contain;
  transition: transform var(--motion-slow) var(--ease-soft);
}

.scales-image-wrap:hover .scales-image {
  transform: scale(1.03);
}

.experience-floating-tag {
  position: absolute;
  bottom: 20px;
  right: 24px;
  background: var(--ink-950);
  color: var(--champagne-400);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 191, 145, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.experience-copy {
  display: flex;
  flex-direction: column;
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  background: var(--paper-warm);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--champagne-600);
  width: fit-content;
  margin-bottom: var(--s3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.experience-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-top: var(--s6);
}

.experience-pillar-card {
  padding: 18px 20px;
  background: var(--paper-warm);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  transition: transform var(--motion-base) var(--ease-soft), border-color var(--motion-base) ease;
}

.experience-pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--champagne-400);
}

.experience-pillar-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.experience-pillar-title svg {
  color: var(--champagne-600);
}

.experience-pillar-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ==========================================================================
   EVIDENCE SECTION (BANNER CLARO & MONUMENTAL COM MÉTRICAS)
   ========================================================================== */
.evidence-section {
  padding: clamp(64px, 7vw, 90px) 0;
  background: var(--paper-warm);
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-inline: max(16px, 2.5vw);
  border: 1px solid var(--border-medium);
  box-shadow: 0 12px 36px rgba(9, 10, 8, 0.04);
}

.evidence-banner-single {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(32px, 4vw, 52px);
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin-inline: auto;
}

.evidence-main-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--s3);
}

.evidence-main-title .accent-text {
  color: var(--champagne-600);
}

.evidence-main-subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.65;
}

.metrics-row-single {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.5vw, 48px);
  flex-wrap: wrap;
  width: 100%;
}

.metric-circle-large {
  width: clamp(140px, 14vw, 175px);
  height: clamp(140px, 14vw, 175px);
  border-radius: 50%;
  border: 1.5px solid var(--champagne-400);
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(201, 191, 145, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s3);
  transition: transform var(--motion-base) var(--ease-soft), border-color var(--motion-base) ease, box-shadow var(--motion-base) ease;
}

.metric-circle-large:hover {
  transform: translateY(-5px);
  border-color: var(--champagne-600);
  box-shadow: 0 12px 28px rgba(201, 191, 145, 0.3);
}

.metric-circle-large .metric-number {
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-weight: 700;
  color: var(--champagne-600);
  line-height: 1.1;
}

.metric-circle-large .metric-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 6px;
  font-weight: 500;
}

/* ==========================================================================
   ATTORNEYS SECTION (O ADVOGADO — DESTAQUE INDIVIDUAL DR. MATHEUS)
   ========================================================================== */
.attorneys-section {
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: clamp(64px, 8vw, 100px);
  background-color: var(--paper);
}

.attorneys-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(36px, 4vw, 54px);
}

.attorneys-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--s3);
}

.attorneys-title span.accent-text {
  color: var(--champagne-500);
}

.attorney-single-wrap {
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(32px, 4vw, 56px);
  background: var(--paper-warm);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  align-items: center;
}

.attorney-single-media {
  height: 100%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background-color: var(--ink-950);
}

.attorney-single-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform var(--motion-slow) var(--ease-soft);
}

.attorney-single-wrap:hover .attorney-single-media img {
  transform: scale(1.03);
}

.attorney-single-content {
  padding: clamp(24px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.attorney-badge-oab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: var(--paper);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--champagne-600);
  width: fit-content;
}

.attorney-single-name {
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.attorney-single-role {
  font-size: 0.9375rem;
  color: var(--champagne-600);
  font-weight: 600;
}

.attorney-single-bio {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.attorney-single-footer {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-top: var(--s2);
}

.attorney-socials-row {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.attorney-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(9, 10, 8, 0.15);
}

.attorney-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 0.82 / 1;
  overflow: hidden;
  background-color: var(--ink-850);
}

.attorney-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-soft);
}

.attorney-card:hover .attorney-media-wrap img {
  transform: scale(1.04);
}

.attorney-info {
  padding: var(--s4) var(--s3) var(--s3);
  background: var(--ink-900);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.attorney-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.attorney-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.verified-icon {
  width: 14px;
  height: 14px;
  min-width: 14px;
  color: var(--champagne-400);
}

.attorney-role {
  font-size: 0.6875rem;
  color: var(--champagne-300);
  line-height: 1.2;
}

.attorney-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s2);
  padding-top: var(--s2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.attorney-social-link {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--motion-fast) ease, transform var(--motion-fast) ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.attorney-social-link:hover {
  color: var(--champagne-400);
  transform: translateY(-1px);
}

/* CAROUSEL CONTROLS */
.attorneys-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  margin-top: var(--s8);
}

.carousel-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--motion-fast) ease;
}

.carousel-btn:hover {
  border-color: var(--champagne-500);
  background-color: var(--champagne-400);
  color: var(--ink-950);
}

/* ==========================================================================
   TRANQUILIDADE SECTION (MAIS TRANQUILIDADE NO SEU DIA A DIA)
   ========================================================================== */
.tranquilidade-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background-color: var(--paper-warm);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.tranquilidade-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  margin-top: var(--s6);
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: 14px 20px;
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: transform var(--motion-base) var(--ease-soft), border-color var(--motion-base) ease, box-shadow var(--motion-base) ease;
}

.pillar-item:hover {
  transform: translateX(6px);
  border-color: var(--champagne-400);
  box-shadow: var(--shadow-subtle);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--champagne-400);
  color: var(--ink-950);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.tranquilidade-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(9, 10, 8, 0.08);
  aspect-ratio: 1 / 1.1;
  background-color: var(--paper);
  border: 1px solid var(--border-medium);
}

.tranquilidade-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%; /* ENQUADRAMENTO PERFEITO DO DR. MATHEUS */
}

/* ==========================================================================
   PRACTICE AREAS & INSTITUTIONAL VALUES
   ========================================================================== */
.practices-section {
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: clamp(64px, 8vw, 100px);
  background-color: var(--paper);
}

.practices-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(36px, 5vw, 64px);
  gap: var(--s6);
  flex-wrap: wrap;
}

.practices-title-wrap {
  max-width: 580px;
}

.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s5);
}

.practice-card {
  padding: clamp(20px, 2.5vw, 30px);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--paper-warm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--motion-base) var(--ease-soft), border-color var(--motion-base) ease, box-shadow var(--motion-base) ease;
}

.practice-card:hover {
  transform: translateY(-4px);
  border-color: var(--champagne-400);
  box-shadow: var(--shadow-subtle);
}

.practice-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--champagne-400);
  color: var(--ink-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s4);
  transition: background-color var(--motion-fast) ease;
}

.practice-card:hover .practice-card-icon {
  background-color: var(--champagne-500);
}

.practice-card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--s2);
  letter-spacing: -0.01em;
}

.practice-card-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==========================================================================
   YOUTUBE CHANNEL SECTION (JUSTIÇA SEM DEMORA)
   ========================================================================== */
.youtube-section {
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: clamp(64px, 8vw, 100px);
  background-color: var(--paper-warm);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.youtube-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(36px, 5vw, 60px);
  gap: var(--s6);
  flex-wrap: wrap;
}

.youtube-title-wrap {
  max-width: 620px;
}

.youtube-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  background: #ff0000;
  color: #ffffff;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--s3);
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s6);
}

.youtube-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-medium);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(9, 10, 8, 0.04);
  transition: transform var(--motion-base) var(--ease-soft), border-color var(--motion-base) ease, box-shadow var(--motion-base) ease;
  text-decoration: none;
  color: inherit;
}

.youtube-card:hover {
  transform: translateY(-5px);
  border-color: var(--champagne-500);
  box-shadow: 0 16px 36px rgba(9, 10, 8, 0.09);
}

.youtube-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--ink-950);
  overflow: hidden;
}

.youtube-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-soft);
}

.youtube-card:hover .youtube-card-thumb img {
  transform: scale(1.05);
}

.youtube-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.92);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform var(--motion-fast) ease, background-color var(--motion-fast) ease;
}

.youtube-card:hover .youtube-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: #ff0000;
}

.youtube-card-body {
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.youtube-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--champagne-600);
  font-weight: 600;
  margin-bottom: 8px;
}

.youtube-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 8px;
}

.youtube-card-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: auto;
}

/* ==========================================================================
   CTA BANNER (PROTEGER HOJE, GARANTIR O AMANHÃ - CENTRALIZADO)
   ========================================================================== */
.cta-section {
  padding: clamp(56px, 7vw, 84px) 0;
  background-color: var(--paper);
}

.cta-inner {
  background: linear-gradient(135deg, #FAF8F2 0%, #FFFFFF 100%);
  border: 1.5px solid var(--champagne-300);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 68px) clamp(24px, 4vw, 48px);
  box-shadow: 0 16px 40px rgba(201, 191, 145, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: var(--s5);
  max-width: 860px;
  margin-inline: auto;
}

.cta-copy {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: #ffffff;
  border: 1px solid var(--champagne-400);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--champagne-600);
  margin-bottom: var(--s3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink-950);
  margin-bottom: var(--s3);
}

.cta-title span {
  color: var(--champagne-600);
}

.cta-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--s4);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--ink-900);
  color: rgba(255, 255, 255, 0.75);
  padding-top: clamp(64px, 7vw, 90px);
  padding-bottom: var(--s8);
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: var(--s12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--s3);
}

.footer-brand img {
  height: 165px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  display: block;
  margin: 0;
  align-self: flex-start;
}

.footer-col-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: var(--s5);
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--motion-fast) ease;
  font-size: 0.8125rem;
}

.footer-link:hover {
  color: var(--champagne-400);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--s3);
}

.footer-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2px;
  align-self: flex-start;
}

.footer-social-handle {
  color: var(--champagne-400);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.footer-social-grid {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 191, 145, 0.28);
  color: var(--champagne-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--motion-fast) ease, background-color var(--motion-fast) ease, border-color var(--motion-fast) ease, color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.footer-social-btn:hover {
  transform: translateY(-3px) scale(1.1);
  background: var(--champagne-400);
  color: var(--ink-950);
  border-color: var(--champagne-400);
  box-shadow: 0 4px 14px rgba(201, 191, 145, 0.4);
}

.footer-bottom {
  padding-top: var(--s8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: var(--s4);
}

/* ==========================================================================
   MODAL & SEARCH OVERLAYS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(9, 10, 8, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--motion-base) ease, visibility var(--motion-base) ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  width: min(100%, 540px);
  background-color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-modal);
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform var(--motion-base) var(--ease-soft);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--motion-fast) ease, color var(--motion-fast) ease;
}

.modal-close-btn:hover {
  background: var(--ink-950);
  color: #ffffff;
}

.form-group {
  margin-bottom: var(--s5);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--s2);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  background-color: #ffffff;
  color: var(--text-primary);
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.form-textarea {
  border-radius: var(--radius-md);
  min-height: 110px;
  resize: vertical;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--champagne-500);
  box-shadow: 0 0 0 3px var(--champagne-glow);
}

/* ==========================================================================
   VIDEO MODAL (IN-SITE YOUTUBE PLAYER)
   ========================================================================== */
.youtube-card {
  cursor: pointer;
  user-select: none;
}

.video-modal-card {
  width: 100%;
  max-width: 920px;
  background: #000000;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 191, 145, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  padding: 0;
  overflow: hidden;
  position: relative;
  animation: modalScaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-modal-close:hover {
  background: #ff0000;
  color: #ffffff;
}

.video-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  background: #000000;
}

.video-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* FLOATING WHATSAPP BUTTON */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 50;
  transition: transform var(--motion-base) var(--ease-soft), box-shadow var(--motion-base) ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */

/* Laptop & Tablet Landscape (max-width: 1120px) */
@media (max-width: 1120px) {
  .attorneys-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

/* Tablet Portrait (max-width: 860px) */
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .evidence-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }

  .evidence-right {
    grid-template-columns: 1fr;
  }

  .hero-media {
    object-position: 80% center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(9, 10, 8, 0.75) 0%,
      rgba(9, 10, 8, 0.92) 60%,
      rgba(9, 10, 8, 0.98) 100%
    );
  }

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

/* Mobile Devices (max-width: 580px) */
@media (max-width: 580px) {
  .header-search-form {
    display: none;
  }

  .hero-section {
    min-height: 640px;
    padding-top: 90px;
    border-bottom-left-radius: 36px;
  }

  .metrics-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .metric-circle {
    width: 100px;
    height: 100px;
  }

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

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

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

/* ==========================================================================
   GLOBAL MOTION ORCHESTRATION (REACT BITS STAGGERED MOTION)
   ========================================================================== */

/* 1. SPLIT TEXT ANIMATION NOS TÍTULOS (FASE 1: 0ms) */
.split-text-target {
  display: block;
}

.split-word {
  display: inline-block;
  white-space: nowrap;
}

.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--char-index, 0) * 15ms);
}

.split-space {
  display: inline-block;
  width: 0.28em;
}

.is-animated .split-char,
.split-text-target.is-animated .split-char {
  opacity: 1;
  transform: translateY(0);
}

/* 2. BADGES DE SEÇÃO (FASE 1: IMEDIATO / 0ms) */
.experience-badge,
.youtube-badge,
.cta-badge,
.attorney-badge-oab {
  opacity: 0;
  transform: translateY(-12px) scale(0.96);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.05s;
}

.is-animated .experience-badge,
.is-animated .youtube-badge,
.is-animated .cta-badge,
.is-animated .attorney-badge-oab {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 3. TEXTOS, PARÁGRAFOS E SUBTÍTULOS (FASE 2: logo após os títulos - 200ms a 350ms) */
.hero-description p,
.experience-text,
.evidence-main-subtitle,
.attorney-single-role,
.attorney-single-bio p,
.practice-header-subtitle,
.cta-desc {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-animated .hero-description p:nth-child(1) { transition-delay: 0.18s; }
.is-animated .hero-description p:nth-child(2) { transition-delay: 0.26s; }
.is-animated .hero-description p:nth-child(3) { transition-delay: 0.34s; }

.is-animated .experience-text { transition-delay: 0.25s; }
.is-animated .evidence-main-subtitle { transition-delay: 0.22s; }
.is-animated .attorney-single-role { transition-delay: 0.18s; }
.is-animated .attorney-single-bio p:nth-child(1) { transition-delay: 0.25s; }
.is-animated .attorney-single-bio p:nth-child(2) { transition-delay: 0.32s; }
.is-animated .practice-header-subtitle { transition-delay: 0.22s; }
.is-animated .cta-desc { transition-delay: 0.24s; }

.is-animated .hero-description p,
.is-animated .experience-text,
.is-animated .evidence-main-subtitle,
.is-animated .attorney-single-role,
.is-animated .attorney-single-bio p,
.is-animated .practice-header-subtitle,
.is-animated .cta-desc {
  opacity: 1;
  transform: translateY(0);
}

/* 4. BOTÕES E CHAMADAS DE AÇÃO (FASE 3: 350ms a 450ms) */
.hero-copy .btn-hero,
.cta-actions .btn-hero,
.attorney-single-footer,
.youtube-header .btn-hero {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              background-color var(--motion-fast) ease,
              border-color var(--motion-fast) ease;
}

.is-animated .hero-copy .btn-hero { transition-delay: 0.42s; }
.is-animated .cta-actions .btn-hero { transition-delay: 0.38s; }
.is-animated .attorney-single-footer { transition-delay: 0.40s; }
.is-animated .youtube-header .btn-hero { transition-delay: 0.30s; }

.is-animated .hero-copy .btn-hero,
.is-animated .cta-actions .btn-hero,
.is-animated .attorney-single-footer,
.is-animated .youtube-header .btn-hero {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 5. IMAGENS E MÍDIAS PRINCIPAIS (FASE 3: 200ms a 350ms) */
.scales-image-wrap,
.experience-floating-tag,
.attorney-single-media,
.tranquilidade-image-card,
.evidence-banner-single {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-animated .scales-image-wrap { transition-delay: 0.20s; }
.is-animated .experience-floating-tag { transition-delay: 0.35s; }
.is-animated .attorney-single-media { transition-delay: 0.22s; }
.is-animated .tranquilidade-image-card { transition-delay: 0.25s; }
.is-animated .evidence-banner-single { transition-delay: 0.18s; }

.is-animated .scales-image-wrap,
.is-animated .attorney-single-media,
.is-animated .tranquilidade-image-card,
.is-animated .evidence-banner-single {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.is-animated .experience-floating-tag {
  opacity: 1;
  transform: translateY(0);
}

/* 6. CARDS, PILARES E ELEMENTOS DE GRID ESCALONADOS (STAGGERED) */
.experience-pillar-card,
.pillar-item,
.practice-card,
.youtube-card,
.evidence-card {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow var(--motion-fast) ease,
              border-color var(--motion-fast) ease;
}

/* Pilares Experiência */
.is-animated .experience-pillar-card:nth-child(1) { transition-delay: 0.28s; }
.is-animated .experience-pillar-card:nth-child(2) { transition-delay: 0.36s; }

/* Pilares Tranquilidade */
.is-animated .pillar-item:nth-child(1) { transition-delay: 0.22s; }
.is-animated .pillar-item:nth-child(2) { transition-delay: 0.30s; }
.is-animated .pillar-item:nth-child(3) { transition-delay: 0.38s; }
.is-animated .pillar-item:nth-child(4) { transition-delay: 0.46s; }

/* Cards YouTube */
.is-animated .youtube-card:nth-child(1) { transition-delay: 0.22s; }
.is-animated .youtube-card:nth-child(2) { transition-delay: 0.32s; }
.is-animated .youtube-card:nth-child(3) { transition-delay: 0.42s; }

/* Cards de Práticas / Serviços (Staggered 1 a 10) */
.is-animated .practice-card:nth-child(1)  { transition-delay: 0.12s; }
.is-animated .practice-card:nth-child(2)  { transition-delay: 0.17s; }
.is-animated .practice-card:nth-child(3)  { transition-delay: 0.22s; }
.is-animated .practice-card:nth-child(4)  { transition-delay: 0.27s; }
.is-animated .practice-card:nth-child(5)  { transition-delay: 0.32s; }
.is-animated .practice-card:nth-child(6)  { transition-delay: 0.37s; }
.is-animated .practice-card:nth-child(7)  { transition-delay: 0.42s; }
.is-animated .practice-card:nth-child(8)  { transition-delay: 0.47s; }
.is-animated .practice-card:nth-child(9)  { transition-delay: 0.52s; }
.is-animated .practice-card:nth-child(10) { transition-delay: 0.57s; }

/* Trigger All Grid Cards */
.is-animated .experience-pillar-card,
.is-animated .pillar-item,
.is-animated .practice-card,
.is-animated .youtube-card,
.is-animated .evidence-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 7. FOOTER MOTION ORCHESTRATION */
.footer-brand,
.footer-col-title,
.footer-links li,
.footer-contact-item,
.footer-bottom {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-animated .footer-brand { transition-delay: 0.10s; }
.is-animated .footer-col-title { transition-delay: 0.15s; }

.is-animated .footer-links li:nth-child(1) { transition-delay: 0.20s; }
.is-animated .footer-links li:nth-child(2) { transition-delay: 0.24s; }
.is-animated .footer-links li:nth-child(3) { transition-delay: 0.28s; }
.is-animated .footer-links li:nth-child(4) { transition-delay: 0.32s; }
.is-animated .footer-links li:nth-child(5) { transition-delay: 0.36s; }
.is-animated .footer-links li:nth-child(6) { transition-delay: 0.40s; }

.is-animated .footer-contact-item:nth-child(2) { transition-delay: 0.20s; }
.is-animated .footer-contact-item:nth-child(3) { transition-delay: 0.26s; }
.is-animated .footer-contact-item:nth-child(4) { transition-delay: 0.32s; }
.is-animated .footer-contact-item:nth-child(5) { transition-delay: 0.38s; }

.is-animated .footer-bottom { transition-delay: 0.45s; }

.is-animated .footer-brand,
.is-animated .footer-col-title,
.is-animated .footer-links li,
.is-animated .footer-contact-item,
.is-animated .footer-bottom {
  opacity: 1;
  transform: translateY(0);
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
