/* ==========================================================================
   TL ADVOCACIA - DRA. THAÍS LOBATO
   Design System: 70% Off-White Warm Luxury / 30% Dark Obsidian Prestige
   Direct Color Match from Brand Reference Posts
   ========================================================================== */

:root {
  /* 70% Off-White Palette (Brand Light) */
  --offwhite-bg: #FAF9F6;
  --offwhite-bg-alt: #F4F1E8;
  --offwhite-card: #FFFFFF;
  --offwhite-card-subtle: #FAF8F3;
  --offwhite-border: #E8E3D8;
  
  /* Text on Light */
  --text-main: #14120E;
  --text-body: #4A443B;
  --text-muted: #7A7265;
  --text-subtle: #9E9484;

  /* 30% Dark Obsidian Palette (Brand Dark) */
  --dark-bg: #14120E;
  --dark-bg-card: #1C1914;
  --dark-bg-alt: #231F19;
  --dark-border: rgba(197, 160, 89, 0.25);
  --dark-border-subtle: rgba(255, 255, 255, 0.08);
  
  /* Text on Dark */
  --text-dark-title: #FAF8F5;
  --text-dark-body: #D4CEBE;
  --text-dark-muted: #9E9685;

  /* Gold Brand Accents (From Logo & Reference Posts) */
  --gold-primary: #C5A059;
  --gold-light: #DFBE76;
  --gold-dark: #A37E35;
  --gold-gradient: linear-gradient(135deg, #ECCB8B 0%, #C5A059 50%, #9E7934 100%);
  --gold-border: rgba(197, 160, 89, 0.45);
  --gold-badge-bg: rgba(197, 160, 89, 0.1);
  --gold-glow: 0 10px 30px rgba(197, 160, 89, 0.2);

  /* High Converting WhatsApp */
  --whatsapp: #C5A059;
  --whatsapp-hover: #A37E35;
  --whatsapp-glow: 0 8px 24px rgba(197, 160, 89, 0.25);

  /* Typography - Exact Match from Brand Reference Posts */
  --font-headline: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(20, 18, 14, 0.04);
  --shadow-card: 0 8px 24px rgba(20, 18, 14, 0.06);
  --shadow-hover: 0 16px 40px rgba(197, 160, 89, 0.16);
  --shadow-dark-card: 0 16px 40px rgba(0, 0, 0, 0.5);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: var(--offwhite-bg);
  line-height: 1.68;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s var(--ease);
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   BRAND BADGES & ACCENTS (FROM POST REFERENCE IMAGES)
   ========================================================================== */
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-badge-bg);
  border: 1px solid var(--gold-primary);
  border-radius: 6px;
  padding: 6px 16px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.brand-badge-dark {
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
}

.brand-badge svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
}

.gold-star-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.gold-star-divider::before,
.gold-star-divider::after {
  content: "";
  height: 1px;
  width: 60px;
  background: var(--gold-primary);
  opacity: 0.5;
}

.gold-star-divider span {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

/* Typography Utilities */
.serif-title {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-gold {
  color: var(--gold-primary);
}

.section-h2-light {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-h2-dark {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 700;
  color: var(--text-dark-title);
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-p-light {
  font-size: 1.08rem;
  color: var(--text-body);
  max-width: 680px;
  line-height: 1.65;
}

.section-p-dark {
  font-size: 1.08rem;
  color: var(--text-dark-body);
  max-width: 680px;
  line-height: 1.65;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.28s var(--ease);
  text-align: center;
}

.btn-cta-whatsapp {
  background: var(--gold-gradient);
  color: #14120E;
  font-weight: 800;
  box-shadow: var(--gold-glow);
}

.btn-cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(197, 160, 89, 0.35);
  filter: brightness(1.05);
}

.btn-cta-gold {
  background: var(--gold-gradient);
  color: #14120E;
  font-weight: 800;
  box-shadow: var(--gold-glow);
}

.btn-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(197, 160, 89, 0.35);
  filter: brightness(1.05);
}

.btn-cta-dark {
  background: var(--dark-bg);
  border: 1px solid var(--gold-primary);
  color: #FFFFFF;
}

.btn-cta-dark:hover {
  background: var(--gold-primary);
  color: #14120E;
  transform: translateY(-2px);
}

.btn-cta-outline {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-dark);
}

.btn-cta-outline:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ==========================================================================
   TOP BAR & NAVIGATION (LIGHT & CLEAN)
   ========================================================================== */
.site-topbar {
  background: #14120E;
  color: #C9C2B5;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.site-topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header-clean {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--offwhite-border);
  padding: 12px 0;
  transition: all 0.3s var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 54px;
  width: auto;
  border-radius: 4px;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.header-nav a {
  color: var(--text-main);
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}

.header-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.25s var(--ease);
}

.header-nav a:hover {
  color: var(--gold-dark);
}

.header-nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   HERO SECTION: FULL BLEED BACKGROUND WITH BALANCED OVERLAY
   ========================================================================== */
.hero-bg-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(90deg, 
      rgba(20, 18, 14, 0.96) 0%, 
      rgba(20, 18, 14, 0.90) 45%, 
      rgba(20, 18, 14, 0.35) 75%, 
      rgba(20, 18, 14, 0.80) 100%
    ),
    url('../images/dra-thais-hero.png') no-repeat center right / cover;
  border-bottom: 2px solid var(--gold-primary);
  padding: 90px 0;
  overflow: hidden;
  color: #FFFFFF;
}

.hero-box {
  max-width: 650px;
  position: relative;
  z-index: 3;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-h1 span {
  color: var(--gold-light);
}

.hero-p {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: #E6E1D8;
  line-height: 1.68;
  margin-bottom: 34px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #D4CEBE;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-trust-cell svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ==========================================================================
   DARK SECTION 1: MANIFESTO & SERIF NUMBERS (MATCHES REF-DARK-POST)
   ========================================================================== */
.section-dark-manifesto {
  background: var(--dark-bg);
  border-bottom: 1px solid var(--dark-border);
  padding: 70px 0;
  color: #FFFFFF;
}

.manifesto-post-frame {
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 48px 40px;
  background: rgba(28, 25, 20, 0.7);
  box-shadow: var(--shadow-dark-card);
  position: relative;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.manifesto-quote-text {
  font-family: var(--font-editorial);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 600;
  line-height: 1.28;
  font-style: italic;
  color: #FFFFFF;
}

.manifesto-quote-text span {
  color: var(--gold-light);
}

.manifesto-stat-block {
  display: flex;
  align-items: center;
  gap: 24px;
  border-left: 1px solid rgba(197, 160, 89, 0.35);
  padding-left: 32px;
}

.manifesto-big-number {
  font-family: var(--font-editorial);
  font-size: clamp(3.5rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 0.9;
}

.manifesto-stat-desc {
  font-size: 0.95rem;
  color: #C9C2B5;
  line-height: 1.45;
}

/* ==========================================================================
   OFF-WHITE SECTION 1: SIMULADOR / DIAGNÓSTICO INTERATIVO
   ========================================================================== */
.section-light-diagnostic {
  padding: 96px 0;
  background: var(--offwhite-bg);
}

.diagnostic-gold-frame {
  background: var(--offwhite-card);
  border: 1px solid var(--gold-primary);
  border-radius: 14px;
  padding: 44px 36px;
  box-shadow: var(--shadow-card);
}

.diag-grid-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.diag-buttons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.diag-select-btn {
  background: var(--offwhite-card-subtle);
  border: 1px solid var(--offwhite-border);
  padding: 15px 20px;
  border-radius: 8px;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.96rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
}

.diag-select-btn:hover, .diag-select-btn.active {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  color: var(--gold-dark);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.diag-select-btn.active .diag-badge-check {
  background: var(--gold-primary);
  color: #FFFFFF;
  border-color: transparent;
}

.diag-badge-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--offwhite-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.diag-result-card {
  background: var(--offwhite-bg-alt);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.diag-result-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.diag-result-desc {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 18px;
}

.diag-steps-ul {
  list-style: none;
  margin-bottom: 24px;
}

.diag-steps-ul li {
  font-size: 0.92rem;
  color: var(--text-main);
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
  font-weight: 500;
}

.diag-steps-ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

/* ==========================================================================
   OFF-WHITE SECTION 2: PLANEJAMENTO PREVIDENCIÁRIO COM COMPARADOR
   ========================================================================== */
.section-light-planning {
  padding: 96px 0;
  background: var(--offwhite-bg-alt);
  border-top: 1px solid var(--offwhite-border);
  border-bottom: 1px solid var(--offwhite-border);
}

.planning-2col-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 60px;
}

.table-comparison-white {
  background: #FFFFFF;
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.table-comparison-white table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.table-comparison-white th {
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--offwhite-border);
}

.table-comparison-white td {
  padding: 12px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--offwhite-bg-alt);
  color: var(--text-body);
}

.table-comparison-white tr:last-child td {
  border-bottom: none;
}

.badge-risk {
  color: #DC2626;
  font-weight: 700;
}

.badge-benefit {
  color: #059669;
  font-weight: 700;
}

.planning-pillars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.planning-pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  border-radius: 10px;
  padding: 32px 26px;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}

.planning-pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
}

.pillar-icon-box-gold {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: var(--gold-badge-bg);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.planning-pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.planning-pillar-card p {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================================================
   OFF-WHITE SECTION 3: APOSENTADORIAS & ESPECIALIDADES (GRID COM FILTROS)
   ========================================================================== */
.section-light-services {
  padding: 100px 0;
  background: var(--offwhite-bg);
}

.filter-pills-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 46px;
}

.filter-btn-pill {
  background: var(--offwhite-card);
  border: 1px solid var(--offwhite-border);
  color: var(--text-body);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
}

.filter-btn-pill:hover, .filter-btn-pill.active {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #14120E;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.services-grid-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card-white {
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  border-radius: 12px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  position: relative;
}

.service-card-white:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-hover);
}

.service-card-white h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-main);
  margin: 16px 0 10px;
  line-height: 1.3;
}

.service-card-white p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-action-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.service-action-gold:hover {
  color: var(--gold-primary);
  gap: 10px;
}

/* ==========================================================================
   OFF-WHITE SECTION 4: BPC / LOAS (COM FOTO DO ESCRITÓRIO)
   ========================================================================== */
.section-light-bpc {
  padding: 96px 0;
  background: var(--offwhite-bg-alt);
  border-top: 1px solid var(--offwhite-border);
  border-bottom: 1px solid var(--offwhite-border);
}

.bpc-2col-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.bpc-office-card {
  background: #FFFFFF;
  border: 1px solid var(--gold-primary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.bpc-office-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.bpc-office-body {
  padding: 30px 28px;
}

.bpc-office-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.bpc-reasons-ul {
  list-style: none;
  margin-bottom: 20px;
}

.bpc-reasons-ul li {
  font-size: 0.92rem;
  color: var(--text-body);
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}

.bpc-reasons-ul li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #DC2626;
  font-weight: 800;
}

.bpc-step-item-white {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.bpc-step-num-gold {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #14120E;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   OFF-WHITE SECTION 5: SOBRE A DRA. THAÍS LOBATO (DUPLA FOTO)
   ========================================================================== */
.section-light-about {
  padding: 100px 0;
  background: var(--offwhite-bg);
}

.about-duo-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-duo-stack {
  position: relative;
}

.about-main-photo {
  border-radius: 14px;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-card);
  width: 100%;
}

.about-portrait-stamp {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 130px;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-card);
  background: #FFFFFF;
}

.about-portrait-stamp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-quote-stamp {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--dark-bg);
  color: #FFFFFF;
  padding: 20px 24px;
  border-radius: 10px;
  border: 1px solid var(--gold-primary);
  max-width: 270px;
  box-shadow: var(--shadow-dark-card);
}

.about-quote-stamp p {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--gold-light);
  line-height: 1.45;
}

.about-quote-stamp span {
  font-size: 0.76rem;
  color: #C9C2B5;
  display: block;
  margin-top: 6px;
}

.about-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.about-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--offwhite-card-subtle);
  border: 1px solid var(--offwhite-border);
  padding: 12px 16px;
  border-radius: 6px;
}

.about-badge-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
}

.about-badge-item span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

/* ==========================================================================
   OFF-WHITE SECTION 6: PROVA SOCIAL & DEPOIMENTOS
   ========================================================================== */
.section-light-testimonials {
  padding: 96px 0;
  background: var(--offwhite-bg-alt);
  border-top: 1px solid var(--offwhite-border);
  border-bottom: 1px solid var(--offwhite-border);
}

.testimonials-grid-white {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.testimonial-card-white {
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  border-radius: 12px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars-gold {
  display: flex;
  gap: 4px;
  color: #F59E0B;
  margin-bottom: 16px;
}

.testimonial-stars-gold svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.testimonial-text-quote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author-flex {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--offwhite-border);
  padding-top: 16px;
}

.author-avatar-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #14120E;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   OFF-WHITE SECTION 7: FAQ ACORDEÃO (12 PERGUNTAS DA COPY)
   ========================================================================== */
.section-light-faq {
  padding: 100px 0;
  background: var(--offwhite-bg);
}

.faq-container-clean {
  max-width: 900px;
  margin: 44px auto 0;
}

.faq-item-clean {
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.25s var(--ease);
}

.faq-item-clean.active {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.12);
}

.faq-question-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-main);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question-btn:hover {
  color: var(--gold-dark);
}

.faq-chevron-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--offwhite-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.faq-item-clean.active .faq-chevron-icon {
  transform: rotate(180deg);
  background: var(--gold-gradient);
  color: #14120E;
}

.faq-answer-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0, 1, 0, 1);
  background: var(--offwhite-card-subtle);
}

.faq-answer-inner-padding {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.68;
}

/* ==========================================================================
   DARK SECTION 2: FINAL CTA & FOOTER (30% BALANCE)
   ========================================================================== */
.section-dark-final-cta {
  padding: 100px 0;
  background: radial-gradient(circle at center, #1E1A14 0%, #14120E 100%);
  border-top: 2px solid var(--gold-primary);
  color: #FFFFFF;
  text-align: center;
}

.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.site-footer-dark {
  background: #0D0B08;
  color: #8C8275;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 32px;
  font-size: 0.88rem;
}

.footer-4col-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-p {
  margin-top: 16px;
  line-height: 1.65;
  max-width: 320px;
  color: #A39C90;
}

.footer-h4-gold {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links-col {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a:hover {
  color: var(--gold-light);
}

.footer-contact-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-row svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
}

.footer-bottom-oab {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  display: none !important;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #FFFFFF;
  padding: 13px 20px 13px 16px;
  border-radius: 40px;
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.35);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}

.floating-whatsapp-btn:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(197, 160, 89, 0.5);
}

.floating-whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Mobile Drawer */
.mobile-drawer-layer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: var(--dark-bg);
  border-left: 1px solid var(--gold-primary);
  z-index: 2000;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s var(--ease);
}

.mobile-drawer-layer.open {
  right: 0;
}

.mobile-backdrop-layer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-backdrop-layer.active {
  opacity: 1;
  pointer-events: auto;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .manifesto-grid, .diag-grid-split, .planning-2col-layout, .bpc-2col-grid, .about-duo-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .planning-pillars-row, .services-grid-light, .testimonials-grid-white {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-4col-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav, .header-inner .btn-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-bg-section {
    background: 
      linear-gradient(180deg, 
        rgba(20, 18, 14, 0.88) 0%, 
        rgba(20, 18, 14, 0.95) 55%, 
        rgba(20, 18, 14, 0.98) 100%
      ),
      url('../images/dra-thais-hero.png') no-repeat top center / cover;
    padding-top: 60px;
  }
  .planning-pillars-row, .services-grid-light, .testimonials-grid-white {
    grid-template-columns: 1fr;
  }
  .footer-4col-grid {
    grid-template-columns: 1fr;
  }
  .about-portrait-stamp {
    display: none;
  }
  .about-quote-stamp {
    position: static;
    margin-top: 16px;
    max-width: 100%;
  }
  .floating-whatsapp-btn span {
    display: none;
  }
  .floating-whatsapp-btn {
  display: none !important;
    padding: 14px;
    border-radius: 50%;
  }
}

/* Animations */
/* Safe Animation - Content 100% Visible by Default */
.fade-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.js-animated .fade-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js-animated .fade-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Exact Brand Typography from Reference Posts */
h1, h2, h3, .serif-title, .hero-h1, .section-h2-light, .section-h2-dark {
  font-family: var(--font-headline) !important;
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* .hero-h1 handled in hero section */

.manifesto-quote-text {
  font-family: var(--font-headline) !important;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.01em;
}

.manifesto-big-number, .stat-big-number {
  font-family: var(--font-headline) !important;
  font-style: normal;
  font-weight: 600;
  font-feature-settings: "onum" 1;
}

/* Micro Kicker Tags - Exactly like 'NOTÍCIA' and 'MITO OU VERDADE?' */
.brand-badge, .badge-kicker {
  font-family: var(--font-sans) !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
}

.section-p-light, .section-p-dark, .hero-p, p, li {
  font-family: var(--font-sans);
  font-weight: 400;
}

strong, b {
  font-weight: 700;
}

/* BPC / LOAS Uncropped Photo on Left Side */
.bpc-2col-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: flex-start;
}

.bpc-full-photo-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-card);
  background: #FFFFFF;
}

.bpc-full-img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
}

.bpc-photo-tag-overlay {
  background: rgba(20, 18, 14, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--gold-primary);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.bpc-photo-tag-overlay svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.bpc-why-denied-box {
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  border-left: 3px solid var(--gold-primary);
  padding: 20px 22px;
  border-radius: 8px;
  margin-top: 16px;
}


/* ==========================================================================
   ABOUT SECTION: SINGLE PHOTO PRESENTATION (EXCLUSIVE NEW ASSET)
   ========================================================================== */
.about-single-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-single-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-img-frame-gold {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 16px 36px rgba(20, 18, 14, 0.08);
  background: #FFFFFF;
}

.about-single-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 13px;
}

.about-photo-tag-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 18, 14, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--gold-primary);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about-photo-tag-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
}

.about-quote-card-gold {
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  border-left: 3px solid var(--gold-primary);
  border-radius: 10px;
  padding: 18px 22px;
  position: relative;
  box-shadow: 0 4px 14px rgba(20, 18, 14, 0.04);
}

.about-quote-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.about-quote-card-gold p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 6px;
}

.about-quote-card-gold span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 991px) {
  .about-single-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


/* ==========================================================================
   PLANNING SECTION: 2-COLUMN WITH PHOTO ON THE RIGHT
   ========================================================================== */
.planning-2col-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.planning-stacked-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.planning-pillar-row {
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  border-left: 3px solid var(--gold-primary);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(20, 18, 14, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.planning-pillar-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.12);
  border-color: var(--gold-light);
}

.planning-pillar-row .pillar-icon-box-gold {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
}

.planning-photo-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-card);
  background: #FFFFFF;
}

.planning-photo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.planning-photo-tag-overlay {
  background: rgba(20, 18, 14, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--gold-primary);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.planning-photo-tag-overlay svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .planning-2col-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .planning-right-photo-col {
    order: -1;
  }
}


/* ==========================================================================
   BPC / LOAS: ADVANCED UI/UX LUXURY OVERHAUL
   ========================================================================== */
.bpc-metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.bpc-metric-pill {
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  border-top: 2px solid var(--gold-primary);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(20, 18, 14, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bpc-metric-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.12);
  border-top-color: var(--gold-dark);
}

.bpc-metric-icon {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.bpc-metric-val {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

.bpc-metric-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.bpc-luxury-photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 20px 40px rgba(20, 18, 14, 0.08);
  background: #FFFFFF;
}

.bpc-photo-corner-accent {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--gold-primary);
  pointer-events: none;
  z-index: 3;
}

.bpc-photo-corner-accent.top-left {
  top: 10px;
  left: 10px;
  border-top: 2px solid var(--gold-primary);
  border-left: 2px solid var(--gold-primary);
}

.bpc-photo-corner-accent.top-right {
  top: 10px;
  right: 10px;
  border-top: 2px solid var(--gold-primary);
  border-right: 2px solid var(--gold-primary);
}

.bpc-photo-corner-accent.bottom-left {
  bottom: 80px;
  left: 10px;
  border-bottom: 2px solid var(--gold-primary);
  border-left: 2px solid var(--gold-primary);
}

.bpc-photo-corner-accent.bottom-right {
  bottom: 80px;
  right: 10px;
  border-bottom: 2px solid var(--gold-primary);
  border-right: 2px solid var(--gold-primary);
}

.bpc-photo-floating-pill {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(20, 18, 14, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-primary);
  border-radius: 30px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.bpc-photo-floating-pill svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
}

.bpc-photo-footer-quote {
  background: rgba(20, 18, 14, 0.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--gold-primary);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #FAF8F5;
  z-index: 2;
}

.bpc-photo-footer-quote svg {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.bpc-photo-footer-quote strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.bpc-photo-footer-quote span {
  display: block;
  font-size: 0.8rem;
  color: #A39C90;
}

.bpc-trust-guarantee-card {
  margin-top: 18px;
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  border-left: 3px solid var(--gold-primary);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 12px rgba(20, 18, 14, 0.03);
}

.trust-guarantee-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--offwhite-card);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-primary);
}

.trust-guarantee-icon svg {
  width: 18px;
  height: 18px;
}

.bpc-trust-guarantee-card h4 {
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 2px;
}

.bpc-trust-guarantee-card p {
  font-size: 0.8rem;
  color: var(--text-body);
  margin: 0;
}

.bpc-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.bpc-audience-box {
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(20, 18, 14, 0.03);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.bpc-audience-box:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
}

.bpc-audience-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--offwhite-bg);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
}

.bpc-audience-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.bpc-audience-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
}

.bpc-audience-box p {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.45;
  margin: 0;
}

.bpc-steps-flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.bpc-flow-item {
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(20, 18, 14, 0.02);
  transition: border-color 0.2s ease;
}

.bpc-flow-item:hover {
  border-color: var(--gold-light);
}

.bpc-flow-number {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
  background: var(--offwhite-card);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bpc-flow-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.bpc-flow-body p {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.45;
}

.bpc-why-denied-box {
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-left: 4px solid var(--gold-primary);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.06);
  margin-bottom: 24px;
}

.bpc-denied-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bpc-alert-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(197, 160, 89, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.bpc-alert-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.bpc-reasons-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bpc-reasons-ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.85rem;
  color: var(--text-body);
}

.bpc-reasons-ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: 700;
}

.bpc-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.bpc-cta-subtext {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bpc-cta-subtext svg {
  width: 12px;
  height: 12px;
  color: var(--gold-primary);
}

@media (max-width: 991px) {
  .bpc-metrics-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .bpc-audience-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


/* ==========================================================================
   BPC / LOAS: CLEAN 2-COLUMN PATTERN (IDENTICAL TO PLANEJAMENTO)
   ========================================================================== */
.bpc-clean-2col-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.bpc-clean-photo-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gold-primary);
  box-shadow: var(--shadow-card);
  background: #FFFFFF;
}

.bpc-clean-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.bpc-clean-tag-overlay {
  background: rgba(20, 18, 14, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--gold-primary);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.bpc-clean-tag-overlay svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.bpc-clean-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.bpc-clean-pillar-row {
  background: #FFFFFF;
  border: 1px solid var(--offwhite-border);
  border-left: 3px solid var(--gold-primary);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(20, 18, 14, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bpc-clean-pillar-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.12);
  border-color: var(--gold-light);
}

.bpc-clean-pillar-row .pillar-icon-box-gold {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .bpc-clean-2col-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


/* ==========================================================================
   HERO SECTION OVERHAUL: NO TOP NAV, HEADLINE BELOW WALL LOGO
   ========================================================================== */
.hero-bg-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: 
    linear-gradient(90deg, 
      rgba(20, 18, 14, 0.92) 0%, 
      rgba(20, 18, 14, 0.78) 42%, 
      rgba(20, 18, 14, 0.20) 65%, 
      rgba(20, 18, 14, 0.65) 100%
    ),
    url('../images/dra-thais-hero.png') no-repeat center right / cover;
  border-bottom: 2px solid var(--gold-primary);
  padding: clamp(260px, 32vh, 380px) 0 80px;
  overflow: hidden;
  color: #FFFFFF;
}

.hero-box {
  max-width: 620px;
  position: relative;
  z-index: 3;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 18px;
  max-width: 520px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}

.hero-h1 span {
  color: var(--gold-light);
}

.hero-p {
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  color: #E6E1D8;
  line-height: 1.65;
  margin-bottom: 30px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pill-item {
  background: rgba(20, 18, 14, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FAF8F5;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-pill-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold-primary);
}

@media (max-width: 991px) {
  .hero-bg-section {
    min-height: auto;
    padding: 180px 0 60px;
    background: 
      linear-gradient(180deg, 
        rgba(20, 18, 14, 0.45) 0%, 
        rgba(20, 18, 14, 0.85) 45%, 
        rgba(20, 18, 14, 0.96) 100%
      ),
      url('../images/dra-thais-hero.png') no-repeat center 20% / cover;
  }
}


/* ==========================================================================
   EXACT 3-LINE HERO HEADLINE
   ========================================================================== */
.hero-h1 {
  font-family: var(--font-serif) !important;
  font-size: clamp(1.45rem, 2.35vw, 2.25rem) !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
  letter-spacing: -0.01em !important;
  color: #FFFFFF !important;
  margin-bottom: 20px !important;
  max-width: 650px !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8) !important;
}

.hero-h1-line {
  display: block;
  white-space: nowrap;
}

.hero-h1-line .gold-text {
  color: var(--gold-light) !important;
}

@media (max-width: 640px) {
  .hero-h1 {
    font-size: clamp(1.2rem, 5.2vw, 1.55rem) !important;
    line-height: 1.25 !important;
  }
  .hero-h1-line {
    white-space: normal;
  }
}


/* ==========================================================================
   HERO BRAND STACK: LOGO ABOVE BADGE WITH MATCHED WIDTH
   ========================================================================== */
.hero-bg-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(90deg, 
      rgba(20, 18, 14, 0.92) 0%, 
      rgba(20, 18, 14, 0.78) 45%, 
      rgba(20, 18, 14, 0.15) 68%, 
      rgba(20, 18, 14, 0.55) 100%
    ),
    url('../images/dra-thais-hero.png') no-repeat center right / cover;
  border-bottom: 2px solid var(--gold-primary);
  padding: 100px 0 80px;
  overflow: hidden;
  color: #FFFFFF;
}

.hero-brand-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 22px;
  width: 240px;
}

.hero-brand-logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
  border-radius: 8px;
}

.hero-badge-matched {
  width: 100% !important;
  max-width: 240px !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 8px 14px !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 0 !important;
  box-sizing: border-box !important;
}

@media (max-width: 991px) {
  .hero-bg-section {
    min-height: auto;
    padding: 70px 0 60px;
    background: 
      linear-gradient(180deg, 
        rgba(20, 18, 14, 0.75) 0%, 
        rgba(20, 18, 14, 0.92) 40%, 
        rgba(20, 18, 14, 0.98) 100%
      ),
      url('../images/dra-thais-hero.png') no-repeat center 20% / cover;
  }
  
  .hero-brand-stack {
    width: 220px;
  }
  
  .hero-brand-logo, .hero-badge-matched {
    max-width: 220px !important;
  }
}


/* ==========================================================================
   HERO: PURE IMAGE BACKGROUND (ZERO OVERLAY) + DARK HEADLINE (SECTION FONT)
   ========================================================================== */
.hero-bg-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background-image: url('../images/dra-thais-hero.png') !important;
  background-repeat: no-repeat !important;
  background-position: center right !important;
  background-size: cover !important;
  background-color: #FAF9F6 !important;
  border-bottom: 2px solid var(--gold-primary);
  padding: 80px 0;
  overflow: hidden;
  color: var(--text-main);
}

.hero-box {
  max-width: 580px;
  position: relative;
  z-index: 3;
}

.hero-brand-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  width: 240px;
}

.hero-brand-logo {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.hero-badge-matched {
  width: 100% !important;
  max-width: 240px !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 8px 14px !important;
  font-size: 0.76rem !important;
  letter-spacing: 0.04em !important;
  margin-bottom: 0 !important;
  box-sizing: border-box !important;
  background: #FFFFFF !important;
  color: #14120E !important;
  border: 1px solid rgba(197, 160, 89, 0.5) !important;
  box-shadow: 0 2px 8px rgba(20, 18, 14, 0.05) !important;
}

.hero-badge-matched svg {
  color: var(--gold-primary) !important;
}

.hero-h1 {
  font-family: var(--font-headline) !important;
  font-size: clamp(1.55rem, 2.45vw, 2.35rem) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.015em !important;
  color: #14120E !important;
  margin-bottom: 16px !important;
  max-width: 650px !important;
  text-shadow: none !important;
}

.hero-h1-line {
  display: block;
  white-space: nowrap;
}

.hero-h1-line.dark-line {
  color: #14120E !important;
}

.hero-h1-line.gold-line,
.hero-h1-line .gold-text {
  color: #8C661E !important;
}

.hero-p {
  font-size: clamp(0.98rem, 1.15vw, 1.12rem) !important;
  color: #3D3830 !important;
  line-height: 1.65 !important;
  margin-bottom: 28px !important;
  max-width: 540px !important;
  text-shadow: none !important;
}

@media (max-width: 991px) {
  .hero-bg-section {
    min-height: auto;
    padding: 60px 0;
    background-position: 70% center !important;
  }
  
  .hero-brand-stack {
    width: 220px;
  }
  
  .hero-brand-logo, .hero-badge-matched {
    max-width: 220px !important;
  }
}


/* ==========================================================================
   HERO: BIGGER LOGO + PHOTO-STYLE OAB BADGE
   ========================================================================== */
.hero-brand-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
  width: 330px;
  max-width: 100%;
}

.hero-brand-logo {
  width: 100%;
  max-width: 330px;
  height: auto;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.12));
}

.hero-photo-style-badge {
  width: 100%;
  max-width: 330px;
  background: rgba(20, 18, 14, 0.94) !important;
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-primary) !important;
  border-radius: 8px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold-light) !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  box-shadow: 0 4px 14px rgba(20, 18, 14, 0.15);
  box-sizing: border-box;
}

.hero-photo-style-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary) !important;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .hero-brand-stack {
    width: 260px;
  }
  .hero-brand-logo, .hero-photo-style-badge {
    max-width: 260px;
  }
}


/* ==========================================================================
   HERO: OFFICIAL LOGO WITH INTEGRATED OAB (BALANCED HARMONIC SIZE: 255PX)
   ========================================================================== */
.hero-box {
  text-align: left;
}

.hero-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-left: 0 !important;
  margin-right: auto;
  margin-bottom: 22px;
  width: 255px;
  max-width: 100%;
}

.hero-brand-logo {
  width: 100%;
  max-width: 255px;
  height: auto;
  display: block;
  margin-left: 0 !important;
  margin-right: auto;
  margin-bottom: 0;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.08));
}

@media (max-width: 991px) {
  .hero-box {
    text-align: left;
  }
  .hero-brand-stack {
    width: 220px;
    align-items: flex-start;
    margin-left: 0 !important;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .hero-brand-logo {
    max-width: 220px;
  }
}

@media (max-width: 576px) {
  .hero-brand-stack {
    width: 195px;
  }
  .hero-brand-logo {
    max-width: 195px;
  }
}




