/*
Theme Name: IGP — Instituto Garantidor Patrimonial
Theme URI: https://institutogarantidor.com.br
Description: Tema institucional premium para o Instituto Garantidor Patrimonial
Version: 1.1.0
Author: IGP Digital
Text Domain: igp
*/

/* ═══════════════════════════════════════════════════════════
   CUSTOM PROPERTIES
═══════════════════════════════════════════════════════════ */
:root {
  --navy:        #0F2D47;
  --navy-dark:   #091E30;
  --navy-95:     rgba(15, 45, 71, 0.95);
  --navy-80:     rgba(15, 45, 71, 0.80);
  --gold:        #D4AF37;
  --gold-light:  #E8CC6A;
  --gold-10:     rgba(212, 175, 55, 0.10);
  --gold-20:     rgba(212, 175, 55, 0.20);
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --gray:        #6B7280;
  --gray-light:  #E5E7EB;
  --text:        #1C2B38;
  --text-muted:  #4B5C6B;
  --green:       #10B981;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-sub:     'Montserrat', 'Helvetica Neue', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  --max-w:       1200px;
  --max-w-text:  760px;
  --radius:      8px;
  --radius-lg:   16px;

  --shadow-sm:   0 2px 8px rgba(15, 45, 71, 0.08);
  --shadow-md:   0 8px 32px rgba(15, 45, 71, 0.12);
  --shadow-lg:   0 20px 60px rgba(15, 45, 71, 0.16);
  --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.30);

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════
   SKIP LINK (acessibilidade)
═══════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.625rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 1.75vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p {
  font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
  line-height: 1.75;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.container--narrow {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
section { position: relative; }
.section-pad { padding: clamp(64px, 9vw, 120px) 0; }
.section-pad--sm { padding: clamp(40px, 6vw, 72px) 0; }

/* Section headings */
.section-label {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  margin-bottom: 16px;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 16px;
}
.section-title--center { text-align: center; }
.section-title--center::after { margin: 16px auto 0; }
.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}
.section-subtitle--center { text-align: center; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.40);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--lg {
  font-size: 0.9375rem;
  padding: 18px 40px;
}
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
  .btn, .pillar-card, .benefit-card, .post-card, .lp-feature {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}
.site-header.transparent {
  background: transparent;
}
.site-header.scrolled {
  background: var(--navy-95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(212,175,55,0.15), var(--shadow-md);
}

/* Light background pages (blog, single, etc.) */
.site-header.light-bg {
  background: var(--white);
  box-shadow: 0 1px 0 var(--gray-light), var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition);
}
.site-header.scrolled .nav-inner { height: 68px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo svg { width: 36px; height: 44px; flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: 0.01em;
}
/* Logo branca apenas em fundo escuro */
.site-header.transparent .nav-logo-text,
.site-header.scrolled .nav-logo-text {
  color: var(--white);
}
.nav-logo-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--navy); }
/* Links brancos apenas em fundo escuro */
.site-header.transparent .nav-links a,
.site-header.scrolled .nav-links a {
  color: rgba(255,255,255,0.75);
}
.site-header.transparent .nav-links a:hover,
.site-header.scrolled .nav-links a:hover {
  color: var(--white);
}
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  margin-left: 8px;
  border-radius: 4px;
}
.nav-links .nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.transparent .nav-toggle span,
.site-header.scrolled .nav-toggle span {
  background: var(--white);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 24px 40px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-sub);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 16px 32px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-cta {
  margin-top: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 4px;
  border: none;
}
.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}

/* Subtle geometric dot grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Gold diagonal accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom right, transparent 49.9%, var(--white) 50%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 15%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px clamp(20px, 4vw, 48px) 160px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

/* ─── Hero visual (right column) ─── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-inner {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.hero-shield {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 80px rgba(212,175,55,0.10));
}
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 148px;
}
.hero-float-card--1 { top: 10%; right: -20px; }
.hero-float-card--2 { bottom: 14%; left: -20px; }
.hero-float-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-float-value span {
  font-size: 0.875rem;
  font-weight: 500;
}
.hero-float-label {
  font-family: var(--font-sub);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 32px;
}
.hero-badge span {
  font-family: var(--font-sub);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.75vw, 1.25rem);
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  flex-wrap: wrap;
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ═══════════════════════════════════════════════════════════
   SECTION: PILARES (O QUE É O IGP)
═══════════════════════════════════════════════════════════ */
.pillars {
  background: var(--white);
  padding-top: clamp(80px, 10vw, 140px);
}
.pillars-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.pillars-intro-body {
  padding-bottom: 8px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar-card {
  background: var(--white);
  padding: clamp(32px, 4vw, 48px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar-card:hover::after { transform: scaleX(1); }

.pillar-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold-20);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--gold-10);
  transition: var(--transition);
}
.pillar-card:hover .pillar-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.pillar-icon svg { width: 26px; height: 26px; color: var(--gold); transition: var(--transition); }
.pillar-card:hover .pillar-icon svg { color: var(--navy); }

.pillar-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}
.pillar-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   SECTION: COMO FUNCIONA
═══════════════════════════════════════════════════════════ */
.how-it-works {
  background: var(--off-white);
}
.how-it-works .section-title { color: var(--navy); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: clamp(48px, 6vw, 72px);
}
/* Horizontal connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--gold-20), var(--gold), var(--gold-20));
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 0 0 6px var(--off-white);
}
.step-item:hover .step-number {
  background: var(--gold);
  color: var(--navy);
}
.step-item h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.step-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   SECTION: BENEFÍCIOS
═══════════════════════════════════════════════════════════ */
.benefits { background: var(--white); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
}
.benefit-card {
  padding: clamp(28px, 3.5vw, 40px);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.benefit-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   SECTION: LEAD FORM
═══════════════════════════════════════════════════════════ */
.lead-form-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.lead-form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.lead-form-section .section-label { color: var(--gold); }
.lead-form-section .section-title { color: var(--white); }
.lead-form-section .section-title::after { background: var(--gold); }
.lead-form-section .section-subtitle { color: rgba(255,255,255,0.6); }

.lead-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.lead-form-copy {
  position: relative;
  z-index: 1;
}
.lead-form-copy ul {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-form-copy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.lead-form-copy li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold-10);
  border: 1px solid var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23D4AF37' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.form-card h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.form-card .form-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-10);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sub);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
  box-shadow: var(--shadow-gold);
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45);
}
.form-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.form-privacy svg { width: 14px; height: 14px; color: var(--gray); flex-shrink: 0; }
.form-privacy span {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.4;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}
.form-success.show { display: block; }
.form-success .check-icon {
  width: 56px; height: 56px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h4 { color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   WHATSAPP BUTTON (FIXED)
═══════════════════════════════════════════════════════════ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  padding: 14px 22px 14px 16px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  overflow: hidden;
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.50);
}
.whatsapp-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.whatsapp-text { display: block; }
@media (max-width: 480px) {
  .whatsapp-btn { padding: 14px; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  .whatsapp-text { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: clamp(48px, 7vw, 80px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo svg { width: 32px; height: 38px; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 0.875rem;
  line-height: 1.3;
  color: rgba(255,255,255,0.85);
}
.footer-logo-text strong { color: var(--gold); display: block; }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-social a svg { width: 16px; height: 16px; }

.footer-col h3,
.footer-col h5 {
  font-family: var(--font-sub);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-contact strong { color: rgba(255,255,255,0.8); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════════════════
   BLOG — ARCHIVE
═══════════════════════════════════════════════════════════ */
.blog-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.blog-hero h1 { color: var(--white); position: relative; z-index: 1; }
.blog-hero .section-label { position: relative; z-index: 1; }

.blog-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.blog-cat-btn {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--gray-light);
  color: var(--gray);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.blog-cat-btn:hover,
.blog-cat-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin: 0 0 clamp(40px, 5vw, 64px);
}
.post-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.post-card-thumb {
  aspect-ratio: 16/9;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.post-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1A4A6E 100%);
}
.post-card-thumb-placeholder svg { width: 40px; height: 40px; opacity: 0.3; }
.post-card-cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-sub);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 4px;
}
.post-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card-meta {
  font-size: 0.75rem;
  color: var(--gray);
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.post-card-body h3 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--navy);
  transition: var(--transition);
}
.post-card:hover h3 { color: var(--gold); }
.post-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-link {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-top: auto;
}
.post-card-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════════
   BLOG — SINGLE POST
═══════════════════════════════════════════════════════════ */
.single-hero {
  background: var(--navy);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.single-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.single-hero-inner { position: relative; z-index: 1; }
.single-hero .post-cat {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.single-hero h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.single-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.single-meta span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sub);
  display: flex;
  align-items: center;
  gap: 6px;
}
.single-meta span svg { width: 14px; height: 14px; }

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
}
.article-body h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  margin: 2.5em 0 0.75em;
  padding-top: 0.5em;
  border-top: 1px solid var(--gray-light);
}
.article-body h2:first-child { margin-top: 0; border-top: none; }
.article-body h3 {
  font-size: clamp(1.125rem, 1.75vw, 1.375rem);
  margin: 2em 0 0.6em;
}
.article-body p { margin-bottom: 1.5em; }
.article-body ul,
.article-body ol {
  margin: 0 0 1.5em 0;
  padding-left: 0;
}
.article-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.article-body ol { list-style: decimal; padding-left: 20px; }
.article-body ol li {
  margin-bottom: 8px;
  padding-left: 8px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.article-body strong { color: var(--navy); font-weight: 700; }
.article-body em { font-style: italic; }
.article-body a { color: var(--gold); border-bottom: 1px solid var(--gold-20); }
.article-body a:hover { border-color: var(--gold); }
.article-body blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  background: var(--gold-10);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-body blockquote p { margin: 0; color: var(--navy); font-style: italic; font-size: 1.0625rem; }

.article-cta-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 2.5em 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.article-cta-box p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin: 0;
  flex: 1;
}
.article-cta-box strong { color: var(--white); font-size: 1.0625rem; display: block; margin-bottom: 4px; }

/* Related posts */
.related-posts { background: var(--off-white); }

/* ═══════════════════════════════════════════════════════════
   PAGE: SOBRE
═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero .section-label { position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 560px; position: relative; z-index: 1; margin-top: 16px; }

.sobre-mission {
  background: var(--white);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.sobre-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.sobre-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}
.sobre-visual svg { width: 120px; height: 140px; position: relative; z-index: 1; }

.nao-somos {
  background: var(--off-white);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
}
.comparison-card {
  padding: clamp(28px, 3.5vw, 40px);
  border-radius: var(--radius-lg);
}
.comparison-card--no {
  background: #FFF5F5;
  border: 1px solid #FFD5D5;
}
.comparison-card--yes {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}
.comparison-card h4 {
  font-size: 0.75rem;
  font-family: var(--font-sub);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
}
.comparison-card--no h4 { color: #E05252; border-color: #FFBDBD; }
.comparison-card--yes h4 { color: #059669; border-color: #A7F3D0; }
.comparison-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.comparison-card--no li::before { content: '✕'; color: #E05252; font-weight: 700; flex-shrink: 0; }
.comparison-card--yes li::before { content: '✓'; color: #059669; font-weight: 700; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   LANDING PAGES
═══════════════════════════════════════════════════════════ */
.lp-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.lp-hero h1 { color: var(--white); }
.lp-hero p { color: rgba(255,255,255,0.65); margin-top: 16px; margin-bottom: 32px; max-width: 500px; font-size: 1.125rem; }

.lp-pain-points {
  margin: 24px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-pain-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.lp-pain-points li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 40px);
  box-shadow: var(--shadow-lg);
}
.lp-form-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.lp-form-card .form-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.lp-features { background: var(--white); }
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
}
.lp-feature {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.lp-feature:hover {
  border-color: var(--gold-20);
  box-shadow: var(--shadow-sm);
}
.lp-feature-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.lp-feature h4 { margin-bottom: 8px; }
.lp-feature p { font-size: 0.875rem; }

.faq-section { background: var(--off-white); }
.faq-list {
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold-20); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-icon svg { width: 12px; height: 12px; color: var(--gray); transition: var(--transition); }
.faq-item.open .faq-icon svg { color: var(--navy); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .steps-grid::before { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }
  .hero-visual { display: none; }
  .pillars-intro { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-stats { gap: 24px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr !important; gap: 16px; }

  .lead-form-wrap { grid-template-columns: 1fr; }
  .lead-form-copy { order: 2; }
  .form-card { order: 1; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .posts-grid { grid-template-columns: 1fr; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-visual { aspect-ratio: auto; min-height: 200px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .lp-hero-grid { grid-template-columns: 1fr; }
  .lp-features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  .hero::after { height: 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn-group .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   TOUCH TARGETS — min 44px for elderly users
═══════════════════════════════════════════════════════════ */
.btn,
.nav-links a,
.nav-cta,
.nav-mobile a,
.nav-toggle,
.whatsapp-btn,
.post-card-link,
.footer-social a,
.share-btn,
.faq-question {
  min-height: 44px;
  min-width: 44px;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE — TABLES (igp-table)
═══════════════════════════════════════════════════════════ */
.article-body .igp-table,
.igp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-size: 0.9375rem;
  overflow-x: auto;
  display: block;
}
.igp-table thead {
  background: var(--navy);
}
.igp-table thead th {
  color: var(--gold);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}
.igp-table tbody tr {
  border-bottom: 1px solid var(--gray-light);
  transition: background var(--transition);
}
.igp-table tbody tr:nth-child(even) { background: var(--off-white); }
.igp-table tbody tr:hover { background: var(--gold-10); }
.igp-table td {
  padding: 12px 16px;
  color: var(--text-muted);
  line-height: 1.6;
  vertical-align: top;
}
.igp-table td strong { color: var(--navy); }
@media (max-width: 600px) {
  .igp-table { font-size: 0.875rem; }
  .igp-table th,
  .igp-table td { padding: 10px 12px; }
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE — CTA BOX (igp-cta-box)
═══════════════════════════════════════════════════════════ */
.article-body .igp-cta-box,
.igp-cta-box {
  background: var(--navy);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 2.5em 0;
}
.igp-cta-box p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}
.igp-cta-box p strong {
  color: var(--gold) !important;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE — DIVIDER (igp-divider)
═══════════════════════════════════════════════════════════ */
.article-body .igp-divider,
hr.igp-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-20), var(--gold), var(--gold-20), transparent);
  margin: 3em 0;
}

/* ═══════════════════════════════════════════════════════════
   HERO — FOOTNOTE
═══════════════════════════════════════════════════════════ */
.hero-footnote {
  position: absolute;
  bottom: 140px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-sub);
  letter-spacing: 0.04em;
  padding: 0 clamp(20px, 4vw, 48px);
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-footnote { bottom: 80px; }
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMBS
═══════════════════════════════════════════════════════════ */
.breadcrumb-nav {
  background: var(--navy-dark);
  padding: 80px 0 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 14px 0;
  list-style: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.breadcrumb li + li::before {
  content: '›';
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.25);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb li:last-child span {
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE — SHARE BUTTONS
═══════════════════════════════════════════════════════════ */
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 2em 0;
  border-top: 1px solid var(--gray-light);
  margin-top: 2em;
}
.article-share-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  min-height: 44px;
}
.share-btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.share-btn--whatsapp:hover {
  background: #1DAE55;
  transform: translateY(-1px);
}
.share-btn--facebook {
  background: #1877F2;
  color: #fff;
}
.share-btn--facebook:hover {
  background: #0D65DC;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE — AUTHOR BYLINE
═══════════════════════════════════════════════════════════ */
.article-author {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  margin-top: 2.5em;
  border: 1px solid var(--gray-light);
}
.article-author-avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-author-avatar svg { width: 32px; height: 38px; }
.article-author-body { flex: 1; }
.article-author-label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.article-author-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.article-author-bio {
  font-size: 0.875rem !important;
  line-height: 1.65;
  margin: 0 !important;
}
@media (max-width: 480px) {
  .article-author { flex-direction: column; padding: 24px 20px; }
  .article-author-avatar { width: 48px; height: 48px; }
}

/* ═══════════════════════════════════════════════════════════
   SINGLE POST — hero padding adjustment for breadcrumb
═══════════════════════════════════════════════════════════ */
.single-hero { padding-top: 0; }
.breadcrumb-nav + .single-hero .single-hero-inner { padding-top: clamp(32px, 5vw, 56px); }
