﻿* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: 'Segoe UI', 'Trebuchet MS', Tahoma, sans-serif;
  background:
    radial-gradient(circle at 85% -10%, rgba(39, 72, 112, 0.5), transparent 45%),
    radial-gradient(circle at 15% 10%, rgba(215, 183, 122, 0.08), transparent 35%),
    linear-gradient(180deg, #08111f 0%, #091a2e 45%, #081220 100%);
  background-attachment: scroll;
}

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

.container {
  width: min(1320px, 89%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 188, 126, 0.2);
  background: linear-gradient(180deg, rgba(9, 14, 24, 0.26), rgba(9, 14, 24, 0.1));
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  backdrop-filter: blur(12px) saturate(130%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 13, 23, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  backdrop-filter: blur(14px) saturate(145%);
  box-shadow: 0 8px 22px rgba(2, 7, 14, 0.34);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  overflow: visible;
}

.logo {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo span {
  color: #dce8fb;
  font-weight: 500;
  margin-left: 8px;
  letter-spacing: 0;
  text-transform: none;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
  overflow: visible;
}

.main-nav a:hover { color: #fff; }
.main-nav a {
  position: relative;
  transition: color .2s ease;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}

.nav-item {
  position: relative;
  overflow: visible;
}

.nav-item-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 14px;
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 360px;
  max-width: min(560px, 92vw);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #0f172a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(5px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  visibility: hidden;
  z-index: 120;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

.nav-dropdown-link {
  display: block;
  padding: 10px 12px;
  color: #e8edf7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.98rem;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}

.nav-dropdown-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

body.theme-light .nav-dropdown {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

body.theme-light .nav-dropdown-link {
  color: #1f2a3c;
}

body.theme-light .nav-dropdown-link:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #111827;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #d7b77a, transparent);
  transition: width .22s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  background: rgba(7, 13, 23, 0.36);
  cursor: pointer;
  padding: 9px 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: #edf3fe;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #43bb57;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 120;
  box-shadow: 0 8px 18px rgba(13, 24, 36, 0.28);
  border: 0;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.03);
  box-shadow: 0 10px 20px rgba(13, 24, 36, 0.32);
}

.hero {
  padding: 0;
}

.hero-banner {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: background-image .45s ease;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 8, 14, 0.85) 0%, rgba(5, 9, 16, 0.42) 45%, rgba(4, 8, 14, 0.82) 100%),
    radial-gradient(circle at 60% 40%, rgba(212, 162, 84, 0.26), transparent 45%);
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: 20px;
}

.hero-center {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.hero-banner.hero-image-from-right .hero-banner-bg.hero-enter {
  animation: heroImageInFromRight .56s cubic-bezier(.2, .72, .2, 1) both;
}

.hero-banner.hero-image-from-left .hero-banner-bg.hero-enter {
  animation: heroImageInFromLeft .56s cubic-bezier(.2, .72, .2, 1) both;
}

.hero-banner.hero-text-from-left #heroBannerTitle.hero-enter {
  animation: heroTextInFromLeft .46s cubic-bezier(.2, .72, .2, 1) .1s both;
}

.hero-banner.hero-text-from-left .hero-subtitle.hero-enter {
  animation: heroTextInFromLeft .46s cubic-bezier(.2, .72, .2, 1) .18s both;
}

.hero-banner.hero-text-from-left .hero-outline-btn.hero-enter {
  animation: heroTextInFromLeft .46s cubic-bezier(.2, .72, .2, 1) .26s both;
}

.hero-banner.hero-text-from-right #heroBannerTitle.hero-enter {
  animation: heroTextInFromRight .46s cubic-bezier(.2, .72, .2, 1) .1s both;
}

.hero-banner.hero-text-from-right .hero-subtitle.hero-enter {
  animation: heroTextInFromRight .46s cubic-bezier(.2, .72, .2, 1) .18s both;
}

.hero-banner.hero-text-from-right .hero-outline-btn.hero-enter {
  animation: heroTextInFromRight .46s cubic-bezier(.2, .72, .2, 1) .26s both;
}

@keyframes heroImageInFromRight {
  from {
    opacity: 0.68;
    transform: translate3d(18px, 0, 0) scale(1.04);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1.02);
  }
}

@keyframes heroImageInFromLeft {
  from {
    opacity: 0.68;
    transform: translate3d(-18px, 0, 0) scale(1.04);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1.02);
  }
}

@keyframes heroTextInFromLeft {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroTextInFromRight {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#heroBannerTitle {
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.hero-subtitle {
  margin: 0;
  color: #eef4ff;
  font-size: clamp(1.1rem, 2vw, 1.95rem);
}

.hero-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  min-width: 200px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid #c7a160;
  color: #f5e2bd;
  background: rgba(6, 10, 17, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.hero-outline-btn:hover {
  transform: translateY(-2px);
  background: rgba(10, 15, 24, 0.65);
}

.hero-arrow {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f4f7fc;
  font-size: 3.4rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 8px 22px rgba(1, 7, 15, 0.7);
  transform: translateY(4px);
  transition: opacity .24s ease, transform .24s ease, color .2s ease;
}

.hero-arrow:hover {
  color: #ffffff;
}

.hero-arrow-left { justify-self: start; }
.hero-arrow-right { justify-self: end; }

@media (hover: hover) and (pointer: fine) and (min-width: 781px) {
  .hero-banner:hover .hero-arrow,
  .hero-banner:focus-within .hero-arrow {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.card-surface {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(18, 36, 62, 0.94), rgba(11, 25, 46, 0.9));
  box-shadow: 0 18px 34px rgba(2, 8, 16, 0.34);
}

.hero-main,
.hero-side {
  padding: 28px;
}

.hero-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.hero-body {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  color: #1a2029;
  border-color: #8e7242;
  background: linear-gradient(90deg, #c9a465, var(--accent));
}

.btn-ghost {
  color: #edf4ff;
  border-color: var(--border);
  background: rgba(32, 54, 84, 0.52);
}

.hero-side p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-side strong { color: #fff; }

.section {
  padding: clamp(52px, 6vw, 86px) 0;
}

body.site-motion-init .site-entry-target {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity .52s cubic-bezier(.2, .72, .2, 1),
    transform .52s cubic-bezier(.2, .72, .2, 1);
  transition-delay: var(--site-enter-delay, 0ms);
  will-change: opacity, transform;
}

body.site-motion-init .site-entry-target.site-entry-from-top {
  transform: translate3d(0, -16px, 0);
}

body.site-motion-init .site-entry-target.site-entry-soft {
  transform: translate3d(0, 8px, 0) scale(1.012);
}

body.site-motion-ready .site-entry-target {
  opacity: 1;
  transform: none;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity .58s cubic-bezier(.2, .72, .2, 1),
    transform .58s cubic-bezier(.2, .72, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.reveal-left {
  transform: translate3d(-24px, 0, 0);
}

.reveal-on-scroll.reveal-right {
  transform: translate3d(24px, 0, 0);
}

.reveal-on-scroll.reveal-zoom {
  transform: translate3d(0, 20px, 0) scale(.975);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
}

.section-head {
  margin-bottom: clamp(22px, 2.6vw, 36px);
  max-width: 78ch;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  letter-spacing: -0.01em;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: clamp(.98rem, 1.05vw, 1.14rem);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.about-text {
  padding: 22px;
}

.about-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  padding: 18px;
  display: grid;
  gap: 6px;
}

.stat strong {
  color: var(--accent);
  font-size: 1.5rem;
}

.stat span {
  color: #d4e1f4;
  font-size: 0.92rem;
}

.top-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.top-number-card {
  padding: 22px;
  border-radius: 16px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(82, 118, 163, 0.38);
}

.top-number-value {
  color: var(--accent);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
}

.top-number-label {
  color: #dbe7f8;
  font-size: 1.02rem;
  line-height: 1.35;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#areas {
  position: relative;
  padding-top: 56px;
  padding-bottom: 52px;
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 66, 106, 0.34), transparent 48%),
    linear-gradient(180deg, rgba(8, 20, 37, 0.98), rgba(9, 26, 47, 0.96));
}

#areas .section-head {
  text-align: center;
  margin-bottom: 24px;
}

#areas .section-head h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

#areas .section-head p {
  max-width: 58ch;
  margin: 9px auto 0;
}

#areas .grid-cards {
  gap: 18px;
}

#areas .card {
  border-radius: 20px;
  border: 1px solid rgba(75, 112, 157, 0.46);
  background:
    linear-gradient(160deg, rgba(18, 39, 67, 0.95), rgba(11, 27, 49, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 34px rgba(2, 8, 16, 0.38);
  padding: 32px 24px 26px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

#areas .card:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 152, 204, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 44px rgba(2, 8, 16, 0.44);
}

#areas .card:nth-child(2) {
  border-color: rgba(215, 183, 122, 0.44);
  background:
    radial-gradient(circle at 88% 0%, rgba(215, 183, 122, 0.55), transparent 48%),
    linear-gradient(180deg, #05080e 0%, #081528 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 24px 46px rgba(2, 8, 16, 0.5);
}

#areas .icon-badge {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 999px;
  font-size: 1.9rem;
  font-weight: 700;
  border-color: rgba(119, 147, 184, 0.42);
  background: rgba(230, 237, 248, 0.08);
  color: #dce8fb;
}

#areas .card:nth-child(2) .icon-badge {
  border-color: rgba(215, 183, 122, 0.65);
  color: #f2d49a;
  background: rgba(215, 183, 122, 0.16);
}

#areas .card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

#areas .card p {
  font-size: 1.12rem;
  line-height: 1.7;
  color: #d0def3;
}

#areas .card:nth-child(2) p {
  color: #ecf3ff;
}

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(18, 36, 62, 0.94), rgba(11, 25, 46, 0.9));
  box-shadow: 0 12px 28px rgba(2, 8, 16, 0.3);
  padding: 18px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 183, 122, 0.42);
  box-shadow: 0 18px 34px rgba(2, 8, 16, 0.38);
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
  border: 1px solid #8e7242;
  background: rgba(211, 173, 108, 0.12);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.article-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.article-date {
  font-size: 0.9rem;
  color: #d7b77a !important;
  margin-bottom: 10px !important;
}

.article-link {
  display: inline-block;
  margin-top: 12px;
  color: #d7b77a;
  text-decoration: underline;
}

#artigos {
  padding-top: 70px;
  padding-bottom: 62px;
  position: relative;
  background:
    linear-gradient(102deg, rgba(3, 13, 25, 0.96) 0%, rgba(5, 20, 38, 0.9) 52%, rgba(4, 17, 33, 0.94) 100%),
    url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?auto=format&fit=crop&w=2200&q=80') center/cover no-repeat;
  border-top: 1px solid rgba(214, 176, 108, 0.2);
  border-bottom: 1px solid rgba(214, 176, 108, 0.18);
  overflow: hidden;
}

#artigos::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(44px, 6vw, 86px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(233, 238, 246, 0.98), rgba(228, 234, 243, 0.98));
  clip-path: polygon(0 64%, 10% 70%, 22% 76%, 35% 81%, 49% 84%, 62% 82%, 74% 77%, 85% 71%, 93% 66%, 100% 61%, 100% 100%, 0 100%);
  z-index: 1;
}

#artigos::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(74deg, rgba(215, 183, 122, 0.05) 0 1px, transparent 1px 14px);
  opacity: .1;
}

#artigos .container {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 2.2vw, 30px);
  border-radius: 22px;
  border: 1px solid rgba(81, 122, 172, 0.34);
  background:
    linear-gradient(180deg, rgba(6, 18, 34, 0.78), rgba(6, 17, 32, 0.74));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 42px rgba(2, 8, 16, 0.28);
}

#artigos .section-head {
  text-align: center;
  margin-bottom: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

#artigos .section-head h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-size: clamp(2rem, 3.25vw, 3.2rem);
}

#artigos .section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
  width: 110px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(93, 133, 182, 0.9) 30%, #f0cd8d 50%, rgba(93, 133, 182, 0.9) 70%, transparent 100%);
}

#artigos .section-head h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -17px;
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: #8f7446;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

#artigos .section-head p {
  margin-top: 24px;
  color: #c0cede;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.72;
}

#artigos .grid-cards {
  gap: 20px;
  align-items: stretch;
}

#artigos .article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid rgba(68, 116, 176, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(11, 27, 49, 0.94), rgba(8, 20, 37, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 34px rgba(2, 8, 16, 0.36);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

#artigos .article-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(229, 201, 143, 0.08), rgba(255, 255, 255, 0) 38%);
  opacity: .7;
}

#artigos .article-card:hover {
  transform: translateY(-8px);
  border-color: rgba(221, 187, 126, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 42px rgba(1, 8, 18, 0.56);
}

#artigos .article-media {
  position: relative;
  margin: 14px 14px 0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 230px;
}

#artigos .article-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 14, 26, 0.06) 0%, rgba(6, 14, 26, 0.42) 100%);
}

#artigos .article-image {
  width: 100%;
  height: 100%;
  min-height: 230px;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
}

#artigos .article-card:hover .article-image {
  transform: scale(1.08);
  filter: saturate(1.08);
}

#artigos .article-content {
  position: relative;
  z-index: 1;
  padding: 18px 18px 20px;
  display: grid;
  gap: 10px;
  flex: 1;
}

#artigos .article-card h3 {
  color: #edf4ff;
  margin: 0;
  line-height: 1.34;
  font-size: clamp(1.18rem, 1.18vw, 1.42rem);
}

#artigos .article-card p {
  color: #b9c8de;
  margin: 0;
}

#artigos .article-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.62;
}

#artigos .article-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: 100%;
  min-height: 50px;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid #d7b77a;
  background: #d7b77a;
  color: #111722;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.86rem;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease, background .22s ease;
}

#artigos .article-link:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(9, 17, 30, 0.28);
}

/* Home articles: cleaner showcase style with media popping out */
#artigos.home-articles-showcase .container {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding-top: 8px;
}

#artigos.home-articles-showcase .grid-cards {
  gap: 26px;
  align-items: stretch;
}

#artigos.home-articles-showcase .article-card {
  position: relative;
  overflow: visible;
  padding: 0;
  min-height: 400px;
  border-radius: 16px;
  border: 0;
  background: #122b4a;
  box-shadow: 0 14px 28px rgba(3, 10, 20, 0.3);
}

#artigos.home-articles-showcase .article-media {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 16px;
  min-height: 0;
  box-shadow: none;
}

#artigos.home-articles-showcase .article-image {
  min-height: 100%;
  height: 100%;
  filter: saturate(1.03);
}

#artigos.home-articles-showcase .article-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.22) 0%, rgba(8, 19, 35, 0.48) 52%, rgba(7, 16, 30, 0.9) 100%);
}

#artigos.home-articles-showcase .article-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 94px 22px 20px;
  text-align: center;
  align-content: end;
  gap: 10px;
}

#artigos.home-articles-showcase .article-date {
  justify-self: center;
  opacity: .9;
  font-size: 0.84rem;
}

#artigos.home-articles-showcase .article-card h3 {
  font-size: clamp(1.95rem, 2.1vw, 2.5rem);
  line-height: 1.14;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 8px 18px rgba(3, 10, 20, 0.38);
}

#artigos.home-articles-showcase .article-excerpt {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
  -webkit-line-clamp: 2;
  font-size: 0.98rem;
  opacity: .94;
}

#artigos.home-articles-showcase .article-link {
  width: min(100%, 210px);
  justify-self: center;
  margin-top: 2px;
}

#artigos.home-articles-showcase .article-float {
  display: none;
}

#artigos.home-articles-showcase .article-float::before {
  content: none;
}

#artigos.home-articles-showcase .article-float-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.articles-all-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.articles-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid #d7b77a;
  background: rgba(215, 183, 122, 0.12);
  color: #f3d6a4;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.articles-all-btn:hover {
  transform: translateY(-2px);
  background: rgba(215, 183, 122, 0.2);
  box-shadow: 0 12px 24px rgba(7, 14, 25, 0.28);
}

.article-detail-sidebar .articles-all-btn {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border-radius: 30px;
  padding: 0 24px;
  background: linear-gradient(140deg, #101823 0%, #0a111a 100%);
  color: #f2d7a8;
  border: 1px solid #d7b77a;
  box-shadow: 0 14px 28px rgba(6, 12, 20, 0.2);
  letter-spacing: 0.14em;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
}

.article-detail-sidebar .articles-all-btn:hover {
  background: linear-gradient(140deg, #182334 0%, #0f1723 100%);
  color: #ffe9c6;
  box-shadow: 0 16px 30px rgba(7, 14, 24, 0.28);
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.articles-page-main {
  padding-top: 86px;
}

.privacy-page-main {
  padding-top: 86px;
  background:
    radial-gradient(circle at 14% -12%, rgba(66, 104, 156, 0.24), transparent 38%),
    radial-gradient(circle at 88% 0%, rgba(214, 180, 115, 0.16), transparent 42%),
    linear-gradient(180deg, #ebeff5 0%, #e2e9f2 100%);
  color: #1f2c40;
}

.privacy-section {
  padding: 54px 0 72px;
}

.privacy-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 38px;
  border-radius: 22px;
  border: 1px solid rgba(34, 62, 96, 0.18);
  background:
    radial-gradient(circle at 100% -25%, rgba(222, 190, 129, 0.16), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow:
    0 22px 44px rgba(8, 17, 30, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.privacy-card h1 {
  margin: 0 0 22px;
  color: #1f2f45;
  font-size: clamp(2.15rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.privacy-card h1::after {
  content: "";
  display: block;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  margin-top: 13px;
  background: linear-gradient(90deg, #d7b77a 0%, rgba(215, 183, 122, 0.1) 100%);
}

.privacy-card h2 {
  margin: 30px 0 12px;
  color: #233a59;
  font-size: clamp(1.24rem, 2.1vw, 1.55rem);
  letter-spacing: -0.01em;
}

.privacy-card p {
  margin: 0;
  color: #415772;
  line-height: 1.82;
  font-size: 1.02rem;
}

.privacy-card a {
  color: #24466f;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(36, 70, 111, 0.3);
}

.privacy-card a:hover {
  color: #1b3556;
  text-decoration-color: rgba(27, 53, 86, 0.45);
}

.article-page-main {
  padding-top: 86px;
  background: linear-gradient(180deg, #f4f5f7 0%, #eceff3 100%);
  color: #142034;
}

.article-detail-section {
  padding: 46px 0 64px;
}

.article-title-block {
  text-align: center;
  margin-bottom: 26px;
}

.article-title-block h1 {
  margin: 0;
  color: #3a4657;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.article-title-block h1::after {
  content: "";
  display: block;
  width: 98px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent 0, #d7b77a 30%, #d7b77a 70%, transparent 100%);
}

.article-detail-date {
  margin: 12px 0 0;
  color: #6b7789;
}

.article-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: start;
}

.article-detail-content {
  padding: 22px;
  background: #ffffff;
  border-color: rgba(13, 24, 39, 0.1);
  box-shadow: 0 18px 36px rgba(5, 12, 22, 0.12);
}

.article-detail-image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.article-detail-body p {
  color: #33445b;
  line-height: 1.85;
  margin: 0 0 16px;
}

.article-detail-sidebar {
  position: relative;
  padding: 28px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 6%, rgba(183, 205, 236, 0.18), transparent 44%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(126, 150, 188, 0.22);
  box-shadow: 0 16px 36px rgba(17, 35, 64, 0.12);
  overflow: hidden;
}

.article-detail-sidebar h3 {
  margin: 0 0 18px;
  color: #344359;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  font-weight: 600;
}

.article-detail-sidebar ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.article-detail-sidebar li a {
  position: relative;
  display: inline-block;
  color: #2f4058;
  text-decoration: none;
  font-size: clamp(1.08rem, 1.4vw, 1.16rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 100% 1px;
  background-repeat: no-repeat;
  transition: color .2s ease, background-size .2s ease, opacity .2s ease;
}

.article-detail-sidebar li a:hover {
  color: #1f3554;
  background-size: 100% 2px;
}

body.theme-dark .article-detail-sidebar {
  background:
    radial-gradient(circle at 86% 6%, rgba(90, 123, 178, 0.28), transparent 46%),
    linear-gradient(180deg, #141d2c 0%, #101826 100%);
  border-color: rgba(148, 174, 220, 0.24);
  box-shadow: 0 18px 36px rgba(2, 8, 18, 0.38);
}

body.theme-dark .article-detail-sidebar h3 {
  color: #d9e7ff;
}

body.theme-dark .article-detail-sidebar li a {
  color: #c8d7f2;
}

body.theme-dark .article-detail-sidebar li a:hover {
  color: #f0f6ff;
}

body.theme-dark .article-detail-sidebar .articles-all-btn {
  background: linear-gradient(140deg, #1d2a41 0%, #161f30 100%);
  border-color: rgba(215, 183, 122, 0.72);
  color: #f5ddb1;
  box-shadow: 0 16px 30px rgba(2, 8, 18, 0.42);
}

body.theme-dark .article-detail-sidebar .articles-all-btn:hover {
  background: linear-gradient(140deg, #273753 0%, #1d2a40 100%);
  color: #fff0d2;
  box-shadow: 0 18px 34px rgba(3, 10, 20, 0.48);
}

.articles-archive-light #artigos {
  background: #ffffff;
  padding-top: 56px;
  padding-bottom: 66px;
}

.articles-archive-light #artigos .section-head h2 {
  color: #2d3f57;
}

.articles-archive-light #artigos .section-head p {
  color: #5f6f82;
}

.articles-archive-light #artigos::before,
.articles-archive-light #artigos::after {
  content: none;
}

.articles-archive-light #artigos .container {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.articles-archive-light #artigos .grid-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.archive-article-card {
  border: 1px solid rgba(48, 82, 126, 0.36);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 0%, rgba(215, 183, 122, 0.14), transparent 42%),
    linear-gradient(165deg, #0a1a31 0%, #0a1b35 46%, #081729 100%);
  box-shadow: 0 18px 34px rgba(8, 16, 30, 0.22);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.archive-article-link {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  color: inherit;
}

.archive-article-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #0c1828;
  border-bottom: 1px solid rgba(215, 183, 122, 0.2);
}

.archive-article-copy {
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, rgba(4, 12, 24, 0.3), rgba(6, 17, 32, 0.9));
  display: grid;
  align-content: start;
  gap: 10px;
}

.archive-article-date {
  margin: 0;
  color: #d9be89;
  font-size: .92rem;
  letter-spacing: .01em;
}

.archive-article-copy h3 {
  margin: 0;
  color: #edf4ff;
  font-size: 1.25rem;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-article-link:hover .archive-article-copy h3 {
  color: #f3d39e;
}

.archive-article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 183, 122, 0.56);
  box-shadow: 0 26px 46px rgba(6, 14, 28, 0.3);
}

.rj-page-main,
.empresa-page-main {
  padding-top: 86px;
  background: #ececec;
  color: #3c4858;
}

.rj-list-section,
.empresa-detail-section {
  padding: 44px 0 62px;
}

.rj-head,
.empresa-head {
  text-align: center;
  margin-bottom: 24px;
}

.rj-kicker {
  margin: 0;
  color: #9aa4b2;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
}

.rj-head h1,
.empresa-head h1 {
  margin: 8px 0 0;
  color: #445163;
  text-transform: uppercase;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.rj-head h1::after,
.empresa-head h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent 0, #c7a060 30%, #c7a060 70%, transparent 100%);
}

.rj-head p {
  margin: 16px auto 0;
  max-width: 70ch;
  color: #5f6c7e;
}

.rj-filters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 220px;
  gap: 14px;
  margin-bottom: 18px;
}

.rj-filters input,
.rj-filters select,
.rj-filters button {
  height: 44px;
  border: 1px solid #c9c9c9;
  border-radius: 6px;
  background: #fff;
  color: #4b586a;
  font: inherit;
  padding: 0 12px;
}

.rj-filters button {
  background: #4a4a4c;
  color: #e5c383;
  text-transform: uppercase;
  letter-spacing: .28em;
  cursor: pointer;
}

.rj-table-wrap {
  background: #f3f3f3;
}

.rj-table {
  width: 100%;
  border-collapse: collapse;
}

.rj-table th,
.rj-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #d2d2d2;
  text-align: left;
}

.rj-table tbody tr {
  transition: background-color .2s ease, box-shadow .2s ease;
}

.rj-table tbody tr:hover {
  background: #f7f8fa;
  box-shadow: inset 0 0 0 1px rgba(202, 163, 92, 0.14);
}

.rj-table th {
  color: #4a5567;
  font-size: 1.02rem;
}

.rj-company-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3f4d60;
  font-weight: 700;
}

.rj-company-link::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: #caa35c;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M3 7.5a2 2 0 0 1 2-2h4l1.4 2H19a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='m9 11 1.5 1.5L13.5 9.5'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M3 7.5a2 2 0 0 1 2-2h4l1.4 2H19a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='m9 11 1.5 1.5L13.5 9.5'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transition: transform .2s ease, filter .2s ease;
}

.rj-company-link:hover {
  color: #2f3f56;
  text-decoration: underline;
}

.rj-company-link:hover::before {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.empresa-logo-wrap {
  display: grid;
  justify-content: center;
  margin: 8px 0 20px;
}

.empresa-logo-wrap img {
  max-width: min(560px, 90vw);
  max-height: 230px;
  object-fit: contain;
}

.empresa-description {
  max-width: 900px;
  margin: 0 auto 14px;
  color: #4e5a6b;
  line-height: 1.75;
}

.empresa-meta {
  max-width: 900px;
  margin: 0 auto 24px;
  color: #4b5868;
  display: grid;
  gap: 8px;
}

.empresa-meta p {
  margin: 0;
  line-height: 1.35;
  font-size: 1.05rem;
  word-break: break-word;
}

.empresa-meta strong {
  color: #3f4d60;
  font-weight: 700;
}

.empresa-meta a,
.contact-email-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.empresa-meta a:hover,
.contact-email-link:hover {
  opacity: .85;
}

.empresa-files-board {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #d2d9e3;
  border-radius: 14px;
  overflow: hidden;
  background: #f9fbfe;
  box-shadow: 0 16px 30px rgba(15, 36, 63, 0.08);
}

.empresa-tabs {
  display: flex;
  gap: 8px;
  padding: 10px;
  background: linear-gradient(180deg, #303947 0%, #2b3340 100%);
}

.empresa-tab {
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #eaf0f8;
  padding: 8px 13px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.empresa-tab::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.empresa-tab[data-tab="documentos"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M3 7.5a2 2 0 0 1 2-2h4l1.4 2H19a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M3 7.5a2 2 0 0 1 2-2h4l1.4 2H19a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3C/svg%3E");
}

.empresa-tab[data-tab="relatorios"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M4.5 5.5h15v13h-15z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M8 15v-3M12 15V9M16 15v-5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M4.5 5.5h15v13h-15z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M8 15v-3M12 15V9M16 15v-5'/%3E%3C/svg%3E");
}

.empresa-tab:hover {
  background: rgba(212, 168, 106, 0.15);
  border-color: rgba(212, 168, 106, 0.46);
  transform: translateY(-1px);
}

.empresa-tab.is-active {
  background: linear-gradient(180deg, #d7b479 0%, #cca55f 100%);
  color: #1c222d;
  border-color: rgba(255, 229, 182, 0.66);
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(16, 25, 39, 0.22);
}

.empresa-files-list {
  padding: 10px 14px 14px;
}

.empresa-file-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 10px;
  margin-bottom: 6px;
  border-bottom: 1px solid #d8e0ea;
  color: #2f3f56;
  font-size: 1.02rem;
  font-weight: 700;
}

.empresa-file-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 8px;
  border-bottom: 1px solid #dde4ec;
  color: #495566;
  border-radius: 10px;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.empresa-file-row:hover {
  background: #f2f6fb;
  border-color: #d2dbe6;
}

.empresa-file-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #3e4f64;
  font-weight: 500;
}

.empresa-file-title::before {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background-color: #caa35c;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M6 3.5h8l4 4v13H6z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M14 3.5v4h4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M9 13h6'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M6 3.5h8l4 4v13H6z'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M14 3.5v4h4'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M9 13h6'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.empresa-file-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #355b86;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background-color .2s ease, color .2s ease;
}

.empresa-file-download::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M12 4v10'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='m8.5 10.5 3.5 3.5 3.5-3.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M4.5 18.5h15'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M12 4v10'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='m8.5 10.5 3.5 3.5 3.5-3.5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round' d='M4.5 18.5h15'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.empresa-file-row:hover .empresa-file-download {
  background: rgba(53, 91, 134, 0.09);
  color: #274a73;
}

.empresa-files-list > p {
  margin: 6px 8px 2px;
  color: #607286;
}

.testimonial .stars {
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.12em;
}

.testimonial .who {
  margin-top: 12px;
  color: #dfeafc;
  font-weight: 600;
}

.docs-board,
.contact-board {
  padding: 20px;
}

.doc-group { margin-bottom: 12px; }

.doc-group h4 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent);
}

.doc-list {
  display: grid;
  gap: 6px;
}

.doc-link {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: 0.2s;
}

.doc-link:hover {
  color: #fff;
  text-decoration-color: #fff;
}

.contact-board p {
  margin: 6px 0;
  color: var(--muted);
}

.contact-board strong { color: #fff; }

.portfolio-section {
  padding-top: 74px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #edf2f7 0%, #e8edf4 100%);
  border-top: 1px solid rgba(9, 20, 37, 0.08);
  border-bottom: 1px solid rgba(9, 20, 37, 0.08);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(28px, 3vw, 44px);
  align-items: center;
}

.portfolio-copy {
  order: 2;
  border: 0;
  border-radius: 0;
  padding: 2px 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.portfolio-kicker {
  margin: 0 0 12px;
  color: #5b708e;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.portfolio-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3.2vw, 3.5rem);
  line-height: 1.08;
  color: #07111f;
  max-width: 13ch;
  text-wrap: balance;
}

.portfolio-description {
  margin: 22px 0 0;
  color: #17273d;
  line-height: 1.74;
  font-size: 1.12rem;
  max-width: 46ch;
}

.portfolio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 12px 28px 12px 52px;
  border-radius: 999px;
  border: 1px solid #c3a066;
  background: #0a111d;
  color: #dfbf84;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}

.portfolio-btn::before {
  content: "›";
  position: absolute;
  left: 16px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #dfbf84;
  color: #0a111d;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}

.portfolio-btn:hover {
  transform: translateY(-2px);
  border-color: #ddb87a;
  box-shadow: 0 10px 20px rgba(10, 17, 29, 0.22);
}

.portfolio-media {
  order: 1;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(8, 20, 37, 0.1);
  box-shadow: 0 20px 42px rgba(10, 18, 29, 0.16);
  position: relative;
  justify-self: center;
  width: 100%;
}

.portfolio-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 33, 0) 55%, rgba(8, 18, 33, 0.12) 100%);
  pointer-events: none;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 620px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .65s ease;
}

.portfolio-media:hover img {
  transform: scale(1.03);
}

.home-lawyers-section {
  position: relative;
  padding-top: 34px;
  padding-bottom: 28px;
  background:
    radial-gradient(circle at 12% -20%, rgba(53, 98, 156, 0.1), transparent 40%),
    radial-gradient(circle at 88% 0%, rgba(208, 170, 102, 0.09), transparent 42%),
    #eff2f7;
}

.home-lawyers-head {
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.home-lawyers-head h2 {
  margin: 0;
  color: rgba(11, 25, 46, 0.9);
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  font-weight: 850;
  letter-spacing: -0.01em;
  text-wrap: balance;
  text-shadow: 0 10px 24px rgba(26, 63, 108, 0.15);
}

.home-lawyers-head h2::after {
  content: "";
  display: block;
  width: 110px;
  height: 2px;
  margin: 13px auto 0;
  background: linear-gradient(90deg, transparent 0, rgba(11, 25, 46, 0.72) 35%, #f0cd8d 50%, rgba(11, 25, 46, 0.72) 65%, transparent 100%);
}

.home-lawyers-head p {
  margin-top: 12px;
  color: rgb(0 0 0 / 90%);
  font-size: clamp(1rem, 1.06vw, 1.14rem);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 60ch;
}

.home-lawyers-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(61, 91, 132, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(242, 247, 255, 0.84) 100%);
  padding: 18px 0;
  box-shadow: 0 20px 40px rgba(19, 36, 61, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.home-lawyers-slider::before,
.home-lawyers-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 86px;
  z-index: 2;
  pointer-events: none;
}

.home-lawyers-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(242, 246, 253, 0.98) 0%, rgba(242, 246, 253, 0) 100%);
}

.home-lawyers-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(242, 246, 253, 0.98) 0%, rgba(242, 246, 253, 0) 100%);
}

.home-lawyers-slider.is-static-layout {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 12px;
}

.home-lawyers-slider.is-static-layout::before,
.home-lawyers-slider.is-static-layout::after {
  display: none;
}

.home-lawyers-arrow {
  display: none;
}

.home-lawyers-viewport {
  overflow: hidden;
}

.home-lawyers-track {
  display: inline-flex;
  gap: 16px;
  width: max-content;
  padding: 6px 18px;
  animation: homeLawyersMarquee 42s linear infinite;
  will-change: transform;
}

.home-lawyers-track.is-static {
  width: auto;
  display: flex;
  justify-content: center;
  animation: none;
  padding: 0;
}

.home-lawyers-track.is-few {
  width: 100%;
  display: flex;
  justify-content: center;
  animation: none;
  padding: 6px 10px;
}

.home-lawyers-track.is-few .lawyer-card {
  flex: 0 0 min(330px, 82vw);
}

.home-lawyers-track.is-static .lawyer-card {
  flex: 0 0 min(390px, 86vw);
  width: min(390px, 86vw);
  min-height: 520px;
}

.home-lawyers-slider:hover .home-lawyers-track {
  animation-play-state: paused;
}

.home-lawyers-track .lawyer-card {
  flex: 0 0 min(330px, 80vw);
  min-height: 520px;
  border-radius: 22px;
  border-color: rgba(153, 169, 193, 0.68);
  box-shadow: 0 24px 38px rgba(16, 30, 48, 0.16);
}

.home-lawyers-track .lawyer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 46px rgba(16, 30, 48, 0.2);
}

.lawyer-card-link {
  display: block;
  color: inherit;
}

.lawyer-card-link .lawyer-card-btn {
  pointer-events: none;
}

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

.fao-why-section {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
  background:
    linear-gradient(108deg, rgba(3, 14, 28, 0.96) 0%, rgba(4, 19, 36, 0.9) 52%, rgba(6, 21, 38, 0.94) 100%),
    url('https://images.unsplash.com/photo-1589994965851-a8f479c573a9?auto=format&fit=crop&w=2400&q=80') center/cover no-repeat;
  border-top: 1px solid rgba(226, 190, 128, 0.3);
  border-bottom: 1px solid rgba(226, 190, 128, 0.24);
  overflow: hidden;
}

.fao-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 52%, rgba(218, 184, 122, 0.16), transparent 40%),
    radial-gradient(circle at 80% 18%, rgba(130, 175, 232, 0.09), transparent 44%);
  opacity: .55;
  pointer-events: none;
}

.fao-why-section::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(225, 193, 133, 0.14), rgba(225, 193, 133, 0));
  opacity: .45;
  pointer-events: none;
}

.fao-why-section .container {
  width: min(1380px, 95%);
  position: relative;
  z-index: 1;
}

.fao-why-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.fao-why-copy {
  padding: clamp(8px, 1.8vw, 18px) clamp(8px, 1.6vw, 16px);
  color: #eef4ff;
}

.fao-why-title-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 0 0 6px;
}

.fao-why-brand {
  margin: -2px 0 0 -8px;
  flex: 0 0 auto;
}

.fao-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.fao-wordmark img {
  width: 52px;
  height: 52px;
  display: block;
  margin-top: 0.3rem;
}

.fao-why-copy h2 {
  margin: -2px 0 0;
  font-size: clamp(2.1rem, 4.2vw, 4.7rem);
  line-height: .98;
  color: #f3f7ff;
  letter-spacing: -0.02em;
  max-width: 11.6ch;
  text-wrap: balance;
  font-weight: 700;
}

.fao-why-copy h2::first-line {
  color: #ffffff;
}

.fao-why-copy h2 strong {
  color: #e4c48f;
  font-weight: 600;
}

.fao-why-copy p {
  margin: 18px 0 0;
  color: #cfdef3;
  line-height: 1.84;
  max-width: 46ch;
  font-size: clamp(.98rem, 1vw, 1.16rem);
  font-weight: 400;
}

.fao-why-cta {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px 0 54px;
  border-radius: 999px;
  border: 1px solid rgba(232, 199, 139, 0.72);
  color: #061220;
  background: linear-gradient(180deg, #e7c88f, #d3aa6e);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 14px 28px rgba(2, 8, 16, 0.38);
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
  position: relative;
}

.fao-why-cta::before {
  content: "›";
  position: absolute;
  left: 17px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #0b1628;
  color: #efce96;
  font-size: 1.38rem;
  line-height: 1;
  font-weight: 700;
}

.fao-why-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 18px 32px rgba(2, 8, 16, 0.48);
}

.fao-why-points {
  display: grid;
  gap: 0;
  border-radius: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.fao-why-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 98px;
  padding: 12px 0;
  border-top: 1px solid rgba(229, 198, 141, 0.56);
  transition: opacity .2s ease, transform .2s ease;
}

.fao-why-item:first-child {
  border-top: 1px solid rgba(229, 198, 141, 0.56);
}

.fao-why-item:last-child {
  border-bottom: 1px solid rgba(229, 198, 141, 0.56);
}

.fao-why-item:hover {
  opacity: 1;
  transform: translateX(2px);
}

.fao-why-icon {
  width: 42px;
  height: 42px;
  border-radius: 0;
  border: 0;
  color: #e3c28b;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
}

.fao-why-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 3px rgba(227, 194, 139, 0.22));
  animation: faoIconGlow 2.8s ease-in-out infinite;
}

.fao-why-icon svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: faoPathDraw 3.2s ease-in-out infinite;
}

.fao-why-item:nth-child(1) .fao-why-icon svg {
  animation: faoIconGlow 2.8s ease-in-out infinite, faoIconSweep 3.6s ease-in-out infinite;
}

.fao-why-item:nth-child(1) .fao-why-icon svg path:nth-child(2) {
  animation-delay: .14s;
}

.fao-why-item:nth-child(1) .fao-why-icon svg path:nth-child(3) {
  animation-delay: .28s;
}

.fao-why-item:nth-child(2) .fao-why-icon svg {
  animation: faoIconGlow 3s ease-in-out infinite, faoIconTilt 4.1s ease-in-out infinite;
}

.fao-why-item:nth-child(2) .fao-why-icon svg path:nth-child(2) {
  animation-delay: .16s;
}

.fao-why-item:nth-child(3) .fao-why-icon svg {
  animation: faoIconGlow 2.9s ease-in-out infinite, faoIconWrite 3.2s ease-in-out infinite;
}

.fao-why-item:nth-child(3) .fao-why-icon svg path:nth-child(2) {
  animation-delay: .2s;
}

.fao-why-item:nth-child(4) .fao-why-icon svg {
  animation: faoIconGlow 2.8s ease-in-out infinite;
}

.fao-why-item:nth-child(4) .fao-why-icon svg path:nth-child(1) {
  animation: faoPathDraw 2.4s ease-in-out infinite;
}

.fao-why-item:nth-child(4) .fao-why-icon svg path:nth-child(n+2) {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: faoPathDraw 2.4s ease-in-out infinite, faoBarRise 1.05s ease-in-out infinite alternate;
}

.fao-why-item:nth-child(4) .fao-why-icon svg path:nth-child(3) {
  animation-delay: .16s, .18s;
}

.fao-why-item:nth-child(4) .fao-why-icon svg path:nth-child(4) {
  animation-delay: .28s, .3s;
}

.fao-why-item:nth-child(4) .fao-why-icon svg path:nth-child(5) {
  animation-delay: .4s, .42s;
}

@keyframes faoPathDraw {
  0% {
    stroke-dashoffset: 60;
    opacity: .86;
  }
  38% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 60;
    opacity: .86;
  }
}

@keyframes faoIconSweep {
  0%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(1.5px);
  }
  62% {
    transform: translateX(-1px);
  }
}

@keyframes faoIconTilt {
  0%, 100% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  62% {
    transform: rotate(4deg);
  }
}

@keyframes faoIconWrite {
  0%, 100% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(-1px, 1px);
  }
  58% {
    transform: translate(2px, -1px);
  }
  74% {
    transform: translate(-1px, 0);
  }
}

@keyframes faoBarRise {
  0%, 100% {
    transform: scaleY(.52);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes faoIconGlow {
  0%, 100% {
    opacity: .9;
    filter: drop-shadow(0 0 0 rgba(227, 194, 139, 0.1));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 9px rgba(227, 194, 139, 0.42));
  }
}

@media (prefers-reduced-motion: reduce) {
  .fao-why-icon svg,
  .fao-why-icon svg path {
    animation: none;
    transform: none;
    stroke-dashoffset: 0;
  }
}

.fao-why-item p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.16rem, 1.64vw, 2rem);
  font-weight: 650;
  line-height: 1.22;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.34);
  max-width: 32ch;
}

.specialist-form-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: none;
}

.specialist-form-modal.is-open {
  display: grid;
  place-items: center;
}

.specialist-form-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 18, 0.66);
  backdrop-filter: blur(6px);
}

.specialist-form-card {
  position: relative;
  z-index: 1;
  width: min(760px, 94vw);
  max-height: min(88vh, 820px);
  overflow: auto;
  border-radius: 20px;
  border: 1px solid rgba(226, 196, 140, 0.3);
  background:
    radial-gradient(circle at 92% -20%, rgba(226, 196, 140, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(7, 17, 34, 0.98) 0%, rgba(8, 19, 39, 0.98) 55%, rgba(7, 24, 46, 0.98) 100%);
  box-shadow: 0 24px 56px rgba(1, 6, 15, 0.52);
  padding: 24px;
}

.specialist-form-close {
  position: absolute;
  right: 14px;
  top: 10px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(226, 196, 140, 0.38);
  background: rgba(9, 21, 40, 0.92);
  color: #f4f8ff;
  font-size: 1.36rem;
  line-height: 1;
  cursor: pointer;
}

.specialist-form-head {
  margin-bottom: 18px;
}

.specialist-form-kicker {
  margin: 0 0 6px;
  color: #e4c48f;
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}

.specialist-form-head h3 {
  margin: 0;
  color: #f4f8ff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.specialist-form-head p {
  margin: 9px 0 0;
  color: #c8d9ef;
  font-size: .98rem;
}

.specialist-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.specialist-form-grid label {
  display: grid;
  gap: 6px;
  color: #d9e7fb;
  font-size: .92rem;
  font-weight: 600;
}

.specialist-form-grid label.full {
  grid-column: 1 / -1;
}

.specialist-form-grid input,
.specialist-form-grid select,
.specialist-form-grid textarea {
  width: 100%;
  border: 1px solid rgba(173, 198, 234, 0.28);
  border-radius: 12px;
  background: rgba(7, 18, 35, 0.72);
  color: #f4f8ff;
  min-height: 44px;
  padding: 0 12px;
  font: inherit;
  outline: none;
}

.specialist-form-grid textarea {
  min-height: 120px;
  resize: vertical;
  padding: 12px;
}

.specialist-form-grid input:focus,
.specialist-form-grid select:focus,
.specialist-form-grid textarea:focus {
  border-color: rgba(228, 196, 143, 0.74);
  box-shadow: 0 0 0 3px rgba(228, 196, 143, 0.16);
}

.specialist-form-grid input::placeholder,
.specialist-form-grid textarea::placeholder {
  color: rgba(213, 226, 244, 0.72);
}

.specialist-form-consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.specialist-form-consent input {
  margin-top: 2px;
  min-height: auto;
}

.specialist-form-consent span {
  color: #d1e1f6;
  line-height: 1.4;
  font-weight: 500;
}

.specialist-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.specialist-form-cancel,
.specialist-form-submit {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.specialist-form-cancel {
  background: rgba(10, 23, 44, 0.8);
  color: #d7e6fa;
  border-color: rgba(173, 198, 234, 0.3);
}

.specialist-form-submit {
  background: linear-gradient(180deg, #e7c88f, #d3aa6e);
  color: #091425;
}

.specialist-form-submit:hover {
  filter: brightness(1.03);
}

.comments-marquee-section {
  padding-top: 24px;
  padding-bottom: 18px;
}

.comments-head {
  text-align: center;
  margin-bottom: 14px;
}

.comments-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(223, 192, 132, 0.22);
  border-radius: 16px;
  background:
    radial-gradient(120% 100% at 50% -20%, rgba(37, 70, 113, 0.28), transparent 54%),
    linear-gradient(180deg, rgba(10, 21, 38, 0.86) 0%, rgba(7, 16, 29, 0.9) 100%);
  padding: 14px 0;
}

.comments-track {
  display: inline-flex;
  align-items: stretch;
  gap: 14px;
  padding: 0 14px;
  width: max-content;
  animation: commentsMarquee 44s linear infinite;
  will-change: transform;
}

.comments-track.is-static {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  animation: none;
}

.comments-marquee:hover .comments-track {
  animation-play-state: paused;
}

.comment-card {
  width: min(410px, 82vw);
  min-height: 132px;
  border: 1px solid rgba(215, 183, 122, 0.2);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(15, 30, 51, 0.92), rgba(11, 23, 40, 0.94));
  padding: 14px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
}

.comment-avatar {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(215, 183, 122, 0.44);
}

.comment-copy {
  display: grid;
  gap: 8px;
  align-content: start;
}

.comment-copy strong {
  color: #f4f8ff;
  letter-spacing: .01em;
}

.comment-copy p {
  margin: 0;
  color: #dce7f8;
  line-height: 1.6;
  font-size: .98rem;
}

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

.site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(223, 192, 132, 0.24);
  background:
    radial-gradient(120% 90% at 50% -20%, rgba(34, 64, 102, 0.42), transparent 52%),
    radial-gradient(90% 70% at 50% 0%, rgba(215, 183, 122, 0.12), transparent 60%),
    linear-gradient(180deg, #06101d 0%, #070f1a 46%, #050c16 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  color: #e7eef8;
  position: relative;
  overflow: hidden;
}

.site-footer .container {
  width: min(1320px, 89%);
}

.site-footer-mini {
  margin-top: 0;
}

@media (min-width: 781px) {
  body.has-mini-footer {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  body.has-mini-footer .rj-page-main,
  body.has-mini-footer .empresa-page-main {
    flex: 1;
  }

  body.has-mini-footer .site-footer-mini {
    margin-top: auto;
  }
}

.footer-mini-top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  max-width: 980px;
  margin: 0 auto;
  gap: 34px;
  align-items: start;
  padding: 34px 0 28px;
  position: relative;
  z-index: 1;
}

.footer-dev-wrap-mini {
  justify-self: end;
  width: min(360px, 100%);
  padding-top: 16px;
  border-top: 1px solid rgba(223, 192, 132, 0.24);
}

.footer-mini-top-only-dev {
  grid-template-columns: 1fr;
  max-width: 660px;
  justify-items: center;
  text-align: center;
  gap: 10px;
}

.footer-mini-top-only-dev .footer-dev-wrap-mini {
  justify-self: center;
  width: min(620px, 100%);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-mini-top-only-dev .footer-dev-wrap-mini .footer-dev-label {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1;
}

.site-footer-mini .footer-dev-wrap-mini .footer-dev-link {
  position: relative;
  overflow: visible;
  animation: none;
}

.site-footer-mini .footer-dev-wrap-mini .footer-dev-link::after {
  content: none;
}

@keyframes footerDevFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes footerDevShine {
  0%, 72%, 100% { left: -120%; }
  84% { left: 132%; }
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0) 17%),
    radial-gradient(circle at 50% 0%, rgba(229, 195, 131, 0.16), transparent 44%);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 120px);
  opacity: .55;
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(3, minmax(170px, 1fr));
  gap: 36px;
  align-items: start;
  padding: 56px 0 34px;
  position: relative;
  z-index: 1;
}

.footer-top > * {
  opacity: 1;
  transform: none;
  animation: none;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-brand p {
  margin: 0;
  color: #d5deeb;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.footer-col h4 {
  margin: 0 0 20px;
  font-size: 1.06rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f5f9ff;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg, #f0cd8d, #d8b272);
  transition: width .22s ease;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

#footerServices,
#footerInstitutional {
  display: grid;
  gap: 8px;
}

#footerServices .footer-service-item,
#footerInstitutional .footer-service-item {
  display: grid;
  gap: 8px;
}

#footerServices .footer-service-toggle,
#footerInstitutional .footer-service-toggle {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0;
  font-family: inherit;
  font-style: inherit;
  color: #eaf1fb;
  font-size: 1.03rem;
  font-weight: 100 !important;
  line-height: 1.3;
  cursor: pointer;
  position: relative;
  transition: color .2s ease, text-shadow .2s ease;
}

#footerServices .footer-service-toggle:hover,
#footerInstitutional .footer-service-toggle:hover {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(229, 195, 131, 0.2);
}

#footerServices .footer-service-toggle::after,
#footerInstitutional .footer-service-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(229, 195, 131, 0.95), rgba(229, 195, 131, 0.2));
  transition: width .22s ease;
}

#footerServices .footer-service-toggle:hover::after,
#footerServices .footer-service-item.active .footer-service-toggle::after,
#footerInstitutional .footer-service-toggle:hover::after,
#footerInstitutional .footer-service-item.active .footer-service-toggle::after {
  width: 100%;
}

#footerServices .footer-service-item.active .footer-service-toggle,
#footerInstitutional .footer-service-item.active .footer-service-toggle {
  color: #f8dfac;
  font-weight: 100 !important;
}

#footerServices .footer-service-card,
#footerInstitutional .footer-service-card {
  border: 1px solid rgba(57, 119, 195, 0.45);
  border-radius: 13px;
  padding: 10px 12px 12px;
  background:
    radial-gradient(circle at 10% -20%, rgba(82, 147, 230, 0.24), transparent 52%),
    linear-gradient(180deg, rgba(11, 32, 59, 0.85), rgba(7, 23, 45, 0.92));
  box-shadow: 0 8px 20px rgba(3, 10, 20, 0.26);
}

#footerServices .footer-service-card p,
#footerInstitutional .footer-service-card p {
  margin: 0 0 9px;
  font-size: .97rem;
  color: #c9d7ec;
  line-height: 1.4;
}

#footerServices .footer-service-btn,
#footerInstitutional .footer-service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(240, 205, 141, 0.58);
  color: #0d1a2f;
  background: linear-gradient(135deg, #f0cd8d 0%, #d9b776 100%);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

#footerServices .footer-service-btn:hover,
#footerInstitutional .footer-service-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(214, 177, 109, 0.26);
  filter: brightness(1.04);
}

.footer-col li a {
  color: #eaf1fb;
  font-size: 1.02rem;
  font-weight: 100 !important;
  cursor: pointer;
  position: relative;
  transition: color .2s ease, transform .2s ease, text-shadow .2s ease;
}

.footer-col li a:hover {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(229, 195, 131, 0.2);
}

.footer-col li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(229, 195, 131, 0.95), rgba(229, 195, 131, 0.2));
  transition: width .22s ease;
}

.footer-col li a:hover::after {
  width: 100%;
}

.footer-contact a {
  display: block;
  margin: 0 0 12px;
  color: #e5c383;
  cursor: pointer;
  transition: color .22s ease, transform .22s ease, text-shadow .22s ease;
}

.footer-contact a.footer-contact-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact .contact-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  line-height: 0;
}

.footer-contact .contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-contact a:hover {
  color: #f3d9aa;
  text-shadow: 0 0 12px rgba(229, 195, 131, 0.22);
}

.btn,
.portfolio-btn,
.hero-outline-btn {
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn:hover,
.portfolio-btn:hover,
.hero-outline-btn:hover {
  box-shadow: 0 10px 22px rgba(2, 8, 16, 0.3);
}

.footer-contact .footer-office {
  margin-top: 0;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
}

.footer-contact .footer-office-card {
  margin: -2px 0 12px;
  border: 1px solid rgba(57, 119, 195, 0.45);
  border-radius: 13px;
  padding: 10px 12px 12px;
  background:
    radial-gradient(circle at 10% -20%, rgba(82, 147, 230, 0.24), transparent 52%),
    linear-gradient(180deg, rgba(11, 32, 59, 0.85), rgba(7, 23, 45, 0.92));
  box-shadow: 0 8px 20px rgba(3, 10, 20, 0.26);
}

.footer-contact .footer-office-address {
  margin: 0;
  font-size: .94rem;
  color: #c9d7ec;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(223, 192, 132, 0.2);
  padding: 20px 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
  color: #edf3fc;
}

#footerText {
  justify-self: start;
  max-width: 100%;
  min-width: 0;
  line-height: 1.42;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-bottom a {
  color: #e5c383;
  text-decoration: underline;
  text-decoration-color: rgba(229, 195, 131, 0.45);
  cursor: pointer;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.footer-bottom a:hover {
  color: #f3d9aa;
  text-decoration-color: rgba(243, 217, 170, 0.8);
}

.footer-privacy {
  justify-self: center;
}

.footer-dev-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.footer-dev-label {
  color: #f2f7ff;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.footer-dev-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
  position: relative;
}

.footer-dev-link::before {
  content: none;
}

.footer-dev-logo {
  position: relative;
  width: 24px;
  height: 18px;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 0;
  color: transparent;
}

.footer-dev-logo::before,
.footer-dev-logo::after {
  content: "";
  position: absolute;
  inset: 0;
}

.footer-dev-logo::before {
  background: linear-gradient(145deg, #efd8a8, #d7b77a 56%, #b18b49);
  clip-path: polygon(4% 10%, 100% 50%, 4% 90%, 34% 50%);
  filter: drop-shadow(0 3px 8px rgba(215, 183, 122, 0.34));
}

.footer-dev-logo::after {
  background: linear-gradient(140deg, rgba(255, 243, 212, 0.95), rgba(215, 183, 122, 0.78));
  clip-path: polygon(27% 32%, 78% 50%, 27% 68%, 42% 50%);
}

.footer-dev-name {
  color: #dbe6f6;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}

.footer-dev-link:hover {
  transform: translateY(-1px);
  opacity: .95;
}

.footer-dev-logo {
  animation: none;
}

.footer-dev-link:hover .footer-dev-name {
  color: #ffffff;
}

@keyframes footerDevSheen {
  0%, 20% { transform: rotate(18deg) translateX(-190%); opacity: 0; }
  36% { opacity: .76; }
  58% { transform: rotate(18deg) translateX(420%); opacity: .62; }
  100% { transform: rotate(18deg) translateX(420%); opacity: 0; }
}

@keyframes footerDevPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 205, 141, 0); }
  50% { box-shadow: 0 0 0 7px rgba(240, 205, 141, 0.14); }
}

@media (prefers-reduced-motion: reduce) {
  .footer-dev-link::before,
  .footer-dev-logo {
    animation: none !important;
  }
}

@keyframes footerGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.04); }
}

@keyframes footerSheen {
  0%, 100% { opacity: .16; }
  50% { opacity: .3; }
}

@keyframes footerRise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.process-section {
  position: relative;
  background:
    radial-gradient(120% 120% at 16% -8%, rgba(102, 147, 206, 0.2), transparent 42%),
    radial-gradient(120% 110% at 92% 108%, rgba(63, 168, 122, 0.16), transparent 46%),
    linear-gradient(180deg, #050d19 0%, #071427 54%, #061223 100%);
  border-top: 1px solid rgba(116, 151, 198, 0.3);
  border-bottom: 0;
  margin: 0;
  padding: 58px 0 68px;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0) 24%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 130px);
  pointer-events: none;
}

.process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0, rgba(126, 166, 223, 0.1) 46%, transparent 100%);
  opacity: .22;
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.process-info {
  border: 1px solid rgba(113, 148, 196, 0.4);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(11, 28, 51, 0.92), rgba(7, 18, 35, 0.94));
  box-shadow:
    0 18px 34px rgba(3, 9, 18, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.07) inset;
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
}

.process-info::before {
  content: "ATENDIMENTO PREMIUM";
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border: 1px solid rgba(223, 192, 132, 0.34);
  border-radius: 999px;
  background: rgba(223, 192, 132, 0.12);
  color: #f0cd8d;
  font-size: .76rem;
  letter-spacing: .11em;
  font-weight: 700;
}

.process-info h2 {
  margin: 0 0 20px;
  font-size: clamp(2.05rem, 3vw, 2.9rem);
  color: #f4f8ff;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 11px;
  border: 1px solid rgba(96, 132, 181, 0.34);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(13, 29, 52, 0.78), rgba(9, 21, 39, 0.82));
  padding: 11px 13px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.process-step span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #e4c88f, #cfa864);
  color: #101821;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(9, 14, 23, 0.32);
}

.process-step p {
  margin: 4px 0 0;
  color: #e8eff9;
  line-height: 1.5;
  font-size: 1.08rem;
}

.process-step:hover {
  transform: translateY(-1px);
  border-color: rgba(140, 181, 236, 0.54);
  box-shadow: 0 10px 20px rgba(3, 8, 18, 0.26);
  background: linear-gradient(180deg, rgba(14, 33, 58, 0.84), rgba(9, 23, 43, 0.88));
}

.process-note {
  margin-top: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(223, 192, 132, 0.35);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(13, 27, 47, 0.74), rgba(11, 23, 40, 0.78));
}

.process-note h4 {
  margin: 0 0 8px;
  color: #f3f8ff;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.1;
}

.process-note p {
  margin: 0;
  color: #dfe6f1;
  line-height: 1.52;
  font-size: 1.03rem;
}

.process-form {
  background: linear-gradient(180deg, rgba(10, 23, 42, 0.96) 0%, rgba(8, 18, 33, 0.98) 100%);
  border: 1px solid rgba(95, 138, 191, 0.5);
  border-radius: 24px;
  padding: 32px 30px 28px;
  display: grid;
  gap: 12px;
  box-shadow:
    0 18px 34px rgba(3, 9, 18, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}

.process-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
}

.process-form:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 40px rgba(2, 9, 18, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  border-color: rgba(124, 171, 231, 0.62);
}

.process-form h3 {
  margin: 0 0 8px;
  color: #f4f8ff;
  font-size: clamp(1.95rem, 3vw, 3.05rem);
  line-height: 1.16;
  letter-spacing: -0.016em;
  text-wrap: balance;
  position: relative;
  z-index: 1;
}

.process-form input,
.process-form textarea {
  width: 100%;
  border: 1px solid rgba(103, 150, 211, 0.42);
  border-radius: 13px;
  background: rgba(10, 27, 49, 0.88);
  color: #edf4ff;
  padding: 14px 15px;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  position: relative;
  z-index: 1;
}

.process-form input::placeholder,
.process-form textarea::placeholder {
  color: #9fb1ca;
}

.process-form input:focus,
.process-form textarea:focus {
  border-color: #7fb0f2;
  box-shadow: 0 0 0 3px rgba(118, 163, 223, 0.2);
  background: rgba(11, 25, 45, 0.96);
  outline: none;
}

.process-form button {
  margin-top: 10px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(180deg, #e4c98f, #d3ae6d);
  color: #111a27;
  font-weight: 700;
  padding: 15px 18px;
  font-size: 1.04rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  letter-spacing: .02em;
  z-index: 1;
}

.process-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(13, 17, 25, 0.28);
  filter: brightness(1.03);
}

.process-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 10%, rgba(255, 255, 255, 0.32) 48%, transparent 86%);
  transform: translateX(-130%);
  transition: transform .7s ease;
}

.process-form button:hover::after {
  transform: translateX(130%);
}

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

@media (prefers-reduced-motion: reduce) {
  .process-info h2,
  .process-step,
  .process-note,
  .process-form,
  .process-step span,
  .process-form button,
  .process-form button::after,
  .process-section,
  .process-section::after,
  .comments-track {
    animation: none !important;
    transition: none !important;
  }

  .process-info h2,
  .process-step,
  .process-note,
  .process-form {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-footer::after {
    animation: none !important;
  }

  .site-footer {
    animation: none !important;
  }

  .footer-top > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .site-entry-target {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 768px) {
  .reveal-on-scroll,
  .site-entry-target {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  .hero-banner.hero-image-from-right .hero-banner-bg.hero-enter,
  .hero-banner.hero-image-from-left .hero-banner-bg.hero-enter,
  .hero-banner.hero-text-from-left #heroBannerTitle.hero-enter,
  .hero-banner.hero-text-from-left .hero-subtitle.hero-enter,
  .hero-banner.hero-text-from-left .hero-outline-btn.hero-enter,
  .hero-banner.hero-text-from-right #heroBannerTitle.hero-enter,
  .hero-banner.hero-text-from-right .hero-subtitle.hero-enter,
  .hero-banner.hero-text-from-right .hero-outline-btn.hero-enter {
    animation: none !important;
  }
}

@media (min-width: 1025px) {
  .site-header {
    border-bottom-color: rgba(212, 168, 106, 0.09);
    background: linear-gradient(180deg, rgba(8, 18, 34, 0.72), rgba(8, 18, 34, 0.46));
    -webkit-backdrop-filter: blur(10px) saturate(132%);
    backdrop-filter: blur(10px) saturate(132%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 22px rgba(2, 7, 16, 0.26);
  }

  .site-header.is-scrolled {
    background: linear-gradient(180deg, rgba(8, 18, 34, 0.86), rgba(8, 18, 34, 0.76));
    border-bottom-color: rgba(183, 204, 238, 0.18);
    box-shadow: 0 12px 24px rgba(2, 7, 16, 0.34);
  }

  .site-header .container {
    width: min(1380px, 95%);
  }

  .nav-row {
    gap: clamp(12px, 1.1vw, 22px);
    padding: clamp(10px, 0.74vw, 14px) 0;
  }

  .logo {
    display: inline-flex;
    align-items: baseline;
    gap: clamp(10px, 0.85vw, 15px);
    font-size: clamp(1.06rem, 0.8vw, 1.24rem);
    letter-spacing: 0.062em;
    text-shadow: 0 6px 14px rgba(4, 10, 20, 0.28);
    max-width: min(56vw, 620px);
  }

  .logo span {
    margin-left: 0;
    font-size: clamp(0.9rem, 0.66vw, 1.02rem);
    font-weight: 550;
    letter-spacing: 0.014em;
    opacity: .96;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .main-nav {
    gap: clamp(14px, 1.1vw, 24px);
    font-size: clamp(0.9rem, 0.64vw, 0.98rem);
    color: #d8e3f6;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .nav-link {
    min-height: 36px;
    padding: 0 3px;
    letter-spacing: 0.012em;
    white-space: nowrap;
  }

  .main-nav a::after {
    bottom: -6px;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 168, 106, 0.95), rgba(147, 197, 253, 0.55));
    transition: width .24s ease, opacity .24s ease;
    opacity: .85;
  }

  .main-nav a:hover {
    color: #ffffff;
    text-shadow: 0 1px 12px rgba(133, 166, 224, 0.34);
  }

  .main-nav a:hover::after {
    width: 100%;
    opacity: 1;
  }

  .main-nav a:where(.active, .is-active, [aria-current="page"]) {
    color: #ffffff;
  }

  .main-nav a:where(.active, .is-active, [aria-current="page"])::after {
    width: 100%;
    opacity: 1;
  }

  .hero-banner {
    min-height: 94vh;
  }

  .hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 46%, transparent 28%, rgba(4, 8, 14, 0.22) 76%),
      linear-gradient(180deg, rgba(5, 9, 15, 0.06), rgba(5, 9, 15, 0.28));
  }

  .hero-banner-overlay {
    background:
      linear-gradient(90deg, rgba(3, 7, 13, 0.84) 0%, rgba(6, 11, 18, 0.44) 42%, rgba(3, 7, 13, 0.8) 100%),
      radial-gradient(circle at 52% 38%, rgba(214, 168, 91, 0.2), transparent 50%),
      linear-gradient(180deg, rgba(3, 7, 13, 0.3) 0%, rgba(3, 7, 13, 0.52) 100%);
  }

  .hero-banner-content {
    grid-template-columns: 92px minmax(0, 1fr) 92px;
    gap: 22px;
  }

  .hero-center {
    width: min(980px, 100%);
    margin: 0 auto;
    gap: 14px;
  }

  .hero-kicker {
    margin-bottom: 4px;
    letter-spacing: 0.24em;
    font-size: 0.76rem;
    color: #ddbc80;
  }

  #heroBannerTitle {
    font-size: clamp(2.6rem, 5.1vw, 5rem);
    letter-spacing: 0.02em;
    text-shadow: 0 12px 26px rgba(2, 7, 14, 0.62);
  }

  .hero-subtitle {
    max-width: 32ch;
    font-size: clamp(1.22rem, 2vw, 2rem);
    line-height: 1.38;
    color: #eef4ff;
    text-shadow: 0 10px 24px rgba(2, 7, 14, 0.5);
  }

  .hero-outline-btn {
    min-width: 214px;
    padding: 14px 30px;
    border: 1px solid rgba(221, 188, 128, 0.78);
    background: linear-gradient(180deg, rgba(10, 17, 30, 0.74), rgba(7, 13, 23, 0.64));
    box-shadow: 0 12px 26px rgba(4, 9, 18, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .hero-outline-btn:hover {
    background: linear-gradient(180deg, rgba(13, 21, 35, 0.9), rgba(8, 14, 24, 0.82));
    box-shadow: 0 14px 28px rgba(3, 9, 18, 0.44), 0 0 0 1px rgba(221, 188, 128, 0.28) inset;
  }

  .hero-arrow {
    width: 52px;
    height: 52px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: rgba(10, 18, 32, 0.35);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
    display: inline-grid;
    place-items: center;
    font-size: 1.62rem;
    font-weight: 400;
    line-height: 1;
    color: rgba(239, 246, 255, 0.94);
    text-shadow: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease, filter .22s ease;
    position: relative;
    overflow: hidden;
  }

  .hero-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    opacity: .45;
    transition: opacity .22s ease;
    pointer-events: none;
  }

  .hero-arrow:hover {
    color: #ffffff;
    background: rgba(10, 20, 36, 0.52);
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
    filter: brightness(1.06);
  }

  .hero-arrow:hover::before {
    opacity: .72;
  }

  .hero-arrow:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.24), 0 12px 28px rgba(0, 0, 0, 0.24);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-layout,
  .grid-cards {
    grid-template-columns: 1fr;
  }

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

  #areas .card:nth-child(2) {
    transform: none;
  }

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

  .hero-banner-content {
    grid-template-columns: 58px 1fr 58px;
    min-height: 82vh;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-media {
    order: 1;
  }

  .portfolio-copy {
    order: 2;
  }

  .portfolio-media img {
    min-height: 300px;
    max-height: 460px;
  }

  .comment-card {
    width: min(460px, 90vw);
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 28px;
  }

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

  .process-info {
    padding: 24px 22px;
  }

  .process-form {
    padding: 24px 22px;
  }

  #artigos .article-link {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    margin-top: 14px;
    display: inline-flex;
  }

  #artigos .article-card {
    min-height: 500px;
  }

  .article-detail-grid {
    grid-template-columns: 1fr;
  }

  .articles-archive-light #artigos .grid-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .nav-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 4%;
    right: 4%;
    width: auto;
    display: grid;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(8, 12, 19, 0.94);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 32px rgba(1, 7, 16, 0.46);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    overflow: hidden;
  }

  #artigos .container {
    padding: 16px;
    border-radius: 16px;
  }

  #artigos::before {
    height: 48px;
    clip-path: polygon(0 68%, 12% 74%, 24% 79%, 38% 84%, 51% 86%, 64% 84%, 76% 80%, 87% 74%, 95% 69%, 100% 65%, 100% 100%, 0 100%);
  }

  #artigos .grid-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #artigos .article-card {
    min-height: 0;
  }

  #artigos .article-media,
  #artigos .article-image {
    min-height: 200px;
  }

  #artigos.home-articles-showcase .article-media {
    position: absolute;
    inset: 0;
    margin: 0;
    min-height: 0;
  }

  #artigos.home-articles-showcase .article-image {
    min-height: 100%;
  }

  #artigos.home-articles-showcase .article-card {
    min-height: 390px;
  }

  #artigos.home-articles-showcase .article-content {
    padding: 88px 16px 16px;
  }

  #artigos.home-articles-showcase .article-card h3 {
    font-size: clamp(1.52rem, 8vw, 2rem);
    max-width: 15ch;
  }

  #artigos.home-articles-showcase .article-excerpt {
    font-size: 0.92rem;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.98rem;
  }

  .main-nav .nav-item {
    width: 100%;
  }

  .main-nav .nav-link {
    width: 100%;
  }

  .main-nav .nav-dropdown {
    display: none !important;
  }

  .main-nav a:first-child {
    border-top: 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-banner {
    min-height: 78vh;
  }

  .hero-banner-content {
    grid-template-columns: 1fr;
    min-height: 78vh;
    justify-items: center;
  }

  .hero-arrow {
    display: none;
  }

  .hero-center {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 14px;
    text-align: center;
    justify-items: center;
  }

  #heroBannerTitle {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    line-height: 1.06;
    letter-spacing: 0;
    max-width: 12ch;
    margin-inline: auto;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-subtitle {
    max-width: 24ch;
    margin: 0 auto;
    font-size: clamp(1rem, 4.8vw, 1.4rem);
    text-wrap: balance;
  }

  .hero-outline-btn {
    min-width: 170px;
    padding: 12px 20px;
    letter-spacing: 0.12em;
  }

  .hero-banner.hero-image-from-right .hero-banner-bg.hero-enter {
    animation: heroImageInFromRight .56s cubic-bezier(.2, .72, .2, 1) both;
  }

  .hero-banner.hero-image-from-left .hero-banner-bg.hero-enter {
    animation: heroImageInFromLeft .56s cubic-bezier(.2, .72, .2, 1) both;
  }

  .hero-banner.hero-text-from-left #heroBannerTitle.hero-enter {
    animation: heroTextInFromLeft .46s cubic-bezier(.2, .72, .2, 1) .1s both;
  }

  .hero-banner.hero-text-from-left .hero-subtitle.hero-enter {
    animation: heroTextInFromLeft .46s cubic-bezier(.2, .72, .2, 1) .18s both;
  }

  .hero-banner.hero-text-from-left .hero-outline-btn.hero-enter {
    animation: heroTextInFromLeft .46s cubic-bezier(.2, .72, .2, 1) .26s both;
  }

  .hero-banner.hero-text-from-right #heroBannerTitle.hero-enter {
    animation: heroTextInFromRight .46s cubic-bezier(.2, .72, .2, 1) .1s both;
  }

  .hero-banner.hero-text-from-right .hero-subtitle.hero-enter {
    animation: heroTextInFromRight .46s cubic-bezier(.2, .72, .2, 1) .18s both;
  }

  .hero-banner.hero-text-from-right .hero-outline-btn.hero-enter {
    animation: heroTextInFromRight .46s cubic-bezier(.2, .72, .2, 1) .26s both;
  }

  .hero-main,
  .hero-side,
  .about-text,
  .docs-board,
  .contact-board { padding: 18px; }

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

  .top-numbers-grid {
    grid-template-columns: 1fr;
  }

  .comments-marquee-section {
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .comments-marquee {
    border-radius: 12px;
    padding: 10px 0;
  }

  .comments-track {
    gap: 10px;
    padding: 0 10px;
    animation-duration: 52s;
  }

  .comment-card {
    width: min(88vw, 370px);
    min-height: 122px;
    padding: 12px;
    grid-template-columns: 54px 1fr;
    gap: 10px;
  }

  .comment-avatar {
    width: 54px;
    height: 54px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0 20px;
  }

  #footerServices,
  #footerInstitutional {
    gap: 8px;
  }

  #footerServices .footer-service-card,
  #footerInstitutional .footer-service-card {
    padding: 9px 10px 10px;
    border-radius: 12px;
  }

  #footerServices .footer-service-toggle,
  #footerInstitutional .footer-service-toggle {
    font-size: .99rem;
  }

  #footerServices .footer-service-card p,
  #footerInstitutional .footer-service-card p {
    font-size: .9rem;
    margin-bottom: 9px;
    line-height: 1.34;
  }

  .footer-contact .footer-office-card {
    padding: 9px 10px 10px;
    border-radius: 12px;
  }

  .footer-contact .footer-office-address {
    font-size: .9rem;
    line-height: 1.34;
  }

  #footerServices .footer-service-btn {
    min-height: 30px;
    padding: 0 11px;
    font-size: .82rem;
  }

  .footer-mini-top {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 18px;
    padding: 24px 0 20px;
  }

  .footer-dev-wrap-mini {
    justify-self: start;
  }

  body.has-mini-footer .footer-mini-top-only-dev .footer-dev-wrap-mini {
    justify-self: center;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
  }

  body.has-mini-footer .footer-mini-top-only-dev .footer-dev-wrap-mini .footer-dev-label {
    margin: 0;
    white-space: nowrap;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
    padding: 18px 14px 24px;
    border-top: 1px solid rgba(223, 192, 132, 0.28);
    background:
      radial-gradient(circle at 50% -42%, rgba(240, 205, 141, 0.18), transparent 62%),
      linear-gradient(180deg, rgba(9, 20, 37, 0.06), rgba(9, 20, 37, 0.42));
    border-radius: 16px;
    backdrop-filter: blur(6px);
  }

  #footerText {
    justify-self: center;
    max-width: min(92vw, 560px);
    font-size: clamp(0.92rem, 3.7vw, 1.03rem);
    letter-spacing: 0.01em;
    color: #f3f7ff;
    line-height: 1.44;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-dev-wrap {
    justify-self: center;
    justify-items: center;
    gap: 4px;
  }

  .footer-privacy {
    font-size: 1.08rem;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.6px;
  }

  .footer-dev-label {
    font-size: 1rem;
    color: #eff4fc;
    letter-spacing: 0;
  }

  .footer-dev-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transition: transform .2s ease, opacity .2s ease;
  }

  .footer-dev-link:hover,
  .footer-dev-link:active {
    transform: translateY(-1px);
    opacity: .95;
  }

  .footer-dev-logo {
    width: 24px;
    height: 20px;
  }

  body.has-mini-footer .footer-mini-top-only-dev .footer-dev-wrap-mini {
    gap: 10px;
  }

  body.has-mini-footer .footer-mini-top-only-dev .footer-dev-wrap-mini .footer-dev-label {
    font-size: 0.94rem;
  }

  body.has-mini-footer .footer-mini-top-only-dev .footer-dev-wrap-mini .footer-dev-link {
    min-height: 34px;
    padding: 0;
    gap: 8px;
  }

  body.has-mini-footer .footer-mini-top-only-dev .footer-dev-wrap-mini .footer-dev-logo {
    width: 22px;
    height: 18px;
  }

  body.has-mini-footer .footer-mini-top-only-dev .footer-dev-wrap-mini .footer-dev-name {
    font-size: 0.92rem;
    line-height: 1.1;
    white-space: nowrap;
  }

  .process-section {
    padding: 28px 0 28px;
  }

  .process-info {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .process-info h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .process-step {
    grid-template-columns: 46px 1fr;
    padding: 9px 10px;
  }

  .process-step span {
    width: 34px;
    height: 34px;
  }

  .process-note {
    padding: 12px 12px;
  }

  .process-form {
    padding: 18px;
    border-radius: 14px;
  }

  .process-form h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .articles-page-main,
  .article-page-main,
  .rj-page-main,
  .empresa-page-main,
  .privacy-page-main {
    padding-top: 78px;
  }

  .article-detail-section {
    padding: 28px 0 36px;
  }

  .article-detail-content,
  .article-detail-sidebar {
    padding: 16px;
  }

  .privacy-section {
    padding: 34px 0 44px;
  }

  .privacy-card {
    padding: 26px 20px;
    border-radius: 16px;
  }

  .privacy-card h1 {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
  }

  .privacy-card h2 {
    margin-top: 24px;
    font-size: clamp(1.1rem, 5.2vw, 1.34rem);
  }

  .privacy-card p {
    font-size: 0.98rem;
  }

  .article-detail-image {
    max-height: 240px;
  }

  .articles-archive-light #artigos .grid-cards {
    grid-template-columns: 1fr;
  }

  .rj-filters {
    grid-template-columns: 1fr;
  }

  .rj-table th,
  .rj-table td {
    padding: 10px 6px;
    font-size: .95rem;
  }

  .empresa-file-head {
    font-size: .95rem;
    padding: 8px 6px 10px;
  }

  .empresa-file-row {
    padding: 10px 6px;
    gap: 8px;
  }

  .empresa-file-title {
    gap: 8px;
  }

  .empresa-file-title::before {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .empresa-file-download {
    padding: 4px 6px;
    font-size: .95rem;
  }

  .portfolio-copy { padding: 22px; }
  .portfolio-copy,
  .portfolio-media {
    max-width: 620px;
    margin-inline: auto;
  }
  .portfolio-media img { min-height: 250px; }
}

@media (max-width: 420px) {
  .hero-center {
    max-width: 292px;
    padding: 0 12px;
  }

  #heroBannerTitle {
    font-size: clamp(1.75rem, 8.5vw, 2.35rem);
    max-width: 11ch;
  }

  .hero-outline-btn {
    min-width: 160px;
    padding: 11px 18px;
  }
}

/* Lawyers */
.lawyers-page-main,
.lawyer-detail-main {
  padding-top: 90px;
  background: #f2f2f2;
}

body.lawyers-light {
  background: #f2f2f2;
  color: #3f4b5e;
}

.lawyers-page-section {
  padding-top: 38px;
  padding-bottom: 62px;
}

.lawyers-page-head {
  text-align: center;
  margin-bottom: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.lawyers-page-head h1 {
  margin: 0 0 8px;
  color: #425063;
  font-size: clamp(2.2rem, 3.6vw, 3.3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.lawyers-page-head h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent 0, #c6a063 35%, #3d4148 50%, #c6a063 65%, transparent 100%);
}

.lawyers-page-head p {
  margin: 16px 0 0;
  color: #5d6c82;
  font-size: clamp(1rem, 1.05vw, 1.26rem);
  text-align: center;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.lawyers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.lawyer-card {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 44vw, 520px);
  border: 1px solid rgba(205, 211, 220, 0.8);
  border-radius: 20px;
  box-shadow: 0 20px 34px rgba(20, 29, 43, 0.14);
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.lawyer-card-image {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 44vw, 520px);
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.lawyer-card-overlay {
  position: absolute;
  inset: auto 0 0;
  border: 0;
  background: linear-gradient(180deg, rgba(8, 14, 25, 0) 0%, rgba(8, 14, 25, 0.82) 54%, rgba(8, 14, 25, 0.95) 100%);
  color: #f5f8ff;
  padding: 62px 18px 16px;
  text-align: left;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: transform .3s ease, background .3s ease;
}

.lawyer-card:hover .lawyer-card-overlay,
.lawyer-card:focus-within .lawyer-card-overlay {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(8, 14, 25, 0) 0%, rgba(8, 14, 25, 0.86) 52%, rgba(8, 14, 25, 0.98) 100%);
}

.lawyer-card:hover .lawyer-card-image,
.lawyer-card:focus-within .lawyer-card-image {
  transform: scale(1.04);
}

.lawyer-card:hover,
.lawyer-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 44px rgba(15, 24, 38, 0.2);
  border-color: rgba(167, 177, 191, 0.95);
}

.lawyer-card-overlay h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.lawyer-card-role,
.lawyer-card-oab {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: rgba(236, 243, 255, 0.92);
}

.lawyer-card-role {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  font-size: 0.76rem;
  color: rgba(213, 225, 245, 0.86);
}

.lawyer-card-btn {
  display: inline-flex;
  margin-top: 14px;
  min-width: 148px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #49c58f, #33af7c);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 24px rgba(21, 109, 76, 0.3);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.lawyer-card-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 14px 26px rgba(21, 109, 76, 0.38);
}

.lawyer-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  color: #5f6e83;
}

.lawyer-detail-section {
  padding-top: 36px;
  padding-bottom: 64px;
}

.lawyer-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr 1fr;
  gap: 34px;
  align-items: start;
  color: #445467;
  background: transparent;
  border: 0;
  padding: 0;
  font-family: "Montserrat", "Segoe UI", "Trebuchet MS", Tahoma, sans-serif;
}

.lawyer-detail-image-wrap {
  margin: 0;
  border: 1px solid #ddd0bb;
  background: #fff;
}

.lawyer-detail-image-wrap img {
  width: 100%;
  max-height: 430px;
  display: block;
  object-fit: cover;
}

.lawyer-detail-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  color: #3f4e62;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.1;
  font-weight: 700;
  white-space: nowrap;
}

.lawyer-detail-role,
.lawyer-detail-oab {
  margin: 0 0 8px;
  color: #4b5b70;
  font-size: 0.94rem;
  line-height: 1.34;
}

.lawyer-detail-role {
  font-weight: 700;
}

.lawyer-detail-block {
  margin-top: 24px;
}

.lawyer-detail-block h3 {
  margin: 0 0 10px;
  color: #425163;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.92rem;
  font-weight: 700;
}

.lawyer-detail-block p,
.lawyer-detail-block li {
  margin: 0 0 8px;
  color: #56667c;
  line-height: 1.6;
  font-size: 0.92rem;
}

.lawyer-education-title {
  margin: 0 0 2px;
  font-weight: 700;
  color: #435164;
}

.lawyer-education-school {
  margin: 0 0 10px;
  color: #56667c;
}

.lawyer-detail-block ul {
  margin: 0;
  padding-left: 18px;
}

.lawyer-detail-bio {
  margin-top: 24px;
  border-top: 1px solid #d9d9d9;
  padding-top: 20px;
}

.lawyer-detail-bio p {
  margin: 0 0 12px;
  color: #59687c;
  line-height: 1.58;
  font-size: 0.88rem;
}

.lawyer-others-section {
  margin-top: 48px;
}

.lawyer-others-section h2 {
  margin: 0 0 28px;
  text-align: center;
  color: #435064;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lawyer-others-section h2::after {
  content: "";
  display: block;
  width: 82px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent 0, #c6a063 35%, #3d4148 50%, #c6a063 65%, transparent 100%);
}

.lawyer-others-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.lawyer-other-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid #d8cdb7;
  border-left: 0;
  animation: lawyerOtherDrop .55s ease both;
}

.lawyer-other-card:nth-child(1) { animation-delay: .03s; }
.lawyer-other-card:nth-child(2) { animation-delay: .09s; }
.lawyer-other-card:nth-child(3) { animation-delay: .15s; }
.lawyer-other-card:nth-child(4) { animation-delay: .21s; }

.lawyer-others-grid .lawyer-other-card:first-child {
  border-left: 1px solid #d8cdb7;
}

.lawyer-other-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.lawyer-other-overlay {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 14%;
  padding: 18px 16px;
  background: rgba(249, 248, 245, 0.94);
  color: #425164;
  text-align: center;
  border: 1px solid rgba(185, 170, 138, 0.34);
  opacity: 0;
  transform: translateY(-24px);
  transition: opacity .28s ease, transform .28s ease;
}

.lawyer-other-overlay strong {
  display: block;
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lawyer-other-overlay p {
  margin: 8px 0 0;
  font-size: .98rem;
}

.lawyer-other-btn {
  display: inline-flex;
  margin-top: 14px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: #444a55;
  color: #f0d3a2;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.lawyer-other-card:hover .lawyer-other-overlay,
.lawyer-other-card:focus-within .lawyer-other-overlay {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lawyerOtherDrop {
  from {
    opacity: 0;
    transform: translateY(-32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .container {
    width: min(1220px, 92%);
  }

  .section {
    padding: 46px 0;
  }

  .fao-why-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .fao-why-copy {
    padding: 20px 18px;
  }

  .fao-why-title-row {
    gap: 16px;
  }

  .fao-why-copy h2 {
    max-width: none;
  }

  .fao-why-copy p {
    max-width: none;
  }

  .lawyers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
  }

  .lawyer-detail-grid {
    grid-template-columns: minmax(240px, 320px) 1fr;
  }

  .lawyer-detail-side {
    grid-column: 1 / -1;
  }

  .lawyer-others-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .lawyer-others-grid .lawyer-other-card:first-child {
    border-left: 1px solid #d8cdb7;
  }

  .lawyer-other-card {
    border-left: 1px solid #d8cdb7;
  }
}

@media (max-width: 740px) {
  .container {
    width: min(1220px, 94%);
  }

  .section {
    padding: 40px 0;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .fao-why-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .fao-why-copy {
    padding: 8px 2px;
  }

  .fao-why-title-row {
    gap: 12px;
    align-items: flex-start;
  }

  .fao-wordmark {
    min-width: 40px;
    min-height: 40px;
    padding: 0;
  }

  .fao-wordmark img {
    width: 40px;
    height: 40px;
    margin-top: 0;
  }

  .fao-why-cta {
    min-height: 52px;
    font-size: 1rem;
    padding: 0 24px 0 48px;
  }

  .fao-why-cta::before {
    left: 16px;
    width: 22px;
    height: 22px;
    font-size: 1.3rem;
  }

  .fao-why-points {
    border-radius: 0;
  }

  .fao-why-item {
    grid-template-columns: 40px 1fr;
    min-height: 82px;
    padding: 12px 0;
  }

  .fao-why-icon {
    width: 36px;
    height: 36px;
  }

  .fao-why-icon svg {
    width: 24px;
    height: 24px;
  }

  .fao-why-item p {
    font-size: 1.06rem;
  }

  .specialist-form-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

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

  .specialist-form-actions {
    flex-direction: column;
  }

  .specialist-form-cancel,
  .specialist-form-submit {
    width: 100%;
  }

  .floating-whatsapp {
    width: 48px;
    height: 48px;
    right: 12px;
    bottom: 14px;
  }

  .floating-whatsapp svg {
    width: 21px;
    height: 21px;
  }

  .home-lawyers-section {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .home-lawyers-slider {
    border-radius: 18px;
    padding: 12px 0;
  }

  .home-lawyers-slider::before,
  .home-lawyers-slider::after {
    width: 40px;
  }

  .home-lawyers-slider {
    padding: 10px 0;
  }

  .home-lawyers-arrow {
    display: none;
  }

  .home-lawyers-track .lawyer-card {
    flex-basis: min(300px, 84vw);
    min-height: 440px;
  }

  .home-lawyers-track.is-static .lawyer-card {
    flex-basis: min(320px, 90vw);
    width: min(320px, 90vw);
    min-height: 440px;
  }

  .lawyers-grid {
    grid-template-columns: minmax(0, 340px);
    justify-content: center;
    gap: 16px;
    max-width: 100%;
  }

  .lawyer-card,
  .lawyer-card-image {
    min-height: 400px;
  }

  .lawyer-card-overlay {
    inset: auto 0 0;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    text-align: left;
    padding: 64px 18px 18px;
    background: linear-gradient(180deg, rgba(8, 14, 25, 0) 0%, rgba(8, 14, 25, 0.88) 50%, rgba(8, 14, 25, 0.98) 100%);
  }

  .lawyer-card.is-revealed .lawyer-card-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .lawyer-detail-grid {
    grid-template-columns: 1fr;
  }

  .lawyer-detail-copy h1 {
    white-space: normal;
  }

  .lawyer-others-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lawyer-other-card {
    min-height: 320px;
    border-left: 1px solid #d8cdb7;
  }

  .lawyer-other-card img {
    min-height: 320px;
  }

  .lawyer-other-overlay {
    opacity: 1;
    transform: translateY(0);
    left: 8%;
    right: 8%;
    top: auto;
    bottom: 14px;
  }
}

/* Home premium header + hero */
.site-header-premium-home {
  border-bottom: 1px solid rgba(212, 174, 111, 0.24);
  background:
    linear-gradient(180deg, rgba(9, 22, 41, 0.95) 0%, rgba(8, 18, 34, 0.9) 100%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 10px 30px rgba(2, 7, 15, 0.42);
}

.site-header-premium-home.is-scrolled {
  background:
    linear-gradient(180deg, rgba(8, 18, 34, 0.98) 0%, rgba(8, 18, 34, 0.96) 100%);
  border-bottom-color: rgba(212, 174, 111, 0.34);
}

.site-header-premium-home .nav-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px 0 10px;
}

.site-header-premium-home .logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-header-premium-home .logo-mark {
  color: #e5c98f;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(1.12rem, 1.12vw, 1.32rem);
  line-height: 1;
  text-shadow: 0 8px 18px rgba(4, 10, 21, 0.36);
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid rgba(176, 202, 240, 0.38);
}

.site-header-premium-home .logo-text {
  color: #f7fbff;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: clamp(0.86rem, 0.82vw, 1rem);
  white-space: nowrap;
  line-height: 1;
  text-shadow: 0 6px 14px rgba(4, 10, 21, 0.28);
}

.site-header-premium-home .header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.site-header-premium-home .header-inline-link {
  min-height: 42px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dbe8fb;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease;
}

.site-header-premium-home .header-inline-link span {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
  letter-spacing: inherit;
}

.site-header-premium-home .header-inline-trigger {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  cursor: pointer;
  position: relative;
}

.site-header-premium-home .header-inline-dropdown {
  position: relative;
}

.site-header-premium-home .header-inline-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 12px;
}

.site-header-premium-home .header-chevron {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  stroke: #9fc0ec;
  stroke-width: 2;
  fill: none;
  transition: transform .2s ease, stroke .2s ease;
}

.site-header-premium-home .header-inline-link svg {
  width: 16px;
  height: 16px;
  stroke: #f0cd8d;
  stroke-width: 1.9;
  fill: none;
  flex-shrink: 0;
}

.site-header-premium-home .header-inline-link:hover {
  color: #ffffff;
  background: rgba(27, 49, 80, 0.55);
}

.site-header-premium-home .header-inline-submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  min-width: 248px;
  padding: 8px;
  border-radius: 13px;
  border: 1px solid rgba(157, 189, 231, 0.3);
  background: linear-gradient(180deg, rgba(13, 29, 52, 0.98), rgba(10, 23, 41, 0.98));
  box-shadow: 0 16px 32px rgba(2, 9, 20, 0.4);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 26;
}

.site-header-premium-home .header-inline-submenu-link {
  min-height: 42px;
  border-radius: 0;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  width: 100%;
  color: #eaf2ff;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 0;
  border-bottom: 1px solid rgba(171, 197, 234, 0.2);
  transition: color .2s ease, border-color .2s ease;
  position: relative;
}

.site-header-premium-home .header-inline-submenu-link:hover {
  color: #ffffff;
  border-color: rgba(212, 174, 111, 0.55);
}

.site-header-premium-home .header-inline-submenu-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0cd8d 0%, #8db7ff 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .22s ease;
}

.site-header-premium-home .header-inline-submenu-link:hover::after {
  transform: scaleX(1);
}

.site-header-premium-home .header-inline-submenu-link:last-child {
  border-bottom: 0;
}

.site-header-premium-home .header-inline-dropdown:hover .header-inline-submenu,
.site-header-premium-home .header-inline-dropdown:focus-within .header-inline-submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header-premium-home .header-inline-dropdown:hover .header-chevron,
.site-header-premium-home .header-inline-dropdown:focus-within .header-chevron {
  transform: rotate(180deg);
  stroke: #d6e7ff;
}


.site-header-premium-home .header-action-link {
  min-height: 44px;
  padding: 0 13px;
  border-radius: 12px;
  border: 1px solid rgba(167, 195, 235, 0.24);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ecf4ff;
  background: rgba(16, 32, 54, 0.76);
  font-weight: 600;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.site-header-premium-home .header-action-link svg {
  width: 16px;
  height: 16px;
  stroke: #f0cd8d;
  stroke-width: 1.9;
  fill: none;
  flex-shrink: 0;
}

.site-header-premium-home .header-action-link:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 174, 111, 0.52);
  background: rgba(20, 40, 66, 0.9);
}

.site-header-premium-home .menu-toggle {
  display: none;
}

.site-header-premium-home .main-nav {
  grid-column: 1 / -1;
  margin-top: 6px;
  min-height: 54px;
  border: 1px solid rgba(176, 202, 240, 0.2);
  border-radius: 14px;
  background: rgba(9, 22, 40, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  padding: 8px 14px;
}

.site-header-premium-home .main-nav .nav-link {
  min-height: 38px;
  padding: 0 4px;
  letter-spacing: 0.01em;
}

.site-header-premium-home .main-nav a {
  color: #d4e0f4;
}

.site-header-premium-home .main-nav a::after {
  bottom: -7px;
  height: 2px;
  background: linear-gradient(90deg, #e5c98f 0%, #8db7ff 100%);
}

.site-header-premium-home .main-nav a:hover {
  color: #ffffff;
}

.hero-banner-premium {
  min-height: 96vh;
  padding-top: 162px;
  padding-bottom: 62px;
  background:
    radial-gradient(circle at 18% 16%, rgba(28, 62, 108, 0.38), transparent 42%),
    radial-gradient(circle at 84% 12%, rgba(205, 166, 102, 0.14), transparent 36%),
    linear-gradient(180deg, #071325 0%, #081a31 48%, #081628 100%);
}

.hero-banner-premium .hero-banner-bg {
  --hero-bg-image: none;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: none;
  filter: saturate(1.02) contrast(1.02);
  opacity: 1;
}

.hero-banner-premium .hero-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero-banner-premium .hero-banner-overlay {
  background:
    radial-gradient(circle at 72% 24%, rgba(167, 128, 62, 0.16), transparent 42%),
    linear-gradient(105deg, rgba(6, 14, 26, 0.82) 0%, rgba(7, 16, 30, 0.48) 44%, rgba(7, 16, 30, 0.72) 100%);
}

.hero-banner-premium .hero-banner-content {
  min-height: 0;
  display: block;
}

.hero-banner-premium .hero-card {
  position: relative;
  min-height: clamp(480px, 72vh, 620px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 84px;
  align-items: center;
  overflow: visible;
  isolation: isolate;
}

.hero-banner-premium .hero-card::before {
  content: none;
}

.hero-banner-premium .hero-center {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  margin: 0 auto;
  text-align: center;
  justify-items: center;
  padding: 52px 0 44px;
  gap: 10px;
}

.hero-banner-premium .hero-kicker {
  margin: 0;
  color: #f2deb1;
  letter-spacing: 0.22em;
  font-size: clamp(0.78rem, 0.78vw, 0.92rem);
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 10px 18px rgba(3, 9, 18, 0.58);
}

.hero-banner-premium #heroBannerTitle {
  margin: 0;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  color: #f7fbff;
  text-transform: none;
  line-height: 1.04;
  letter-spacing: -0.018em;
  text-shadow: 0 16px 30px rgba(3, 9, 18, 0.72);
  text-wrap: balance;
}

.hero-banner-premium .hero-subtitle {
  max-width: 24ch;
  margin: 4px auto 0;
  color: #e9f2ff;
  font-size: clamp(1rem, 1.2vw, 1.28rem);
  line-height: 1.42;
  text-shadow: 0 12px 22px rgba(3, 9, 18, 0.58);
  text-wrap: balance;
}

.hero-banner-premium .hero-actions {
  margin-top: 14px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-banner-premium .hero-outline-btn {
  min-height: 46px;
  min-width: 154px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(229, 199, 143, 0.62);
  color: #ffffff;
  background: rgba(9, 21, 39, 0.24);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow:
    0 8px 16px rgba(5, 15, 32, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: clamp(0.96rem, 0.94vw, 1.05rem);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-banner-premium .hero-outline-btn:hover {
  background: rgba(12, 28, 50, 0.38);
  transform: translateY(-2px);
  box-shadow:
    0 12px 20px rgba(5, 15, 32, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-banner-premium .hero-arrow {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.94);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  font-size: 0;
  text-shadow: 0 8px 16px rgba(3, 9, 18, 0.52);
  transition: transform .22s ease, opacity .22s ease, color .22s ease;
  padding: 0;
}

.hero-banner-premium .hero-arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-banner-premium .hero-arrow::before {
  content: none;
}

.hero-banner-premium .hero-arrow:hover {
  transform: translateY(0) scale(1.03);
  color: #ffffff;
}

@media (hover: hover) and (pointer: fine) and (min-width: 781px) {
  .hero-banner-premium:hover .hero-arrow,
  .hero-banner-premium:focus-within .hero-arrow {
    opacity: .95;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.hero-banner-premium .hero-dots {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-banner-premium .hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(221, 231, 246, 0.58);
  cursor: pointer;
  padding: 0;
  transition: transform .2s ease, background .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.hero-banner-premium .hero-dot:hover {
  transform: scale(1.08);
  background: rgba(247, 251, 255, 0.92);
}

.hero-banner-premium .hero-dot.is-active {
  width: 12px;
  background: #e8c98b;
  opacity: 1;
  box-shadow: 0 2px 8px rgba(240, 211, 157, 0.34);
}

@media (min-width: 781px) {
  .hero-banner-premium .hero-dots {
    display: none;
  }
}

@media (max-width: 1024px) {
  .site-header-premium-home .nav-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-header-premium-home .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-header-premium-home .main-nav::-webkit-scrollbar {
    display: none;
  }

  .site-header-premium-home .header-inline-link {
    padding: 0 8px;
    font-size: 0.95rem;
  }

  .site-header-premium-home .header-inline-submenu {
    min-width: 230px;
  }

  .hero-banner-premium {
    padding-top: 150px;
  }

  .hero-banner-premium .hero-card {
    min-height: 540px;
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    border-radius: 28px;
  }

  .hero-banner-premium .hero-center {
    width: min(520px, 100%);
    padding: 34px 0;
  }

  .hero-banner-premium .hero-outline-btn {
    min-height: 52px;
    min-width: 190px;
    font-size: 1.08rem;
  }
}

@media (max-width: 780px) {
  .site-header-premium-home .nav-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
  }

  .site-header-premium-home .logo {
    min-width: 0;
    padding: 0;
  }

  .site-header-premium-home .logo-mark {
    font-size: 1.06rem;
    margin-right: 8px;
    padding-right: 8px;
  }

  .site-header-premium-home .logo-text {
    font-size: 0.84rem;
  }

  .site-header-premium-home .header-actions {
    gap: 6px;
  }

  .site-header-premium-home .header-action-link {
    min-height: 40px;
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .site-header-premium-home .header-action-link span {
    display: none;
  }

  .site-header-premium-home .header-inline-link {
    display: none;
  }

  .site-header-premium-home .header-inline-dropdown {
    display: none;
  }

  .site-header-premium-home .menu-toggle {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border-color: rgba(171, 197, 234, 0.38);
    background: rgba(16, 33, 57, 0.9);
  }

  .site-header-premium-home .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    width: 100%;
    margin-top: 0;
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(170, 196, 233, 0.26);
    background: linear-gradient(180deg, rgba(9, 21, 39, 0.98), rgba(9, 20, 35, 0.95));
    display: grid;
    gap: 0;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    overflow: hidden;
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-header-premium-home .main-nav {
    justify-content: initial;
  }

  .site-header-premium-home .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header-premium-home .main-nav .nav-link,
  .site-header-premium-home .main-nav > a {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border-top: 1px solid rgba(170, 196, 233, 0.16);
  }

  .site-header-premium-home .main-nav .nav-link-mobile-premium {
    gap: 8px;
  }

  .site-header-premium-home .main-nav .nav-link-mobile-premium .nav-link-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .site-header-premium-home .main-nav .nav-link-mobile-premium .nav-link-icon svg {
    width: 18px;
    height: 18px;
    stroke: #f0cd8d;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .site-header-premium-home .main-nav .nav-link-mobile-parent {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .site-header-premium-home .main-nav .nav-link-mobile-parent .nav-link-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .site-header-premium-home .main-nav .nav-link-mobile-parent .nav-link-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .site-header-premium-home .main-nav .nav-link-mobile-parent .nav-link-icon svg {
    width: 18px;
    height: 18px;
    stroke: #f0cd8d;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .site-header-premium-home .main-nav .nav-link-mobile-parent .nav-link-chevron {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .site-header-premium-home .main-nav .nav-link-mobile-parent .nav-link-chevron svg {
    width: 16px;
    height: 16px;
    stroke: #f0cd8d;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .site-header-premium-home .main-nav .nav-item:first-child .nav-link,
  .site-header-premium-home .main-nav > a:first-child {
    border-top: 0;
  }

  .site-header-premium-home .main-nav .nav-dropdown {
    display: none !important;
  }

  .hero-banner-premium {
    min-height: 100svh;
    padding-top: 88px;
    padding-bottom: 32px;
  }

  .hero-banner-premium .hero-banner-overlay {
    background:
      radial-gradient(circle at 50% -6%, rgba(247, 208, 136, 0.2), transparent 48%),
      linear-gradient(180deg, rgba(6, 16, 30, 0.72), rgba(7, 17, 31, 0.58));
  }

  .hero-banner-premium .hero-banner-bg::after {
    display: none;
  }

  .hero-banner-premium .hero-card {
    min-height: calc(100svh - 120px);
    grid-template-columns: 1fr;
    border-radius: 0;
    padding: 36px 20px 28px;
    background: transparent;
  }

  .hero-banner-premium .hero-center {
    width: 100%;
    max-width: 100%;
    padding: 2px 0 0;
    text-align: center;
    justify-items: center;
    gap: 8px;
  }

  .hero-banner-premium #heroBannerTitle {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    text-wrap: balance;
    line-height: 1.06;
  }

  .hero-banner-premium .hero-subtitle {
    max-width: 21ch;
    font-size: clamp(0.95rem, 4.2vw, 1.18rem);
    line-height: 1.38;
    text-wrap: balance;
  }

  .hero-banner-premium .hero-outline-btn {
    min-height: 42px;
    width: min(100%, 160px);
    font-size: 0.94rem;
    border-radius: 10px;
  }

  .hero-banner-premium .hero-dots {
    display: none;
  }

  .hero-banner-premium .hero-arrow {
    display: none;
  }
}

@media (max-width: 420px) {
  .site-header-premium-home .logo-text {
    font-size: 0.8rem;
  }

  .site-header-premium-home .logo-mark {
    margin-right: 7px;
    padding-right: 7px;
  }

  .hero-banner-premium .hero-card {
    border-radius: 0;
    padding: 24px 16px 20px;
  }

  .hero-banner-premium #heroBannerTitle {
    font-size: clamp(1.72rem, 8.8vw, 2.4rem);
  }
}

@media (min-width: 781px) {
  .site-header-premium-home .header-actions .header-inline-link {
    font-weight: 600;
  }

  .site-header-premium-home .header-actions .header-inline-link span {
    font-weight: 600;
  }
}
