/* ============================================================
   THAYS BOMFIM ADVOCACIA — CSS GLOBAL
   Never Settle Agency
   ============================================================ */

/* ============================================================
   FONTES
   ============================================================ */
@font-face {
  font-family: 'Blosta';
  src: url('../fonts/Blosta-Regular.woff2') format('woff2'),
       url('../fonts/Blosta-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Blosta-Script';
  src: url('../fonts/Blosta-Script.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quicksand';
  src: url('../fonts/Quicksand-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quicksand';
  src: url('../fonts/Quicksand-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Quicksand';
  src: url('../fonts/Quicksand-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   VARIÁVEIS
   ============================================================ */
:root {
  --bg-primary:    #0D0D0D;
  --bg-secondary:  #1A1A1A;
  --bg-card:       #222222;
  --bg-footer:     #111111;
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-border:   rgba(201, 168, 76, 0.2);
  --gold-border-strong: rgba(201, 168, 76, 0.6);
  --text-primary:  #F5EDDA;
  --text-secondary:#999999;
  --white:         #ffffff;

  --font-title:    'Blosta', Georgia, serif;
  --font-body:     'Quicksand', 'Segoe UI', sans-serif;

  --radius:        50px;
  --transition:    0.3s ease;
  --shadow:        0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-gold:   0 4px 24px rgba(201, 168, 76, 0.15);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2 {
  font-family: var(--font-title);
  font-weight: normal;
  line-height: 1.15;
  color: var(--text-primary);
}

h3, h4 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.75;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background-color: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-top: 0.5rem;
}

.section-header p {
  margin-top: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid de 2 colunas */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Grid de 3 colunas */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Grid de 6 cards */
.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  touch-action: manipulation;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 45%, #a87832 100%);
  color: #0a0a0a;
  border: none;
  box-shadow: 0 4px 18px rgba(184,142,66,0.30);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e8c96a 0%, #c9a84c 50%, #b88a3c 100%);
  box-shadow: 0 6px 26px rgba(184,142,66,0.50);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-secondary:hover {
  background-color: rgba(201, 168, 76, 0.08);
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* Botão FAQ WhatsApp — escuro com hover dourado */
.btn-faq-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #1A1A1A;
  color: #c9a84c;
  border: 1.5px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.btn-faq-wa:hover {
  color: #e8c96a;
  background: #111;
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 0 28px rgba(201,168,76,0.22), 0 0 8px rgba(201,168,76,0.12);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 0.9rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.78rem;
}

/* ============================================================
   SECTION DIVIDER — tab (entre seções com foto)
   ============================================================ */
.section-divider {
  position: relative;
  height: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
}

.section-divider__tab {
  position: absolute;
  top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 40px;
  border-radius: 0 0 50% 50%;
  border: 1px solid rgba(201,168,76,0.25);
  border-top: none;
  cursor: default;
}

.section-divider__tab svg {
  display: block;
}

.section-divider--dark-to-dark .section-divider__tab {
  background: var(--bg-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ============================================================
   SECTION DIVIDER — concave notch (seções sem foto)
   ============================================================ */
.section-divider--concave {
  position: relative;
  height: 60px;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
  z-index: 20;
}

.section-divider--concave .divider-shape {
  width: 100%;
  height: 60px;
  display: block;
}

.section-divider--concave .divider-chevron {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 10px;
  pointer-events: none;
}

/* ============================================================
   SEÇÕES CLARAS — alternância dark/light
   ============================================================ */
.section--light {
  background-color: #C9A84C;
}
.section--light h2,
.section--light h3,
.section--light p,
.section--light li { color: #1A1A1A; }
.section--light .eyebrow { color: #5C3A00; }
.section--light .section-header p { color: #4A3000; }

/* ============================================================
   ÁREAS — lista editorial numerada
   ============================================================ */
.areas-list {
  border-top: 1px solid var(--gold-border);
}

.area-row {
  display: grid;
  grid-template-columns: 52px 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--gold-border);
  text-decoration: none;
  transition: background 0.25s, padding-left 0.3s;
  border-radius: 2px;
}

.area-row:hover {
  background: rgba(201,168,76,0.04);
  padding-left: 16px;
}

.area-row__num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  opacity: 0.4;
  transition: opacity 0.25s;
  user-select: none;
}
.area-row:hover .area-row__num { opacity: 1; }

.area-row__body { flex: 1; }

.area-row__title {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  color: var(--text-primary);
  display: block;
  margin-bottom: 3px;
  transition: color 0.25s;
}
.area-row:hover .area-row__title { color: var(--gold); }

.area-row__desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: block;
  line-height: 1.5;
}

.area-row__icon {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  opacity: 0.3;
  transition: opacity 0.25s;
  flex-shrink: 0;
}
.area-row:hover .area-row__icon { opacity: 0.7; }

.area-row__arrow {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.25s, transform 0.3s;
  flex-shrink: 0;
}
.area-row:hover .area-row__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Area cards em seção clara (legado) */
.section--light .area-card-h {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.section--light .area-card-h__title { color: #1A1A1A; }
.section--light .area-card-h__desc  { color: #555; }
.section--light .area-card-h__icon,
.section--light .area-card-h__arrow { stroke: var(--gold); }
.section--light .area-card-h:hover  { background: #FFF8EC; border-color: rgba(201,168,76,0.3); }

/* Depoimentos em seção clara */
.section--light .depo-card       { background: #FFFFFF; border-color: rgba(0,0,0,0.08); }
.section--light .depo-card__text { color: #333; }
.section--light .depo-card__name { color: #1A1A1A; }
.section--light .depo-card__role { color: #777; }
.section--light .depo-stars      { color: var(--gold); }

/* FAQ em seção clara */
.section--light .faq-item            { border-color: rgba(26,26,26,0.2); }
.section--light .faq-q               { color: #1A1A1A; }
.section--light .faq-a               { color: #3A2800; }
.section--light .faq-icon            { stroke: #1A1A1A; }
.section--light .faq-item__trigger   { color: #1A1A1A; }
.section--light .faq-item__trigger:hover { color: #5C3A00; }
.section--light .faq-item__body p    { color: #3A2800; }

/* Testi-cards — cores protegidas da herança section--light */
.section--light .testi-card__text     { color: var(--text-primary); }
.section--light .testi-card__name     { color: var(--text-primary); }
.section--light .testi-card__location { color: var(--text-secondary); }
.section--light .testi-card__star     { color: var(--gold); }



/* ============================================================
   HERO TICKER — faixa marquee dourada na divisa hero/seção
   ============================================================ */
.hero-ticker {
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 45%, #a87832 100%);
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  font-size: 11px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ticker-item::before {
  content: '◆';
  font-size: 6px;
  color: #0a0a0a;
  opacity: 0.5;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--gold-border);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(13, 13, 13, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 clamp(20px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.navbar__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--gold);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown__toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown__toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-8px);
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown__menu a:hover {
  color: var(--gold);
  background-color: rgba(201, 168, 76, 0.06);
}

.navbar__cta {
  display: flex;
  align-items: center;
}

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

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gold);
  transition: all 0.3s;
}

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

/* Mobile nav */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--gold-border);
  padding: 16px 24px 24px;
  gap: 4px;
}

.navbar__mobile.open {
  display: flex;
}

.navbar__mobile a {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}

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

.navbar__mobile .mobile-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 0 4px;
}

.navbar__mobile .btn {
  margin-top: 16px;
  justify-content: center;
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 3s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  animation: none;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ============================================================
   FOTO PLACEHOLDER
   ============================================================ */
.photo-placeholder {
  background-color: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  min-height: 360px;
}

.photo-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
  stroke: var(--gold);
}

/* ============================================================
   CARDS DE ÁREA
   ============================================================ */
.area-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.area-card:hover {
  border-color: var(--gold-border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.area-card__icon {
  width: 44px;
  height: 44px;
  stroke: var(--gold);
  fill: none;
}

.area-card__title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--text-primary);
}

.area-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.area-card .btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 10px 20px;
  font-size: 0.78rem;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.checklist__icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background-color: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.checklist__icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  fill: none;
}

.checklist__text {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.testimonial-card__text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--gold-border);
  padding-top: 16px;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

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

.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
}

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

.faq-item__icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  stroke: var(--gold);
  fill: none;
  transition: transform 0.3s;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__body p {
  padding: 0 0 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   NÚMEROS / STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--gold-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   PROCESSO (COMO FUNCIONA)
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.process-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.process-step__number {
  font-family: var(--font-title);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}

.process-step h3 {
  font-size: 1.2rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 260px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--text-secondary); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ============================================================
   MINI HERO (páginas internas)
   ============================================================ */
.mini-hero {
  padding: 80px 0 72px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--gold-border);
}

.mini-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
}

.mini-hero .subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 2rem;
}

/* ============================================================
   SEÇÃO DE OUTRAS ÁREAS (no rodapé das páginas de área)
   ============================================================ */
.outras-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.outra-area-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 0.3s, transform 0.3s;
}

.outra-area-card:hover {
  border-color: var(--gold-border-strong);
  transform: translateY(-2px);
}

.outra-area-card__title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.outra-area-card svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  min-width: 18px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--bg-footer);
  border-top: 1px solid var(--gold-border);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand-mark {
  margin-bottom: 12px;
}

.footer__logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__brand-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 4px 0 16px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer__tagline--meta {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.footer__bottom {
  border-top: 1px solid var(--gold-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.footer__bottom-bar {
  background: #0091FC;
  padding: 14px 0;
}

.footer__bottom-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad, 24px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__dev-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer__dev-link:hover { opacity: 1; }

.footer__dev-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__dev-logo {
  height: 28px;
  width: auto;
}

/* ============================================================
   BADGES
   ============================================================ */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  background-color: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   HERO CREDENTIAL STRIP
   ============================================================ */
.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.hero-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-strip__item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid var(--gold-border);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.cta-section .subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* ============================================================
   MÍDIA CBN
   ============================================================ */
.midia-strip {
  padding: 72px 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

/* layout 2 colunas */
.midia-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.midia-strip__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.midia-embed-wrap {
  width: 100%;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
}

.midia-embed-clip {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
}

.midia-embed-clip iframe {
  width: 100%;
  height: 560px;
  display: block;
  border: none;
}

.midia-strip__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: block;
}

.midia-strip__title {
  font-family: var(--font-title);
  font-weight: normal;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 20px;
}

.midia-strip__body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 400px;
}

/* ============================================================
   TIMELINE (Sobre)
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--gold-border);
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold);
}

.timeline-item__year {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-item__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline-item__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .outras-areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .navbar__nav { display: none; }
  .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-2.reverse-mobile > *:first-child { order: 2; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gold-border); }
  .stat-item:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .outras-areas-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 14px 24px; font-size: 0.82rem; }
}

/* ============================================================
   PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
