/* 
  Seven Gestão & Representação - Design System Executivo & Internacional
  Design Turbo: Midnight Executive & Global Diplomacy
  Cores Primárias: Midnight Navy, Champagne Gold, Slate, Off-White
*/

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

:root {
  /* Color Palette - Midnight Executive */
  --bg-navy-dark: #060B14;
  --bg-navy-main: #0B1328;
  --bg-navy-card: #101B36;
  --bg-navy-light: #18264A;
  
  --gold-primary: #C5A059;
  --gold-hover: #D4AF37;
  --gold-light: #E8D3A7;
  --gold-ink: #775719;
  --gold-glow: rgba(197, 160, 89, 0.18);
  --gold-glow-strong: rgba(197, 160, 89, 0.35);

  --slate-dark: #0F172A;
  --slate-body: #334155;
  --slate-muted: #64748B;
  --slate-light: #94A3B8;
  
  --bg-offwhite: #F8FAFC;
  --bg-surface-white: #FFFFFF;
  --border-light: #E2E8F0;
  --border-dark-subtle: rgba(255, 255, 255, 0.08);
  --border-gold-subtle: rgba(197, 160, 89, 0.22);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Transitions & Shadows */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --shadow-card: 0 20px 40px -15px rgba(11, 19, 40, 0.07);
  --shadow-gold: 0 12px 32px -6px rgba(197, 160, 89, 0.28);
  --shadow-dark-heavy: 0 30px 60px rgba(0, 0, 0, 0.55);
  
  /* Container Widths */
  --max-width: 1280px;
  --nav-height: 88px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-navy-dark);
  color: var(--slate-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 3000;
  padding: 0.75rem 1.25rem;
  background: var(--gold-primary);
  color: var(--bg-navy-dark);
  font-weight: 600;
  border-radius: 4px;
  box-shadow: var(--shadow-dark-heavy);
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

p {
  font-size: 1.05rem;
  color: var(--slate-light);
  font-weight: 400;
  line-height: 1.75;
}

p.lead {
  font-size: 1.22rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

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

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

/* Utilities & Highlights */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.gradient-gold-text {
  background: linear-gradient(135deg, #FFF2CE 0%, #C5A059 55%, #E8D3A7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold-glow);
  color: var(--gold-light);
  border: 1px solid var(--border-gold-subtle);
}

.badge-tag.dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-dark-subtle);
  color: var(--gold-light);
}

.badge-tag.pulse::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  display: inline-block;
  animation: pulseGold 2.2s infinite ease-in-out;
}

@keyframes pulseGold {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.45;
  max-width: 100%;
  min-height: 44px;
  text-align: center;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  border: 1px solid transparent;
  white-space: normal;
}

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

.btn-gold {
  background: var(--gold-primary);
  color: var(--bg-navy-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -6px rgba(197, 160, 89, 0.45);
}

.btn-outline,
.btn-outline-light {
  background: rgba(255, 255, 255, 0.03);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.btn-outline:hover,
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #128C7E;
  color: #FFFFFF;
  box-shadow: 0 10px 25px -5px rgba(18, 140, 126, 0.4);
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(37, 211, 102, 0.45);
}

.btn-navy {
  background: var(--bg-navy-card);
  color: #FFFFFF;
  border: 1px solid var(--border-dark-subtle);
}

.btn-navy:hover {
  background: var(--bg-navy-light);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

/* Header & Navigation */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  background: rgba(6, 11, 20, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-navbar.scrolled {
  background: rgba(6, 11, 20, 0.94);
  height: 74px;
  border-bottom: 1px solid var(--border-dark-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #FFFFFF;
}

.brand-symbol-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(197, 160, 89, 0.2));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.925rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Drawer Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ====================================================
   HERO SECTION - CINEMATOGRÁFICA COM THREE.JS
   ==================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-navy-dark);
  padding: calc(var(--nav-height) + 3rem) 0 5rem 0;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: 15%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, rgba(11, 19, 40, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 680px;
}

.hero-title {
  color: #FFFFFF;
  margin: 1.5rem 0;
  font-size: clamp(2.7rem, 5.2vw, 4.3rem);
  line-height: 1.12;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 1.7vw, 1.25rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Globe Visual Container */
.hero-globe-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-globe-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#hero-globe-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.globe-caption-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(7, 13, 25, 0.88);
  border: 1px solid rgba(197, 160, 89, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold-light);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  z-index: 5;
}

.globe-caption-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  display: inline-block;
}

/* ====================================================
   GLOBAL PRESENCE METRIC BAR
   ==================================================== */
.presence-bar {
  background: linear-gradient(180deg, var(--bg-navy-dark) 0%, var(--bg-navy-card) 50%, var(--bg-navy-dark) 100%);
  border-top: 1px solid var(--border-dark-subtle);
  border-bottom: 1px solid var(--border-dark-subtle);
  padding: 4rem 0;
  color: #FFFFFF;
  position: relative;
  z-index: 10;
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem;
}

.presence-item {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--gold-primary);
  padding-left: 1.5rem;
  position: relative;
}

.presence-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  width: 2px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  background: #FFFFFF;
  transition: transform 0.6s ease;
}

.presence-item:hover::after {
  transform: scaleY(1);
}

.presence-number {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.presence-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1.4;
}

/* Common Section Padding */
.section-padding {
  padding: 8rem 0;
  position: relative;
}

.section-padding.dark {
  background: 
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(20, 36, 74, 0.45) 0%, transparent 70%),
    #070D1A;
  color: #FFFFFF;
}

.section-padding.deep-dark {
  background: 
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(16, 27, 54, 0.4) 0%, transparent 70%),
    #050912;
  color: #FFFFFF;
}

/* ====================================================
   OPÇÃO 2: CONTRASTE EDITORIAL EXECUTIVO
   (Marfim / Off-White Nobre com acentos Midnight & Ouro)
   ==================================================== */
.section-padding.light-executive {
  background-color: #F8FAFC;
  color: #1E293B;
  border-top: 1px solid rgba(197, 160, 89, 0.35);
  border-bottom: 1px solid rgba(197, 160, 89, 0.35);
  position: relative;
}

.section-padding.light-executive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-primary) 50%, transparent 100%);
}

.section-padding.light-executive .section-title,
.section-padding.light-executive h2,
.section-padding.light-executive h3,
.section-padding.light-executive h4 {
  color: #0B1328 !important;
}

.section-padding.light-executive p,
.section-padding.light-executive .lead {
  color: #334155 !important;
}

.section-padding.light-executive .badge-tag {
  background: rgba(197, 160, 89, 0.12) !important;
  color: var(--gold-ink) !important;
  border: 1px solid rgba(197, 160, 89, 0.45) !important;
  font-weight: 600;
}

/* Cards de Presença Bilateral em Light Executive */
.section-padding.light-executive .presence-hub-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(197, 160, 89, 0.35) !important;
  box-shadow: 0 20px 40px -15px rgba(11, 19, 40, 0.08) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.section-padding.light-executive .presence-hub-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary) !important;
  box-shadow: 0 25px 50px -12px rgba(197, 160, 89, 0.2) !important;
}

.section-padding.light-executive .presence-hub-card h3 {
  color: #0B1328 !important;
}

.section-padding.light-executive .presence-hub-card p {
  color: #475569 !important;
}

.section-padding.light-executive .feature-item span:last-child {
  color: #334155 !important;
}

.section-padding.light-executive .presence-hub-card div[style*="background: rgba(7, 13, 25, 0.6)"] {
  background: #F1F5F9 !important;
  border: 1px solid rgba(197, 160, 89, 0.3) !important;
}

.section-padding.light-executive .presence-hub-card div[style*="background: rgba(7, 13, 25, 0.6)"] div:nth-child(2) {
  color: #0B1328 !important;
}

.section-padding.light-executive .presence-hub-card div[style*="background: rgba(7, 13, 25, 0.6)"] div:nth-child(3),
.section-padding.light-executive .presence-hub-card div[style*="background: rgba(7, 13, 25, 0.6)"] div:nth-child(4) {
  color: #475569 !important;
}

.section-padding.light-executive .legal-disclaimer {
  background: #FFFFFF !important;
  border-left: 4px solid var(--gold-primary) !important;
  border-top: 1px solid #E2E8F0 !important;
  border-right: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
  box-shadow: 0 10px 25px rgba(11, 19, 40, 0.04) !important;
  color: #475569 !important;
}

.section-padding.light-executive .legal-disclaimer strong {
  color: #0B1328 !important;
}

/* Cards de Valores e Serviços em Light Executive */
.section-padding.light-executive .dark-glass-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(197, 160, 89, 0.3) !important;
  box-shadow: 0 20px 40px -15px rgba(11, 19, 40, 0.07) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Contraste editorial da home: cartões claros sobre a seção noturna. */
.home-services-section .dark-glass-card {
  background: #F8FAFC;
  border-color: #E2E8F0;
  box-shadow: 0 20px 40px -15px rgba(3, 10, 24, 0.22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-services-section .dark-glass-card:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: 0 25px 50px -12px rgba(3, 10, 24, 0.28), 0 12px 30px -12px rgba(197, 160, 89, 0.24);
}

.home-services-section .dark-glass-card h3 { color: #0B1328; }
.home-services-section .dark-glass-card p { color: #475569; }
.home-services-section .dark-glass-card .service-link { color: var(--gold-ink); }
.home-services-section .dark-glass-card .service-link:hover { color: #4C3810; }
.home-services-section .dark-glass-card .service-icon-box {
  background: rgba(197, 160, 89, 0.12);
  border-color: rgba(197, 160, 89, 0.35);
  color: var(--gold-ink);
}
.home-services-section .dark-glass-card:hover .service-icon-box { background: var(--gold-primary); color: #0B1328; }

/* A seção de liderança recebe uma pausa clara antes do destaque do Summit. */
.section-padding.home-leadership-section { background-color: var(--bg-surface-white); }
.home-leadership-section .executive-portrait-frame {
  background: linear-gradient(145deg, rgba(197, 160, 89, 0.38), rgba(226, 232, 240, 0.9));
  box-shadow: 0 30px 60px -18px rgba(11, 19, 40, 0.24);
}
.home-leadership-section .leadership-quote-card {
  box-shadow: 0 25px 50px rgba(11, 19, 40, 0.24);
}
.home-leadership-section .leadership-quote-card .quote-text { color: var(--gold-light) !important; }
.home-leadership-section .leadership-quote-card .quote-author { color: rgba(255, 255, 255, 0.7) !important; }

.section-padding.light-executive .dark-glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary) !important;
  box-shadow: 0 25px 50px -12px rgba(197, 160, 89, 0.2) !important;
}

.section-padding.light-executive .dark-glass-card h3 {
  color: #0B1328 !important;
}

.section-padding.light-executive .dark-glass-card p {
  color: #475569 !important;
}

.section-padding.light-executive .service-icon-box {
  background: rgba(197, 160, 89, 0.12) !important;
  border: 1px solid rgba(197, 160, 89, 0.35) !important;
}

/* Methodology Cards em Light Executive (servicos.html) */
.section-padding.light-executive .methodology-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(197, 160, 89, 0.35) !important;
  box-shadow: 0 15px 35px -10px rgba(11, 19, 40, 0.07) !important;
}

.section-padding.light-executive .methodology-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary) !important;
  box-shadow: 0 25px 50px -12px rgba(197, 160, 89, 0.2) !important;
}

.section-padding.light-executive .methodology-card h3 {
  color: #0B1328 !important;
}

.section-padding.light-executive .methodology-card p {
  color: #475569 !important;
}

/* Contact Card & Formulário em Light Executive (contato.html) */
.section-padding.light-executive .contact-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(197, 160, 89, 0.35) !important;
  box-shadow: 0 25px 55px -15px rgba(11, 19, 40, 0.08) !important;
}

.section-padding.light-executive .contact-card h2,
.section-padding.light-executive .contact-card h3 {
  color: #0B1328 !important;
}

.section-padding.light-executive .form-label {
  color: #0B1328 !important;
  font-weight: 600;
}

.section-padding.light-executive .form-input,
.section-padding.light-executive .form-select,
.section-padding.light-executive .form-textarea {
  background: #F8FAFC !important;
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
}

.section-padding.light-executive .form-input::placeholder,
.section-padding.light-executive .form-textarea::placeholder {
  color: #526174 !important;
}

.section-padding.light-executive .form-input:focus,
.section-padding.light-executive .form-select:focus,
.section-padding.light-executive .form-textarea:focus {
  background: #FFFFFF !important;
  border-color: var(--gold-primary) !important;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2) !important;
}

.section-padding.light-executive .whatsapp-card-box {
  background: #FFFFFF !important;
  border: 1px solid rgba(197, 160, 89, 0.35) !important;
  box-shadow: 0 15px 35px -10px rgba(11, 19, 40, 0.07) !important;
}

.section-padding.light-executive .whatsapp-card-box h4 {
  color: #0B1328 !important;
}

.section-padding.light-executive .whatsapp-card-box p,
.section-padding.light-executive .whatsapp-card-box span {
  color: #475569 !important;
}

/* Legal Document em Light Executive (privacidade.html) */
.section-padding.light-executive .legal-document {
  background: #FFFFFF !important;
  border: 1px solid rgba(197, 160, 89, 0.35) !important;
  box-shadow: 0 25px 55px -15px rgba(11, 19, 40, 0.08) !important;
  color: #334155 !important;
}

.section-padding.light-executive .legal-document h2,
.section-padding.light-executive .legal-document h3 {
  color: #0B1328 !important;
  border-bottom-color: rgba(197, 160, 89, 0.3) !important;
}

.section-padding.light-executive .legal-document p,
.section-padding.light-executive .legal-document li {
  color: #334155 !important;
}

.section-padding.light-executive .legal-document strong {
  color: #0B1328 !important;
}

.section-padding.light-executive .legal-document div[style*="border-bottom"] {
  border-bottom-color: #E2E8F0 !important;
}

/* Métricas do Seven Summit em Light Executive (projetos.html) */
.section-padding.light-executive .summit-metrics-box {
  background: #FFFFFF !important;
  border: 1px solid rgba(197, 160, 89, 0.35) !important;
  box-shadow: 0 15px 35px -10px rgba(11, 19, 40, 0.07) !important;
}

.section-padding.light-executive .summit-metrics-box div > div:last-child {
  color: #475569 !important;
}


/* Opção 3: Midnight Sapphire com Fusão Suave de Topo e Base (Contraste sem corte seco) */
.section-padding.midnight-sapphire {
  background: 
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(37, 71, 140, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, #070D1A 0%, #0D1B3A 25%, #0D1B3A 75%, #050912 100%);
  color: #FFFFFF;
  position: relative;
}

.section-padding.midnight-sapphire .presence-hub-card {
  background: rgba(11, 22, 48, 0.75);
  border-color: rgba(197, 160, 89, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.section-header {
  margin-bottom: 4.5rem;
}

.section-header.center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin: 1.25rem 0;
  color: #FFFFFF;
}

/* ====================================================
   DARK GLASSMORPHISM SERVICE CARDS
   ==================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 2.25rem;
}

.dark-glass-card {
  background: rgba(16, 27, 54, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 10px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.dark-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.dark-glass-card:hover {
  transform: translateY(-8px);
  background: rgba(24, 38, 74, 0.75);
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 30px rgba(197, 160, 89, 0.15);
}

.dark-glass-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-primary);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.dark-glass-card:hover .service-icon-box {
  background: var(--gold-primary);
  color: var(--bg-navy-dark);
  transform: scale(1.05);
}

.dark-glass-card h3 {
  margin-bottom: 1.15rem;
  color: #FFFFFF;
}

.dark-glass-card p {
  font-size: 0.98rem;
  color: var(--slate-light);
  margin-bottom: 2rem;
  flex-grow: 1;
  line-height: 1.7;
}

.service-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.service-link:hover {
  color: #FFFFFF;
  gap: 0.9rem;
}

/* ====================================================
   EXECUTIVE LEADERSHIP (MANUEL AZEVEDO)
   ==================================================== */
.leadership-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 4.5rem;
  align-items: center;
}

.executive-portrait-frame {
  position: relative;
  border-radius: 12px;
  padding: 0.85rem;
  background: linear-gradient(145deg, rgba(197, 160, 89, 0.3), rgba(7, 13, 25, 0.8));
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: var(--shadow-dark-heavy);
}

.executive-portrait-img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  display: block;
}

.leadership-quote-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: rgba(11, 19, 40, 0.94);
  border: 1px solid var(--gold-primary);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.75rem 2rem;
  border-radius: 8px;
  max-width: 340px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.quote-author {
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

.feature-list {
  list-style: none;
  margin: 2.2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  color: var(--gold-primary);
  font-size: 1.15rem;
  margin-top: 0.15rem;
  line-height: 1;
}

/* ====================================================
   SECTORS & TRANSCONTINENTAL REACH
   ==================================================== */
.sector-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.65fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border-gold-subtle);
}
.sector-intro h3 {
  max-width: 12ch;
  margin: 0 0 1.5rem;
  color: var(--bg-offwhite);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-weight: 500;
}
.sector-intro h3 em { color: var(--gold-light); font-weight: 400; }
.sector-intro p {
  max-width: 36ch;
  margin: 0;
  color: #B8C3D3;
  font-size: 0.95rem;
  line-height: 1.8;
}
.sector-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 3vw, 3rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.sector-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  padding: 1.5rem 0;
}
.sector-item::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--border-gold-subtle);
  transform: scaleX(var(--sector-line-scale, 1));
  transform-origin: left center;
  pointer-events: none;
}
.sector-item:nth-child(-n+2) { padding-top: 0.25rem; }
.sector-icon { flex: 0 0 28px; margin-top: 0.125rem; color: var(--gold-primary); }
.sector-name { color: var(--bg-offwhite); font-size: 1rem; line-height: 1.65; font-weight: 500; }
.sector-name > span { display: block; color: #B8C3D3; font-size: 0.9rem; font-weight: 400; }
@media (max-width: 1000px) {
  .sector-overview { grid-template-columns: 1fr; gap: 2.5rem; }
  .sector-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
  .sector-intro h3 { margin-bottom: 0; }
}
@media (max-width: 600px) {
  .sector-overview { margin-top: 3rem; padding-top: 2.5rem; gap: 2rem; }
  .sector-intro, .sector-list { grid-template-columns: 1fr; }
  .sector-intro { gap: 1.25rem; }
  .sector-item { padding: 1.25rem 0; }
  .sector-item:nth-child(2) { padding-top: 1.25rem; }
}

/* ====================================================
   SEVEN SUMMIT 2025 HIGHLIGHT
   ==================================================== */
.summit-highlight-card {
  background: linear-gradient(135deg, rgba(16, 27, 54, 0.85) 0%, rgba(6, 11, 20, 0.95) 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 12px;
  padding: 3.5rem;
  box-shadow: var(--shadow-dark-heavy);
  position: relative;
  overflow: hidden;
}

.summit-highlight-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ====================================================
   CALL TO ACTION BANNER
   ==================================================== */
.cta-banner {
  background: radial-gradient(circle at 50% 30%, rgba(197, 160, 89, 0.15) 0%, rgba(6, 11, 20, 0.95) 75%), var(--bg-navy-dark);
  color: #FFFFFF;
  padding: 7rem 0;
  border-top: 1px solid var(--border-dark-subtle);
  position: relative;
  text-align: center;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.15rem;
}

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: #040810;
  color: rgba(255, 255, 255, 0.68);
  padding: 5.5rem 0 2.5rem 0;
  border-top: 1px solid var(--border-dark-subtle);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  margin-top: 1.15rem;
  max-width: 330px;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  margin-bottom: 1.15rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
}

/* ====================================================
   MODAL INSTITUCIONAL
   ==================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-navy-main);
  border: 1px solid var(--border-gold-subtle);
  border-radius: 12px;
  width: 90%;
  max-width: 620px;
  padding: 3rem;
  position: relative;
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.25s ease;
  color: #FFFFFF;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--slate-light);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.modal-close:hover {
  background: rgba(197, 160, 89, 0.2);
  color: var(--gold-light);
  border-color: var(--gold-primary);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #FFFFFF;
  background: rgba(6, 11, 20, 0.6);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(6, 11, 20, 0.9);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-status {
  min-height: 1.7em;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.form-status.is-error { color: #F87171; }
.form-status.is-success { color: #34D399; }

/* Legal Disclaimer Box */
.legal-disclaimer {
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--slate-light);
}

/* ====================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ==================================================== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-globe-wrapper {
    height: 420px;
  }

  .leadership-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
  }

  .leadership-quote-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 1.5rem;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 1120px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 82%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    background: var(--bg-navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 1.5rem 2rem;
    transition: transform 0.3s ease;
    border-left: 1px solid var(--border-dark-subtle);
    transform: translateX(100%);
    z-index: 999;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.7);
  }

  .nav-menu.active {
    visibility: visible;
    transform: translateX(0);
  }

  .header-navbar { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(6, 11, 20, 0.97); }

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }
}

@media (max-width: 680px) {
  :root { --nav-height: 74px; }

  .container { padding: 0 1.25rem; }

  .hero-section {
    min-height: auto;
    padding: calc(var(--nav-height) + 2rem) 0 4rem 0;
  }

  .hero-title {
    font-size: clamp(2.35rem, 9.5vw, 3.1rem);
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .hero-globe-wrapper {
    height: 320px;
  }

  .section-padding {
    padding: 5rem 0;
  }

  .summit-highlight-card {
    padding: 2rem 1.5rem;
  }

  .modal-container {
    width: calc(100% - 1.5rem);
    padding: 2.25rem 1.25rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .btn {
    width: 100%;
  }
}

/* ====================================================
   INTERNAL PAGES SPECIFIC COMPONENTS
   ==================================================== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 3.5rem) 0 4.5rem 0;
  background: 
    radial-gradient(circle at 75% 20%, rgba(197, 160, 89, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(20, 36, 74, 0.35) 0%, transparent 50%),
    linear-gradient(180deg, #050810 0%, #070D1A 100%);
  border-bottom: 1px solid rgba(197, 160, 89, 0.18);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.5) 50%, transparent 100%);
  pointer-events: none;
}

.page-hero-content {
  max-width: 820px;
  position: relative;
  z-index: 10;
}

.page-hero-title {
  color: #FFFFFF;
  margin: 1.25rem 0 1.25rem 0;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.15;
}

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

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.8;
  font-weight: 300;
}

/* Presence Hub Cards (Lisboa & Brasil) */
.presence-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.presence-hub-card {
  background: rgba(16, 27, 54, 0.7);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 12px;
  padding: 3rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.presence-hub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.presence-hub-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(197, 160, 89, 0.15);
}

.presence-hub-card:hover::before {
  opacity: 1;
}

/* Methodology Grid (4 Steps) */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.methodology-card {
  background: rgba(16, 27, 54, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.methodology-card:hover {
  border-color: rgba(197, 160, 89, 0.45);
  background: rgba(24, 38, 74, 0.7);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 1.15rem;
}

/* Legal Document Formatting */
.legal-document {
  background: rgba(16, 27, 54, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  padding: 4rem;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: var(--shadow-dark-heavy);
}

.legal-document h2 {
  margin: 2.75rem 0 1.25rem 0;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-dark-subtle);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #FFFFFF;
}

.legal-document h2:first-of-type {
  margin-top: 0;
}

.legal-document h3 {
  margin: 1.75rem 0 0.85rem 0;
  color: var(--gold-light);
  font-size: 1.3rem;
}

.legal-document p, .legal-document li {
  color: var(--slate-light);
  line-height: 1.85;
  margin-bottom: 1.15rem;
}

.legal-document ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 680px) {
  .legal-document {
    padding: 2.25rem 1.5rem;
  }
  .presence-hub-card {
    padding: 2rem 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Acabamento da versão de apresentação: identidade preservada. */
[id] { scroll-margin-top: calc(var(--nav-height) + 1.5rem); }
.leadership-grid > *, .form-group { min-width: 0; }
.contact-card, .service-detail-card { padding: clamp(1.25rem, 4vw, 3.5rem); border-radius: 12px; }
.service-benefits { padding: clamp(1rem, 3vw, 2rem); }
.btn svg, .footer-contact-info svg, .globe-caption-badge::before { flex-shrink: 0; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.form-help { font-size: 0.875rem; line-height: 1.65; margin: 0 0 1rem; color: var(--slate-light); }
.form-input::placeholder, .form-textarea::placeholder { color: #A6B2C5; opacity: 1; }
.email-draft { margin-top: 1rem; font-size: 0.9rem; overflow-wrap: anywhere; }
.email-draft summary { cursor: pointer; text-decoration: underline; text-underline-offset: 0.2em; padding: 0.5rem 0; }
.email-draft label, .email-draft textarea, .draft-destination { display: block; margin: 0.75rem 0; }
.draft-retry { display: inline-block; margin: 0.75rem 0; text-decoration: underline; }
.light-executive .email-draft .btn, .light-executive .btn-outline { color: #0B1328; border-color: #64748B; background: transparent; }
.light-executive .email-draft .btn:hover, .light-executive .btn-outline:hover { background: #E9EDF3; }
.light-executive .service-link, .light-executive .hub-label { color: var(--gold-ink); }
.light-executive .contact-email { color: var(--gold-ink); overflow-wrap: anywhere; }
.summit-metrics-box { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; padding: 1.75rem; border-radius: 10px; }
.summit-metric-value { font-family: var(--font-heading); font-size: 2rem; color: var(--gold-ink); font-weight: 700; }
.btn-whatsapp { background: #08776C; }
.btn-whatsapp:hover { background: #096A61; }
.light-executive .form-status { color: #334155; }
.globe-caption-badge { max-width: 100%; white-space: normal; text-align: center; width: max-content; }
.globe-fallback { position: absolute; width: 85%; height: 85%; top: 7.5%; left: 7.5%; color: var(--gold-primary); }
.globe-city {
  position: absolute; top: 0; left: 0; z-index: 2; pointer-events: none;
  padding: 3px 8px; border-radius: 3px; background: rgba(6, 11, 20, 0.88);
  color: var(--gold-light); font-size: 0.75rem; line-height: 1.5; white-space: nowrap;
}
#hero-globe-container:not(.globe-ready) .globe-city { visibility: hidden; }
.globe-motion-toggle {
  position: absolute; bottom: -1.9rem; left: 50%; transform: translateX(-50%);
  display: block; width: max-content; max-width: 100%; margin: 0; padding: 0.5rem 0.75rem;
  min-height: 44px; border: 0; background: transparent; color: var(--slate-light);
  font: inherit; font-size: 0.75rem; cursor: pointer;
  text-decoration: underline; text-underline-offset: 0.25em;
}
.globe-motion-toggle[hidden] { display: none; }
.globe-motion-toggle:hover { color: var(--gold-light); }
.summit-image-window { position: relative; overflow: hidden; border-radius: 8px; border: 1px solid var(--border-gold-subtle); }
.summit-parallax-image { display: block; width: 100%; height: auto; }

/* Methodology: natural scrolling, with a readable static/mobile baseline. */
.method-section { background: var(--bg-offwhite); color: var(--slate-body); }
.method-section p { color: var(--slate-body); }
.method-layout { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.method-visual h2 { color: var(--bg-navy-main); font-size: clamp(2.5rem, 4.5vw, 4rem); line-height: 1.05; margin-bottom: 1.5rem; }
.method-visual > p { max-width: 36ch; font-size: 1.05rem; }
.method-diagram { width: 100%; height: auto; display: block; margin: 1.5rem 0; overflow: visible; }
.method-track, .method-progress { stroke-width: 2; stroke: #CBD5E1; }
.method-progress { stroke: var(--gold-ink); stroke-dasharray: 1; stroke-dashoffset: 0; }
.method-node circle { fill: var(--bg-offwhite); stroke: var(--gold-ink); stroke-width: 1.5; }
.method-node text { fill: var(--gold-ink); font: 500 14px var(--font-body); text-anchor: middle; }
.method-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem 1rem; }
.method-nav a { color: var(--slate-body); font-size: 0.85rem; padding: 0.65rem 0; min-height: 44px; text-underline-offset: 0.3em; }
.method-nav a:hover, .method-nav a[aria-current] { color: var(--gold-ink); text-decoration: underline; }
.method-steps { list-style: none; margin: 0; padding: 0; }
.method-step { display: grid; grid-template-columns: 3rem 1fr; gap: 1.25rem; border-top: 1px solid var(--border-light); padding: 2rem 0; }
.method-number { color: var(--gold-ink); font: 500 2.5rem/1 var(--font-heading); }
.method-step h3 { color: var(--bg-navy-main); font-size: 1.7rem; margin-bottom: 0.8rem; line-height: 1.15; }
.method-step p { line-height: 1.75; margin-bottom: 1rem; }
.method-outcome { color: var(--gold-ink); font-size: 0.8rem; font-weight: 600; }
.method-enhanced .method-progress { transition: stroke-dashoffset 0.45s ease; }
.method-enhanced .is-complete circle { fill: var(--gold-ink); }
.method-enhanced .is-complete text { fill: white; }
.method-enhanced .is-current { border-top-color: var(--gold-ink); }

/* Commercial corridors replace identical case cards with directional diagrams. */
.trade-routes { margin-top: 3.5rem; }
.trade-route { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: center; gap: clamp(2rem, 6vw, 6rem); padding: 3rem 0; border-top: 1px solid var(--border-gold-subtle); }
.route-map { min-width: 0; }
.route-map svg { width: 100%; height: auto; display: block; overflow: visible; }
.trade-route-track { stroke: var(--border-gold-subtle); stroke-width: 1.5; }
.trade-route-line { stroke: var(--gold-light); stroke-width: 2; }
.route-map circle { fill: var(--bg-navy-dark); stroke: var(--gold-light); stroke-width: 2; }
.route-labels { display: flex; justify-content: space-between; gap: 1rem; color: var(--gold-light); font-size: 0.9rem; }
.route-labels span:last-child { text-align: right; }
.route-copy h3 { color: white; font-size: clamp(1.8rem, 2.7vw, 2.3rem); line-height: 1.15; margin-bottom: 1rem; }
.route-copy p { margin: 0 0 1rem; color: #B8C3D3; }
.route-copy .route-action { margin-bottom: 0; font-size: 0.9rem; }
.route-action strong { color: var(--gold-light); font-weight: 600; }
.route-disclaimer { color: #A6B2C5; font-size: 0.85rem; max-width: 720px; margin: 0 auto; }
@media (min-width: 1000px) and (min-height: 700px) and (prefers-reduced-motion: no-preference) {
  .method-enhanced .method-visual { position: sticky; top: calc(var(--nav-height) + 2rem); }
  .method-enhanced .method-step { min-height: 250px; }
}
@media (max-width: 999px) {
  .method-layout { grid-template-columns: 1fr; }
  .method-visual > p { max-width: 55ch; }
  .method-diagram { max-width: 440px; margin: 0.5rem 0; }
  .method-nav { max-width: 440px; }
}
@media (max-width: 680px) {
  .trade-route { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 0; }
  .route-map { max-width: 420px; width: 100%; }
  .route-map svg { max-height: 110px; }
  .method-step { grid-template-columns: 2rem 1fr; gap: 0.75rem; }
  .method-number { font-size: 2rem; }
}
#hero-globe-container.globe-ready .globe-fallback { display: none; }
#hero-globe-container:not(.globe-ready) canvas { visibility: hidden; }
@media (max-width: 680px) {
  .badge-tag { max-width: 100%; white-space: normal; }
  .service-detail-card h3 { overflow-wrap: anywhere; }
  .modal-close { top: 0.65rem; right: 0.65rem; width: 44px; height: 44px; }
  .modal-container > .badge-tag { max-width: calc(100% - 2.5rem); }
}
@media (max-width: 480px) {
  .summit-metrics-box { grid-template-columns: 1fr; gap: 1rem; }
}
