:root {
  --color-navy-deep: #07131F;
  --color-navy: #0D1B2A;
  --color-gold: #C8A24A;
  --color-gold-light: #E6C878;
  --color-off-white: #F7F4EC;
  --color-text: #B8C0CC;
  --color-text-dark: #263242;
  --color-gray-dark: #1C2633;
  --color-white: #FFFFFF;
  --color-black-soft: #050A10;
  --color-success: #18A558;

  --font-title: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;

  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 18px 45px rgba(7, 19, 31, 0.12);
  --shadow-gold: 0 18px 35px rgba(200, 162, 74, 0.22);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --transition: 260ms ease;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--color-gold);
  color: var(--color-navy-deep);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background:
    radial-gradient(circle at 20% 15%, rgba(200, 162, 74, 0.16), transparent 26%),
    radial-gradient(circle at 86% 10%, rgba(230, 200, 120, 0.12), transparent 28%),
    linear-gradient(135deg, var(--color-navy-deep), var(--color-navy));
  color: var(--color-white);
}

.section-soft {
  background: linear-gradient(180deg, #fffaf0, #f1ede4);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(7, 19, 31, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 200, 120, 0.16);
  transition: var(--transition);
}

.site-header.scrolled {
  height: 72px;
  background: rgba(7, 19, 31, 0.94);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brand-text {
  display: grid;
  line-height: 1.15;
  color: var(--color-white);
}

.brand-text strong {
  font-family: var(--font-title);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--color-gold-light);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a:not(.btn) {
  position: relative;
  padding: 8px 0;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold-light);
  transition: var(--transition);
}

.main-nav a:not(.btn):hover,
.main-nav a:not(.btn):focus-visible {
  color: var(--color-white);
}

.main-nav a:not(.btn):hover::after,
.main-nav a:not(.btn):focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(230, 200, 120, 0.38);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-white);
  transition: var(--transition);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy-deep);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 44px rgba(200, 162, 74, 0.32);
}

.btn-secondary {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(230, 200, 120, 0.42);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.13);
}

.btn-header {
  min-height: 42px;
  padding: 10px 18px;
  color: var(--color-navy-deep);
  background: var(--color-gold-light);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 88px) 0 90px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 85%);
  pointer-events: none;
}


/* HERO BACKGROUND - IMAGEM INSTITUCIONAL */
.hero.section-dark {
  background:
    linear-gradient(90deg, rgba(7, 19, 31, 0.88) 0%, rgba(7, 19, 31, 0.80) 38%, rgba(7, 19, 31, 0.58) 66%, rgba(7, 19, 31, 0.72) 100%),
    linear-gradient(180deg, rgba(7, 19, 31, 0.20) 0%, rgba(7, 19, 31, 0.72) 100%),
    url("../img/hero-bg-law-office.webp") center center / cover no-repeat;
}

.hero::before {
  z-index: 0;
  opacity: 0.18;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 22%, rgba(230, 200, 120, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(7, 19, 31, 0.02), rgba(7, 19, 31, 0.22));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 56px;
  align-items: center;
  z-index: 2;
}

.hero-content h1,
.section-heading h2,
.contact-copy h2,
.social-inner h2 {
  font-family: var(--font-title);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-content h1 {
  max-width: 850px;
  font-size: clamp(3rem, 7vw, 5.95rem);
}

.hero-subtitle {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--color-gold-light);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

.hero-note {
  max-width: 680px;
  margin-top: 28px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(230, 200, 120, 0.22);
  border-radius: var(--radius-md);
}

.hero-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(230, 200, 120, 0.26);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 220px;
  height: 220px;
  background: rgba(200, 162, 74, 0.18);
  border-radius: 50%;
  filter: blur(5px);
}

.hero-card-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 22px;
  background: rgba(230, 200, 120, 0.15);
  color: var(--color-gold-light);
  font-size: 2rem;
}

.hero-card h2 {
  position: relative;
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1.15;
  z-index: 1;
}

.hero-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.hero-card-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-card-list span,
.documents-list span {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(230, 200, 120, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.8;
}

.hero-glow-one {
  width: 240px;
  height: 240px;
  left: -100px;
  top: 22%;
  background: rgba(200, 162, 74, 0.18);
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: 10%;
  background: rgba(230, 200, 120, 0.12);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.contact-copy h2,
.social-inner h2 {
  color: var(--color-navy-deep);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: var(--color-white);
}

.section-heading p,
.contact-copy p,
.social-inner p {
  margin: 18px 0 0;
  color: #5a6677;
  font-size: 1.06rem;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.cards-grid {
  display: grid;
  gap: 22px;
}

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

.areas-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.mini-card,
.contact-form,
.feature-panel,
.timeline-item,
.differential,
.contact-highlight {
  border: 1px solid rgba(200, 162, 74, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.card {
  padding: 26px;
  min-height: 250px;
}

.card:hover,
.mini-card:hover,
.timeline-item:hover,
.differential:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 162, 74, 0.58);
  box-shadow: 0 24px 60px rgba(7, 19, 31, 0.16);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200, 162, 74, 0.16), rgba(230, 200, 120, 0.11));
  font-size: 1.7rem;
}

.card h3,
.mini-card h3,
.timeline-item h3,
.differential h3 {
  margin: 0 0 10px;
  color: var(--color-navy-deep);
  font-size: 1.08rem;
  line-height: 1.25;
}

.card p,
.mini-card p,
.timeline-item p,
.differential p {
  margin: 0;
  color: #647184;
  font-size: 0.96rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 52px;
  align-items: center;
}

.align-left .btn {
  margin-top: 26px;
}

.feature-panel {
  padding: 18px;
  background: var(--color-white);
}

.feature-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
}

.feature-item + .feature-item {
  border-top: 1px solid rgba(7, 19, 31, 0.08);
}

.feature-item strong {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--color-navy-deep);
  color: var(--color-gold-light);
  font-family: var(--font-title);
  font-size: 1.28rem;
}

.feature-item span {
  color: #364254;
  font-weight: 700;
}

.mini-card {
  padding: 24px;
  background: var(--color-white);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.differential {
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(230, 200, 120, 0.22);
}

.differential span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-gold-light);
  font-size: 1.5rem;
}

.differential h3 {
  color: var(--color-white);
}

.differential p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 162, 74, 0.5), transparent);
}

.timeline-item {
  position: relative;
  z-index: 1;
  padding: 28px;
  background: var(--color-white);
}

.timeline-item span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy-deep);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: var(--shadow-gold);
}

.documents-grid {
  align-items: start;
}

.documents-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--color-navy-deep);
  box-shadow: var(--shadow-soft);
}

.documents-list span {
  background: rgba(255, 255, 255, 0.08);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(7, 19, 31, 0.96), rgba(13, 27, 42, 0.96)),
    radial-gradient(circle at 15% 20%, rgba(200, 162, 74, 0.15), transparent 22%);
  color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 52px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy h2,
.contact-copy p {
  color: var(--color-white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-highlight {
  margin: 26px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(230, 200, 120, 0.24);
}

.contact-highlight strong,
.contact-highlight span {
  display: block;
}

.contact-highlight strong {
  color: var(--color-gold-light);
  margin-bottom: 6px;
}

.contact-highlight span {
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  padding: 32px;
  background: var(--color-white);
  color: var(--color-text-dark);
}

.form-row {
  margin-bottom: 18px;
}

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

label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-navy-deep);
  font-weight: 800;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(7, 19, 31, 0.15);
  border-radius: 14px;
  padding: 14px 15px;
  background: #fbfaf6;
  color: var(--color-navy-deep);
  outline: none;
  transition: var(--transition);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(200, 162, 74, 0.14);
  background: var(--color-white);
}

.form-row small,
.form-disclaimer {
  display: block;
  margin-top: 8px;
  color: #6d7787;
  font-size: 0.86rem;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 18px 0 22px;
  color: #4b5668;
  font-weight: 500;
  font-size: 0.92rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-gold);
}

.checkbox-row a {
  color: var(--color-navy-deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(200, 162, 74, 0.5);
}

.btn-full {
  width: 100%;
  border: 0;
}

.honeypot {
  display: none !important;
}

.social-section {
  padding: 80px 0;
  background: var(--color-off-white);
}

.social-inner {
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.social-links a {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 162, 74, 0.28);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-5px) rotate(-2deg);
  background: var(--color-navy-deep);
  border-color: var(--color-gold-light);
}

.social-links svg {
  width: 26px;
  height: 26px;
  fill: var(--color-navy-deep);
  transition: var(--transition);
}

.social-links a:hover svg,
.social-links a:focus-visible svg {
  fill: var(--color-gold-light);
}

.site-footer {
  padding: 62px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--color-black-soft);
}

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

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
}

.footer-brand span {
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 1.18rem;
  font-weight: 800;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--color-gold-light);
  font-size: 1rem;
}

.site-footer p {
  margin: 12px 0;
}

.site-footer a {
  display: table;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.82);
  transition: var(--transition);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.ethical-note {
  max-width: 520px;
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.36);
  animation: pulseWhats 2.4s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

@keyframes pulseWhats {
  0%, 100% { transform: scale(1); box-shadow: 0 16px 36px rgba(34, 197, 94, 0.36); }
  50% { transform: scale(1.05); box-shadow: 0 18px 46px rgba(34, 197, 94, 0.52); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 120ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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

@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
  }

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

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

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .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);
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 2px;
    padding: 18px;
    border: 1px solid rgba(230, 200, 120, 0.22);
    border-radius: 22px;
    background: rgba(7, 19, 31, 0.98);
    box-shadow: var(--shadow-soft);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

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

  .main-nav a {
    padding: 12px 10px !important;
  }

  .btn-header {
    margin-top: 8px;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 58px);
  }

  .section {
    padding: 74px 0;
  }

  .hero-actions {
    display: grid;
  }

  .hero-card {
    padding: 26px;
  }

  .timeline::before {
    display: none;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
    text-align: left;
  }

  .ethical-note {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .pain-grid,
  .areas-grid,
  .differentials-grid,
  .timeline,
  .form-row.two-columns {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .hero-content h1 {
    font-size: clamp(2.45rem, 14vw, 3.7rem);
  }

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

  .contact-form {
    padding: 22px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 16px;
    bottom: 16px;
  }
}


.simple-page .simple-hero {
  min-height: 100vh;
}

.privacy-page {
  padding-top: calc(var(--header-height) + 72px);
  background: var(--color-off-white);
}

.privacy-content {
  max-width: 880px;
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.privacy-content h1,
.privacy-content h2 {
  color: var(--color-navy-deep);
  font-family: var(--font-title);
  line-height: 1.12;
}

.privacy-content h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.privacy-content h2 {
  margin: 34px 0 10px;
  font-size: 1.55rem;
}

.privacy-content p {
  color: #566274;
}

.privacy-content a:not(.btn) {
  color: var(--color-navy-deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(200, 162, 74, 0.5);
}

@media (max-width: 860px) {
  .privacy-nav {
    position: static;
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 620px) {
  .privacy-content {
    padding: 26px;
  }
}


/* SEO local e conteúdos */
.local-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(200, 162, 74, 0.10), transparent 26%),
    var(--color-off-white);
}

.local-card,
.sidebar-card,
.article-cta {
  border: 1px solid rgba(200, 162, 74, 0.25);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  padding: 28px;
}

.local-card h3,
.sidebar-card h2,
.article-cta h2 {
  font-family: var(--font-title);
  color: var(--color-navy-deep);
  margin: 0 0 14px;
}

.small-note {
  font-size: 0.92rem;
  color: #667085;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--color-navy-deep);
  font-weight: 800;
  text-decoration: none;
  transition: color var(--transition);
}

.text-link::after {
  content: "→";
  color: var(--color-gold);
  transition: transform var(--transition);
}

.text-link:hover {
  color: var(--color-gold);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.article-hero {
  padding-top: calc(var(--header-height) + 76px);
  padding-bottom: 76px;
}

.article-hero h1 {
  max-width: 980px;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.05;
  color: var(--color-white);
  margin: 16px 0 22px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.breadcrumb a {
  color: var(--color-gold-light);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.article-section {
  background: var(--color-off-white);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.article-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(26px, 5vw, 54px);
}

.article-content h2 {
  font-family: var(--font-title);
  color: var(--color-navy-deep);
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  margin: 34px 0 12px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p {
  color: #344054;
  font-size: 1.04rem;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 22px;
}

.article-sidebar ul {
  padding-left: 20px;
  margin: 0;
}

.article-sidebar li {
  margin-bottom: 10px;
  color: #344054;
}

.article-sidebar a {
  color: var(--color-navy-deep);
  text-decoration: none;
  font-weight: 700;
}

.article-sidebar a:hover {
  color: var(--color-gold);
}

.article-cta {
  margin-top: 38px;
  background:
    linear-gradient(135deg, rgba(200, 162, 74, 0.12), rgba(7, 19, 31, 0.04)),
    var(--color-white);
}

.article-note {
  margin-top: 26px;
}

@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}


/* Ajuste mobile da imagem hero institucional */
@media (max-width: 768px) {
  .hero.section-dark {
    background:
      linear-gradient(180deg, rgba(7, 19, 31, 0.90) 0%, rgba(7, 19, 31, 0.82) 54%, rgba(7, 19, 31, 0.92) 100%),
      url("../img/hero-bg-law-office.webp") center top / cover no-repeat;
  }
}


/* =========================================================
   Sistema visual premium para páginas de conteúdo
   ========================================================= */

.article-page-premium {
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 162, 74, 0.10), transparent 28%),
    linear-gradient(180deg, #f7f4ec 0%, #f1ede4 100%);
}

.premium-article-hero {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: calc(var(--header-height) + 72px) 0 86px;
  isolation: isolate;
}

.premium-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 31, 0.98) 0%, rgba(7, 19, 31, 0.90) 48%, rgba(7, 19, 31, 0.76) 100%),
    radial-gradient(circle at 72% 20%, rgba(200, 162, 74, 0.18), transparent 28%),
    url("../img/hero-bg-law-office.webp") center center / cover no-repeat;
  opacity: 1;
}

.premium-article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  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: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.82), transparent 88%);
}

.premium-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: 46px;
  align-items: center;
}

.premium-hero-copy h1 {
  max-width: 980px;
  margin: 14px 0 20px;
  font-family: var(--font-title);
  font-size: clamp(2.45rem, 5.2vw, 5.35rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--color-white);
}

.premium-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.premium-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.90);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(230, 200, 120, 0.25);
  font-weight: 800;
  font-size: 0.84rem;
}

.premium-hero-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(230, 200, 120, 0.30);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.card-kicker,
.premium-lead-card span,
.sidebar-cta-card span,
.premium-final-cta span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-gold-light);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-hero-card h2 {
  margin: 0 0 18px;
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  line-height: 1.12;
}

.premium-hero-card ul,
.premium-side-list ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-hero-card li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 650;
}

.premium-hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold-light);
  font-weight: 900;
}

.premium-article-section {
  background:
    radial-gradient(circle at 90% 0%, rgba(200, 162, 74, 0.12), transparent 28%),
    var(--color-off-white);
}

.premium-article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.premium-article-body {
  display: grid;
  gap: 26px;
}

.premium-lead-card,
.article-index-card,
.premium-content-block,
.premium-documents-panel,
.decision-path-panel,
.faq-panel,
.premium-final-cta,
.content-hub-card {
  border: 1px solid rgba(200, 162, 74, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.premium-lead-card {
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(7, 19, 31, 0.96), rgba(13, 27, 42, 0.95)),
    radial-gradient(circle at 90% 20%, rgba(200, 162, 74, 0.20), transparent 26%);
  color: var(--color-white);
}

.premium-lead-card h2,
.premium-final-cta h2 {
  margin: 0 0 12px;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.premium-lead-card p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.08rem;
}

.article-index-card {
  padding: 22px;
}

.article-index-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--color-navy-deep);
  font-weight: 900;
}

.article-index-card div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.article-index-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  color: var(--color-navy-deep);
  background: #fbfaf6;
  border: 1px solid rgba(7, 19, 31, 0.08);
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}

.article-index-card a span {
  color: var(--color-gold);
  font-family: var(--font-title);
  font-weight: 900;
}

.article-index-card a:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 162, 74, 0.38);
  box-shadow: 0 12px 26px rgba(7, 19, 31, 0.08);
}

.premium-content-block {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(26px, 4vw, 42px);
}

.block-marker {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-navy-deep);
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
}

.premium-content-block h2,
.premium-documents-panel h2,
.decision-path-panel h2,
.faq-panel h2,
.content-hub-card h2 {
  margin: 0 0 14px;
  color: var(--color-navy-deep);
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 2.6vw, 2.65rem);
  line-height: 1.12;
}

.premium-content-block p,
.premium-documents-panel p,
.decision-path-panel p,
.faq-panel p,
.content-hub-card p {
  color: #344054;
  font-size: 1.05rem;
}

.insight-card {
  margin-top: 20px;
  padding: 18px 18px 18px 20px;
  border-left: 4px solid var(--color-gold);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(200, 162, 74, 0.12), rgba(7, 19, 31, 0.025));
}

.insight-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-navy-deep);
  font-weight: 900;
}

.insight-card p {
  margin: 0;
  color: #4b5668;
}

.premium-documents-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1fr);
  gap: 28px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 236, 0.92));
}

.premium-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-checklist li,
.premium-side-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 15px;
  background: var(--color-white);
  border: 1px solid rgba(7, 19, 31, 0.08);
  color: #344054;
  font-weight: 650;
}

.premium-checklist span,
.premium-side-list span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-navy-deep);
  background: rgba(200, 162, 74, 0.22);
  font-weight: 900;
}

.decision-path-panel,
.faq-panel {
  padding: clamp(28px, 4vw, 44px);
}

.decision-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.path-step {
  padding: 20px;
  border-radius: 20px;
  background: #fbfaf6;
  border: 1px solid rgba(7, 19, 31, 0.08);
}

.path-step strong {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-gold);
  font-family: var(--font-title);
  font-size: 1.5rem;
}

.path-step p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 650;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-list details {
  border: 1px solid rgba(7, 19, 31, 0.10);
  border-radius: 18px;
  background: #fbfaf6;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--color-navy-deep);
  font-weight: 900;
}

.faq-list details[open] summary {
  color: var(--color-gold);
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: #4b5668;
}

.premium-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(7, 19, 31, 0.96), rgba(13, 27, 42, 0.94)),
    radial-gradient(circle at 92% 12%, rgba(200, 162, 74, 0.22), transparent 30%);
  color: var(--color-white);
}

.premium-final-cta h2 {
  color: var(--color-white);
}

.premium-final-cta p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.premium-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  display: grid;
  gap: 22px;
}

.sidebar-cta-card {
  background:
    linear-gradient(135deg, rgba(7, 19, 31, 0.96), rgba(13, 27, 42, 0.96));
  color: var(--color-white);
}

.sidebar-cta-card h2 {
  color: var(--color-white);
}

.sidebar-cta-card p {
  color: rgba(255, 255, 255, 0.76);
}

.premium-side-list ul {
  margin-top: 16px;
}

.related-links {
  display: grid;
  gap: 10px;
}

.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  color: var(--color-navy-deep);
  text-decoration: none;
  background: #fbfaf6;
  border: 1px solid rgba(7, 19, 31, 0.08);
  transition: var(--transition);
}

.related-link span {
  font-weight: 900;
}

.related-link small {
  color: #6d7787;
  font-weight: 800;
}

.related-link:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 162, 74, 0.42);
}

.content-hub-section {
  background: var(--color-off-white);
}

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

.content-hub-card {
  padding: 30px;
  transition: var(--transition);
}

.content-hub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(7, 19, 31, 0.16);
}

.content-hub-card > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-gold);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .premium-hero-grid,
  .premium-article-grid,
  .premium-documents-panel {
    grid-template-columns: 1fr;
  }

  .premium-sidebar {
    position: static;
  }

  .decision-path-grid,
  .content-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .premium-article-hero {
    padding: calc(var(--header-height) + 46px) 0 62px;
  }

  .premium-content-block {
    grid-template-columns: 1fr;
  }

  .article-index-card div,
  .decision-path-grid,
  .content-hub-grid {
    grid-template-columns: 1fr;
  }

  .premium-final-cta {
    align-items: stretch;
    flex-direction: column;
  }
}
