/* ============================================================
   PILLER, FONSECA, MARCHESI E PERIM ADVOGADOS
   Premium Law Firm Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy: #0d1b2a;
  --navy-mid: #1a2e45;
  --navy-light: #243b55;
  --graphite: #2c3e50;
  --graphite-light: #4a5568;
  --gold: #c9a84c;
  --gold-light: #e8c87d;
  --gold-pale: #f5e8c0;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --cream: #f0ebe0;
  --green: #2e6b4f;
  --green-light: #3d8a65;
  --border: rgba(201, 168, 76, 0.25);
  --border-light: rgba(255, 255, 255, 0.1);
  --shadow: 0 4px 32px rgba(13, 27, 42, 0.12);
  --shadow-lg: 0 12px 64px rgba(13, 27, 42, 0.2);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--off-white);
  color: var(--graphite);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--graphite-light);
  max-width: 640px;
  line-height: 1.75;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section--dark {
  background-color: var(--navy);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.section--gray {
  background-color: var(--cream);
}

.section--navy-mid {
  background-color: var(--navy-mid);
  color: var(--white);
}

.divider-gold {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 2rem;
  border: none;
}

.divider-gold--center {
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

/* ============================================================
   ALERT BAR
   ============================================================ */
.alert-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-bottom: 1px solid var(--gold);
  padding: 0.65rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.alert-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.alert-bar__text {
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 400;
}

.alert-bar__text strong {
  color: var(--gold-light);
  font-weight: 600;
}

.alert-bar__btn {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 2px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.alert-bar__btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 42px;
  z-index: 999;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar__logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar__logo-sub {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 2px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar__link {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar__link:hover {
  color: var(--gold-light);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.55rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn--lg {
  padding: 1.1rem 2.4rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.82rem;
}

.btn svg {
  flex-shrink: 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1e3a5f 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  animation: fadeInUp 0.8s ease forwards;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero__title em {
  color: var(--gold-light);
  font-style: italic;
}

.hero__subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}

.hero__note svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero__image-col {
  position: relative;
  animation: fadeInRight 0.8s 0.2s ease both;
}

.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero__img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.hero__img-badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.hero__img-badge-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT CNH SECTION
   ============================================================ */
.about-cnh__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-cnh__text p {
  color: var(--graphite-light);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.about-cnh__highlights {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.highlight-item__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.highlight-item__title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.highlight-item__desc {
  font-size: 0.85rem;
  color: var(--graphite-light);
  line-height: 1.6;
}

.about-cnh__info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 120px;
}

.about-cnh__info-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream);
}

.info-list {
  display: grid;
  gap: 0.85rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--graphite);
  line-height: 1.55;
}

.info-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.55rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.category-tag {
  background: var(--navy);
  color: var(--gold-light);
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.06) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.service-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--graphite-light);
  line-height: 1.7;
}

.services__cta {
  text-align: center;
}

/* ============================================================
   RIGHTS SECTION
   ============================================================ */
.rights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.right-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.right-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.right-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold-light);
  font-size: 1.5rem;
}

.right-card__title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.right-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ============================================================
   SCAM ALERT SECTION
   ============================================================ */
.scam-alert {
  background: var(--off-white);
}

.scam-alert__inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow);
}

.scam-alert__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream);
}

.scam-alert__icon {
  width: 64px;
  height: 64px;
  background: rgba(220, 53, 69, 0.1);
  border: 2px solid rgba(220, 53, 69, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc3545;
  flex-shrink: 0;
}

.scam-alert__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.scam-list {
  display: grid;
  gap: 0.85rem;
}

.scam-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid #dc3545;
  font-size: 0.9rem;
  color: var(--graphite);
  line-height: 1.55;
}

.scam-list__item::before {
  content: '⚠';
  flex-shrink: 0;
  color: #dc3545;
}

.scam-disclaimer {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(46,107,79,0.08) 0%, rgba(46,107,79,0.04) 100%);
  border: 1px solid rgba(46,107,79,0.2);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.scam-disclaimer svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.scam-disclaimer p {
  font-size: 0.9rem;
  color: var(--graphite);
  line-height: 1.6;
}

.scam-disclaimer strong {
  color: var(--green);
}

/* ============================================================
   EMPLOYMENT SECTION
   ============================================================ */
.employment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.employment__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.stat-card__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.employment__opportunities {
  display: grid;
  gap: 1rem;
}

.opportunity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.opportunity-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.opportunity-item__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.opportunity-item__title {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.opportunity-item__sub {
  font-size: 0.8rem;
  color: var(--graphite-light);
}

/* ============================================================
   DOCUMENTS SECTION
   ============================================================ */
.documents__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.doc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.doc-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-2px);
}

.doc-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.06) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.25rem;
}

.doc-card__info h4 {
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.doc-card__info p {
  font-size: 0.78rem;
  color: var(--graphite-light);
}

.documents__note {
  padding: 1.25rem 1.75rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--graphite);
}

.documents__note svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   ARTICLES SECTION
   ============================================================ */
.articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.article-card__img-icon {
  font-size: 3rem;
  opacity: 0.3;
}

.article-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,27,42,0.4) 100%);
}

.article-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  z-index: 1;
}

.article-card__body {
  padding: 1.5rem;
}

.article-card__title {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.article-card__excerpt {
  font-size: 0.85rem;
  color: var(--graphite-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.article-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.article-card__link:hover {
  gap: 0.7rem;
  color: var(--gold-light);
}

.articles__cta {
  text-align: center;
}

/* ============================================================
   ABOUT FIRM SECTION
   ============================================================ */
.about-firm__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-firm__text p {
  color: var(--graphite-light);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-firm__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.value-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--graphite);
  font-weight: 500;
}

.value-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.about-firm__image {
  position: relative;
}

.about-firm__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-firm__img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-firm__accent {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 200px;
}

.about-firm__accent-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.about-firm__accent-sub {
  font-size: 0.75rem;
  color: rgba(13,27,42,0.7);
  margin-top: 0.35rem;
  line-height: 1.4;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--cream);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--cream);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: var(--transition);
  font-size: 1.1rem;
  font-weight: 300;
}

.faq-item.active .faq-item__icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 400px;
}

.faq-item__answer p {
  padding-bottom: 1.5rem;
  color: var(--graphite-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a55 100%);
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.final-cta__subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080f18;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 4rem 0 2rem;
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.footer__brand-sub {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer__contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: grid;
  gap: 0.6rem;
}

.footer__link {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--gold-light);
}

.footer__cnpj {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
}

.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.65;
  max-width: 700px;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  animation: pulse 2.5s infinite;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__image-col {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .about-cnh__grid,
  .employment__grid,
  .about-firm__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services__grid,
  .rights__grid,
  .documents__grid,
  .articles__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 9998;
  }

  .navbar__menu.open {
    display: flex;
  }

  .navbar__link {
    font-size: 1.1rem;
  }

  .navbar__hamburger {
    display: flex;
    z-index: 9999;
  }

  .services__grid,
  .rights__grid,
  .documents__grid,
  .articles__grid,
  .employment__stats,
  .about-firm__values,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .scam-alert__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
  }

  .trust-bar__inner {
    gap: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .final-cta__actions {
    flex-direction: column;
  }

  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .scam-alert__inner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .alert-bar__inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .navbar {
    top: 70px;
  }
}
