:root {
  --navy-950: #020b0f;
  --navy-900: #031217;
  --navy-850: #061b24;
  --navy-800: #092a34;
  --navy-700: #0d3440;
  --gold-600: #b9862c;
  --gold-500: #d6a64f;
  --gold-300: #f2c46d;
  --white: #ffffff;
  --off-white: #f5f1e8;
  --muted: #d8d8d8;
  --line: rgba(214, 166, 79, 0.28);
  --surface: rgba(9, 42, 52, 0.62);
  --surface-strong: rgba(3, 18, 23, 0.82);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --max: 1240px;
  --font-heading: "Cinzel", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--off-white);
  background:
    radial-gradient(circle at 12% 8%, rgba(214, 166, 79, 0.13), transparent 24rem),
    radial-gradient(circle at 80% 22%, rgba(13, 52, 64, 0.9), transparent 31rem),
    linear-gradient(180deg, var(--navy-950), var(--navy-850) 38%, var(--navy-900));
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 88%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.35;
  background-image: radial-gradient(rgba(245, 241, 232, 0.12) 0.8px, transparent 0.8px);
  background-size: 4px 4px;
}

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

svg {
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 92px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--gold-300);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(214, 166, 79, 0.16);
  background: rgba(2, 11, 15, 0.74);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-weight: 700;
}

.brand-text {
  display: grid;
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--gold-300);
  font-weight: 400;
  letter-spacing: 0;
}

.brand-oab {
  margin-top: 2px;
  color: rgba(245, 241, 232, 0.82);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(245, 241, 232, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 200ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-300);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(214, 166, 79, 0.32);
  background: rgba(9, 42, 52, 0.72);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-300);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-gold {
  color: #07171d;
  background: linear-gradient(135deg, var(--gold-300), #f0a72a 62%, var(--gold-600));
  box-shadow: 0 16px 42px rgba(214, 166, 79, 0.24);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  box-shadow: 0 18px 52px rgba(242, 196, 109, 0.35);
}

.btn-outline {
  border-color: rgba(245, 241, 232, 0.26);
  color: var(--off-white);
  background: rgba(255, 255, 255, 0.04);
}

.btn-small {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 14px;
}

.hero {
  min-height: calc(112dvh - 76px);
  display: block;
  padding-top: 72px;
  padding-bottom: 86px;
  overflow: hidden;
  background: url("assets/hero-trabalhista-escritorio-v2.png") center center / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(112dvh - 250px);
  display: flex;
  align-items: center;
}

.hero-mobile-media,
.hero-mobile-actions {
  display: none;
}

.two-col {
  display: grid;
  grid-template-columns: 1.02fr 0.86fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

h3 {
  line-height: 1.14;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6.2vw, 5.25rem);
}

h1 span {
  display: block;
}

.hero-title-main {
  font-family: var(--font-heading);
  font-weight: 400;
}

.hero-title-sub {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
}

h2 {
  max-width: 850px;
  font-size: clamp(2.05rem, 4.4vw, 3.85rem);
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-text,
.hero-support,
.section-copy p,
.section-head p,
.contact-panel p,
.final-panel p {
  max-width: 660px;
  color: rgba(245, 241, 232, 0.78);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  border: 1px solid rgba(214, 166, 79, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(245, 241, 232, 0.82);
  background: rgba(9, 42, 52, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.ambient {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(214, 166, 79, 0.2);
  opacity: 0.4;
}

.ambient-one {
  right: -150px;
  top: 180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
}

.support-strip {
  position: relative;
  z-index: 1;
  padding: 64px 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(214, 166, 79, 0.14), transparent 24rem),
    linear-gradient(180deg, #fffaf0, var(--off-white));
}

.topic-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(242, 196, 109, 0.54);
  border-bottom: 1px solid rgba(242, 196, 109, 0.54);
  background: var(--navy-850);
}

.topic-ticker-track {
  display: inline-flex;
  width: max-content;
  min-width: 200%;
  align-items: center;
  padding: 13px 0;
  animation: topicTicker 32s linear infinite;
  white-space: nowrap;
}

.topic-ticker span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.topic-ticker i {
  display: inline-block;
  padding: 0 18px;
  color: var(--gold-300);
  font-style: normal;
  font-weight: 800;
}

@keyframes topicTicker {
  from {
    transform: translateX(0);
  }

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

.support-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.support-card,
.feature-card,
.right-card,
.testimonial-card,
.metric,
.quote-panel,
.contact-panel,
.final-panel {
  border: 1px solid rgba(214, 166, 79, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(9, 42, 52, 0.72), rgba(3, 18, 23, 0.76));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.support-card:hover,
.feature-card:hover,
.right-card:hover,
.testimonial-card:hover,
.metric:hover {
  border-color: rgba(242, 196, 109, 0.56);
  transform: translateY(-5px);
}

.support-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  border-color: rgba(214, 166, 79, 0.62);
  background:
    radial-gradient(circle at 0% 0%, rgba(13, 52, 64, 0.9), transparent 18rem),
    linear-gradient(180deg, rgba(6, 27, 36, 0.96), rgba(2, 11, 15, 0.96));
}

.support-card p {
  margin: 0 0 12px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.support-card h2 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.08;
}

.support-card span,
.feature-card p,
.right-card p,
.testimonial-card p,
.quote-panel p,
.metric span,
.note,
.site-footer p,
.site-footer small {
  color: rgba(245, 241, 232, 0.72);
}

.support-card a,
.right-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: auto;
  color: var(--gold-300);
  font-weight: 800;
}

.support-card a {
  margin-top: 26px;
  border: 1px solid rgba(242, 196, 109, 0.72);
  border-radius: 999px;
  padding: 8px 18px;
}

.about {
  color: var(--navy-900);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 166, 79, 0.16), transparent 22rem),
    linear-gradient(180deg, #fffaf0, var(--off-white));
}

.about::before,
.rights::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: radial-gradient(rgba(3, 18, 23, 0.18) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
}

.about > .container,
.rights > .container,
.final-cta > .container {
  position: relative;
  z-index: 1;
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) 1fr;
  align-items: stretch;
  gap: clamp(30px, 5vw, 72px);
  margin-bottom: 34px;
}

.about-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(rgba(2, 11, 15, 0.5), rgba(2, 11, 15, 0.72)),
    radial-gradient(circle at 62% 24%, rgba(242, 196, 109, 0.34), transparent 15rem),
    linear-gradient(180deg, rgba(13, 52, 64, 0.7), rgba(2, 11, 15, 0.94));
  box-shadow: 0 24px 70px rgba(3, 18, 23, 0.2);
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-photo::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image: radial-gradient(rgba(245, 241, 232, 0.34) 0.8px, transparent 0.8px);
  background-size: 5px 5px;
}

.office-card {
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 46px);
}

.office-card::after {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px solid rgba(242, 196, 109, 0.28);
  border-radius: 22px;
}

.office-card-inner {
  position: relative;
  z-index: 2;
  max-width: 440px;
}

.office-card-inner h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 400;
  line-height: 0.96;
}

.office-lines {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.office-lines span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 196, 109, 0.35);
  border-radius: var(--radius);
  color: rgba(245, 241, 232, 0.82);
  background: rgba(2, 11, 15, 0.4);
  font-size: 0.88rem;
  font-weight: 800;
}

.photo-signature {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  gap: 4px;
  max-width: calc(100% - 56px);
  padding: 14px 16px;
  border: 1px solid rgba(214, 166, 79, 0.46);
  border-radius: var(--radius);
  color: var(--off-white);
  background: rgba(3, 18, 23, 0.72);
  backdrop-filter: blur(12px);
}

.photo-signature strong {
  color: var(--white);
  font-size: 1rem;
}

.photo-signature span {
  color: rgba(245, 241, 232, 0.68);
  font-size: 0.9rem;
}

.about-content h2,
.about-content .signature strong {
  color: var(--navy-900);
}

.about-content h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.about .eyebrow,
.rights .eyebrow {
  color: var(--gold-600);
}

.about-content p,
.about-content .signature span {
  color: rgba(3, 18, 23, 0.72);
}

.about-callouts {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.about-callouts div,
.about .metric {
  border: 1px solid rgba(214, 166, 79, 0.46);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(13, 52, 64, 0.9), transparent 18rem),
    linear-gradient(180deg, rgba(6, 27, 36, 0.97), rgba(2, 11, 15, 0.97));
  box-shadow: 0 18px 46px rgba(3, 18, 23, 0.16);
}

.about-callouts div {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
}

.about-callouts strong {
  color: var(--white);
  font-size: 1.02rem;
  line-height: 1.3;
}

.about-callouts span {
  color: rgba(245, 241, 232, 0.68);
}

.section-copy .btn {
  margin-top: 20px;
}

.quote-panel {
  padding: 38px;
  border-color: rgba(214, 166, 79, 0.45);
}

.quote-panel h3 {
  font-family: var(--font-heading);
  color: var(--gold-300);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.signature {
  display: grid;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(214, 166, 79, 0.24);
}

.signature span {
  color: rgba(245, 241, 232, 0.66);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.metric {
  min-height: 132px;
  padding: 22px;
}

.metric strong {
  display: block;
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.95;
}

.about-action {
  margin-top: 30px;
}

.about .metric span {
  color: rgba(245, 241, 232, 0.72);
}

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

.process .section-head h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.35vw, 3.05rem);
}

.process .section-head h2 span {
  color: var(--gold-300);
}

.center {
  text-align: center;
}

.center h2,
.center p {
  margin-inline: auto;
}

.feature-card,
.right-card,
.testimonial-card {
  padding: 28px;
}

.icon-box {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(214, 166, 79, 0.46);
  border-radius: var(--radius);
  color: var(--gold-300);
  background: rgba(214, 166, 79, 0.08);
}

.icon-box svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.whatsapp-section {
  padding-block: 72px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 5vw, 58px);
  border-color: rgba(242, 196, 109, 0.52);
  background:
    radial-gradient(circle at 80% 0%, rgba(242, 196, 109, 0.2), transparent 24rem),
    linear-gradient(135deg, rgba(9, 42, 52, 0.92), rgba(2, 11, 15, 0.9));
}

.steps {
  display: grid;
  gap: 12px;
}

.steps span {
  min-height: 58px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--off-white);
  background: rgba(2, 11, 15, 0.34);
  font-weight: 700;
}

.steps svg {
  width: 26px;
  height: 26px;
  color: var(--gold-300);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-wide {
  width: fit-content;
}

.microcopy {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(245, 241, 232, 0.68);
}

.testimonial-grid {
  grid-template-columns: repeat(4, 1fr);
}

.testimonial-card::before {
  content: "“";
  display: block;
  color: var(--gold-300);
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 0.7;
}

.testimonial-card div {
  display: grid;
  gap: 2px;
  margin-top: 22px;
}

.testimonial-card span {
  color: rgba(245, 241, 232, 0.58);
  font-size: 14px;
}

.note {
  margin-top: 20px;
  font-size: 14px;
}

.rights {
  color: var(--navy-900);
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(214, 166, 79, 0.16), transparent 22rem),
    linear-gradient(180deg, #fffaf0, var(--off-white));
}

.rights h2 {
  color: var(--navy-900);
}

.rights .section-head p {
  color: rgba(3, 18, 23, 0.7);
}

.rights-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 16px;
}

.right-card {
  min-height: 224px;
  display: flex;
  flex-direction: column;
}

.right-card h3 {
  font-size: 1.08rem;
}

.rights .right-card {
  border-color: rgba(214, 166, 79, 0.46);
  background:
    radial-gradient(circle at 0% 0%, rgba(13, 52, 64, 0.88), transparent 18rem),
    linear-gradient(180deg, rgba(6, 27, 36, 0.97), rgba(2, 11, 15, 0.96));
  box-shadow: 0 18px 46px rgba(3, 18, 23, 0.18);
}

.rights .right-card:hover {
  border-color: rgba(185, 134, 44, 0.48);
}

.rights .right-card a {
  color: var(--gold-300);
}

.rights .right-card h3 {
  color: var(--white);
}

.rights .right-card p {
  color: rgba(245, 241, 232, 0.7);
}

.rights .icon-box {
  color: var(--gold-600);
  background: rgba(214, 166, 79, 0.12);
}

.right-card-featured {
  grid-column: span 2;
  min-height: 224px;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.34), transparent 15rem),
    linear-gradient(135deg, var(--gold-300), #d99a2b 62%, var(--gold-600)) !important;
  border-color: rgba(185, 134, 44, 0.78) !important;
  box-shadow: 0 26px 66px rgba(185, 134, 44, 0.28);
}

.rights .right-card-featured h3,
.rights .right-card-featured p {
  color: var(--navy-950);
}

.right-card-featured h3 {
  max-width: 12ch;
  font-size: clamp(1.55rem, 2.25vw, 2.15rem);
  line-height: 1.04;
}

.right-card-featured p {
  max-width: 44ch;
  font-weight: 650;
}

.right-card-featured p + p {
  margin-top: 4px;
  font-weight: 500;
}

.rights .right-card-featured .icon-box {
  color: var(--navy-950);
  background: rgba(2, 11, 15, 0.08);
  border-color: rgba(2, 11, 15, 0.24);
}

.right-card a {
  margin-top: auto;
}

.health-section {
  padding-block: 72px;
  background: var(--off-white);
}

.health-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  align-items: stretch;
  gap: clamp(28px, 4vw, 54px);
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(214, 166, 79, 0.48);
  border-radius: 28px;
  color: var(--off-white);
  background:
    radial-gradient(circle at 12% 0%, rgba(242, 196, 109, 0.17), transparent 22rem),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
  box-shadow: 0 24px 70px rgba(3, 18, 23, 0.2);
}

.health-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.health-copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.health-copy p {
  max-width: 690px;
  color: rgba(245, 241, 232, 0.75);
}

.health-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin: 18px 0 26px;
}

.health-points span {
  min-height: 52px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(242, 196, 109, 0.32);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: rgba(245, 241, 232, 0.82);
  background: rgba(2, 11, 15, 0.34);
  font-weight: 700;
}

.health-copy small {
  margin-top: 16px;
  color: rgba(245, 241, 232, 0.64);
}

.health-photo {
  min-height: 480px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--navy-950);
}

.health-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.faq-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 86% 10%, rgba(242, 196, 109, 0.14), transparent 22rem),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

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

.faq-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(214, 166, 79, 0.32);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(13, 52, 64, 0.76), transparent 18rem),
    linear-gradient(180deg, rgba(6, 27, 36, 0.92), rgba(2, 11, 15, 0.9));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.faq-card h3 {
  color: var(--gold-300);
}

.faq-card p {
  color: rgba(245, 241, 232, 0.72);
}

.final-cta {
  padding-top: 58px;
  background: var(--off-white);
}

.final-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 76px);
  text-align: center;
  border-radius: 28px;
  border-color: rgba(242, 196, 109, 0.6);
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 196, 109, 0.24), transparent 21rem),
    linear-gradient(135deg, var(--navy-800), var(--navy-950));
}

.final-panel h2,
.final-panel p {
  margin-inline: auto;
}

.final-panel .btn {
  margin-top: 18px;
}

.final-panel span {
  display: block;
  margin-top: 20px;
  color: rgba(245, 241, 232, 0.68);
}

.site-footer {
  padding: 58px 0 28px;
  color: var(--off-white);
  border-top: 1px solid rgba(214, 166, 79, 0.18);
  background: #020b0f;
}

.site-footer .brand-text,
.site-footer .footer-bottom {
  color: var(--off-white);
}

.site-footer p,
.site-footer small {
  color: rgba(245, 241, 232, 0.68);
}

.site-footer small {
  display: block;
  margin-top: 6px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: rgba(245, 241, 232, 0.74);
  font-size: 14px;
}

.footer-links a {
  color: var(--gold-300);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 241, 232, 0.08);
  color: rgba(245, 241, 232, 0.42);
  font-size: 13px;
}

.reveal {
  transition: opacity 520ms ease, transform 520ms ease;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.has-js .reveal.is-visible,
.reveal {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

  .two-col,
  .about-showcase,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 500px;
    max-width: 620px;
  }

  .support-grid,
  .process-grid,
  .rights-grid,
  .testimonial-grid,
  .faq-grid,
  .health-panel {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .right-card-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 58px 0;
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .menu-toggle,
  .main-nav {
    display: none !important;
  }

  .header-cta {
    display: inline-flex !important;
    min-height: 42px;
    padding: 10px 13px;
    font-size: 12px;
    white-space: nowrap;
  }

  .header-cta svg {
    width: 16px;
    height: 16px;
  }

  .brand-text {
    font-size: 12px;
  }

  h1 {
    font-size: clamp(2.2rem, 10.2vw, 3rem);
    line-height: 0.94;
    max-width: 100%;
  }

  .hero-copy {
    max-width: 34rem;
    width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .hero-text {
    max-width: 31rem;
    margin-inline: 0;
    color: rgba(3, 18, 23, 0.72);
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .hero-support {
    color: rgba(3, 18, 23, 0.72);
    font-size: 0.94rem;
  }

  h2 {
    line-height: 0.96;
  }

  .hero {
    min-height: auto;
    padding: 0 0 0;
    color: var(--navy-900);
    background: linear-gradient(180deg, #fffaf0, var(--off-white));
  }

  .hero-grid {
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-inline: 0;
    padding: 34px 14px 0;
    background: transparent;
  }

  .hero .eyebrow {
    color: var(--gold-600);
  }

  .hero h1,
  .hero-title-main,
  .hero-title-sub {
    color: var(--navy-900);
  }

  .hero-title-main {
    display: block;
  }

  .hero-title-sub {
    display: block;
    margin-top: 8px;
    font-size: clamp(1.7rem, 7vw, 2.35rem);
    line-height: 1.05;
  }

  .hero-copy .hero-actions {
    display: none;
  }

  .hero-mobile-media {
    display: block;
    width: 100vw;
    height: clamp(340px, 46svh, 460px);
    min-height: 340px;
    margin: 22px calc(50% - 50vw) 0;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
    background:
      linear-gradient(180deg, rgba(2, 11, 15, 0.04), rgba(2, 11, 15, 0.54)),
      url("assets/hero-trabalhista-escritorio-v2.png") right center / cover no-repeat;
  }

  .hero-mobile-actions {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: max(72px, env(safe-area-inset-bottom));
    z-index: 80;
    display: flex;
    width: auto;
    margin: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.hero-cta-visible .hero-mobile-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-mobile-actions .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .btn:not(.header-cta),
  .hero-actions .btn,
  .section-action .btn,
  .about-action .btn,
  .final-panel .btn,
  .health-copy .btn,
  .btn-wide {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .hero-actions .btn-outline,
  .trust-row {
    display: none;
  }

  .about-photo {
    min-height: auto;
  }

  .support-strip {
    margin-top: 0;
    padding: 42px 0;
  }

  .topic-ticker-track {
    padding: 11px 0;
    animation-duration: 24s;
  }

  .topic-ticker span {
    font-size: 0.76rem;
  }

  .topic-ticker i {
    padding: 0 12px;
  }

  .support-card,
  .feature-card,
  .right-card,
  .testimonial-card {
    padding: 22px;
  }

  .support-card {
    min-height: auto;
  }

  .support-card a {
    margin-top: 20px;
  }

  .feature-card {
    min-height: auto;
  }

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

  .section-action,
  .about-action {
    margin-top: 24px;
    padding-inline: 14px;
  }

  .whatsapp-section {
    padding-block: 52px;
  }

  .contact-panel,
  .final-panel {
    padding: 28px 20px;
  }

  .contact-panel {
    gap: 22px;
  }

  .steps {
    gap: 10px;
  }

  .steps span {
    min-height: 52px;
  }

  .support-grid,
  .process-grid,
  .rights-grid,
  .testimonial-grid,
  .faq-grid,
  .health-panel,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .right-card {
    min-height: auto;
  }

  .right-card-featured {
    grid-column: auto;
    padding: 26px;
  }

  .right-card-featured h3 {
    max-width: 13ch;
  }

  .rights-grid {
    gap: 14px;
  }

  .office-lines {
    grid-template-columns: 1fr;
  }

  .office-card {
    padding: 38px 38px;
  }

  .office-card::after {
    inset: 16px 20px;
  }

  .office-card-inner h3 {
    font-size: clamp(1.45rem, 7.1vw, 2.05rem);
    line-height: 1.04;
  }

  .office-lines span {
    min-height: 48px;
  }

  .faq-card {
    min-height: auto;
  }

  .health-section {
    padding-block: 46px;
  }

  .health-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .health-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .health-points {
    grid-template-columns: 1fr;
  }

  .health-photo {
    min-height: 360px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer-links span {
    max-width: 100%;
  }

}

@media (max-width: 430px) {
  .brand-text {
    max-width: 130px;
  }

  .about-photo {
    min-height: auto;
  }

  .office-card {
    padding: 38px 36px;
  }

  .office-card-inner {
    max-width: 100%;
  }

  .photo-signature {
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
  }

  .hero-mobile-actions {
    left: 18px;
    right: 18px;
  }

  .btn {
    padding-inline: 18px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
