/* ==========================================================================
   INVESTIDOR COM SENTIDO — Landing Page
   Identidade: branco / preto / dourado / azul marinho · Montserrat
   ========================================================================== */

:root {
  --navy-900: #060d1f;
  --navy-800: #0a1633;
  --navy-700: #0d1f45;
  --navy-600: #14295c;
  --navy-500: #1d3a7a;
  --gold-300: #f3dd9a;
  --gold-400: #e6c44c;
  --gold-500: #d4af37;
  --gold-600: #b8952a;
  --white: #ffffff;
  --offwhite: #f7f8fb;
  --gray-100: #eef0f5;
  --gray-300: #c9cedb;
  --gray-500: #7c8598;
  --gray-700: #3d4659;
  --black: #0a0d14;
  --shadow-sm: 0 4px 16px rgba(10, 22, 51, 0.08);
  --shadow-md: 0 12px 40px rgba(10, 22, 51, 0.14);
  --shadow-lg: 0 24px 70px rgba(10, 22, 51, 0.22);
  --shadow-gold: 0 12px 40px rgba(212, 175, 55, 0.35);
  --radius: 18px;
  --font: 'Montserrat', 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

::selection { background: var(--gold-500); color: var(--navy-900); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-500), var(--gold-600)); border-radius: 6px; }

/* ==========================================================================
   BACKGROUND SKYLINE
   ========================================================================== */
.skyline-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 55%, #0b1833 100%);
  pointer-events: none;
}
.skyline-bg svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 42vh;
  opacity: 0.55;
  animation: skyline-drift 26s var(--ease) infinite alternate;
}
@keyframes skyline-drift {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-18px) scale(1.03); }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(6, 13, 31, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 12px;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.brand-text {
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.3px;
}
.brand-text em { color: var(--gold-400); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold-400); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900) !important;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 44px rgba(212,175,55,0.45); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--gold-400);
  border-radius: 3px;
  transition: all 0.3s var(--ease);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 54px rgba(212,175,55,0.5); }
.btn-block { width: 100%; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 75% 20%, rgba(29, 58, 122, 0.55), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent 75%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 60%);
  filter: blur(30px);
  animation: glow-pulse 7s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes glow-pulse {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 1; transform: scale(1.12); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold-500);
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 0 rgba(212,175,55,0.5);
  animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}
.eyebrow.center { justify-content: center; }
.eyebrow.gold { color: var(--gold-400); }

.hero-title {
  font-size: clamp(38px, 5.2vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-title .gold { color: var(--gold-400); }
.hero-title em { font-style: normal; color: var(--gray-300); font-weight: 600; }
.hero-title strong {
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500), var(--gold-300));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-sub strong { color: var(--gold-300); font-weight: 700; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.badge:hover { transform: translateY(-3px); background: rgba(212,175,55,0.14); border-color: var(--gold-500); }
.badge-icon { font-size: 16px; }

.hero-note { color: rgba(255,255,255,0.5); font-size: 12.5px; margin-top: 18px; }

/* Hero side / expert card */
.hero-side { position: relative; }
.expert-card {
  position: relative;
  border-radius: 26px;
  padding: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
  border: 1px solid rgba(212,175,55,0.3);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  overflow: visible;
  animation: card-float 6s ease-in-out infinite alternate;
}
@keyframes card-float {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}
.expert-photo-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/4.6;
}
.expert-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.6s var(--ease);
}
.expert-card:hover .expert-photo { transform: scale(1.04); }
.expert-photo-ring {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.35), inset 0 -60px 80px -20px rgba(6,13,31,0.6);
  pointer-events: none;
}
.expert-info { padding: 18px 4px 4px; text-align: center; }
.expert-info h3 { color: var(--white); font-size: 21px; font-weight: 800; }
.expert-info p { color: var(--gold-400); font-size: 13px; font-weight: 600; margin-top: 2px; }
.expert-tags { color: rgba(255,255,255,0.55) !important; font-weight: 400 !important; font-size: 12px !important; }

.expert-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(6,13,31,0.92);
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: var(--shadow-md);
  color: var(--white);
  animation: float-bob 5s ease-in-out infinite alternate;
  z-index: 3;
}
.expert-float .float-ico { font-size: 24px; }
.expert-float strong { font-size: 14px; font-weight: 800; display: block; color: var(--gold-400); }
.expert-float small { font-size: 11px; color: rgba(255,255,255,0.6); }
.float-1 { top: -22px; left: -34px; animation-delay: 0.5s; }
.float-2 { bottom: -18px; right: -24px; animation-delay: 1.4s; }
@keyframes float-bob {
  from { transform: translateY(0); }
  to { transform: translateY(-9px); }
}

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(212,175,55,0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 5;
}
.scroll-hint span {
  width: 4px; height: 9px;
  border-radius: 4px;
  background: var(--gold-400);
  animation: scroll-wheel 1.8s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ==========================================================================
   SECTIONS GENERIC
   ========================================================================== */
.section { position: relative; padding: 110px 0; overflow: hidden; }
.section-light { background: var(--white); color: var(--navy-900); }
.section-dark {
  background: linear-gradient(170deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--white);
}

.section-title {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  text-align: center;
}
.section-title em { font-style: normal; color: var(--gold-600); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-400); }
.section-sub {
  text-align: center;
  font-size: 16.5px;
  color: var(--gray-700);
  max-width: 720px;
  margin: 0 auto 54px;
}
.section-sub.light { color: rgba(255,255,255,0.72); }

/* ==========================================================================
   CARDS GRID (Para quem é)
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 46px;
}
.card {
  position: relative;
  background: var(--offwhite);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.4);
}
.card:hover::before { transform: scaleX(1); }
.card-ico {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  font-size: 27px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  transition: transform 0.45s var(--ease);
}
.card:hover .card-ico { transform: rotate(-8deg) scale(1.1); }
.card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--gray-700); }

.not-for {
  max-width: 820px;
  margin: 0 auto;
  padding: 22px 28px;
  border-radius: var(--radius);
  background: var(--navy-800);
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  text-align: center;
  border-left: 5px solid var(--gold-500);
  box-shadow: var(--shadow-md);
}
.not-for strong { color: var(--gold-400); }
.not-for em { font-style: normal; font-weight: 700; color: var(--white); }

/* ==========================================================================
   PILARES (Mecanismo)
   ========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 50px;
}
.pillar {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 22px;
  padding: 38px 28px 32px;
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s, background 0.4s;
  overflow: hidden;
}
.pillar::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
  transition: transform 0.5s var(--ease);
}
.pillar:hover {
  transform: translateY(-10px);
  background: rgba(212,175,55,0.08);
  border-color: var(--gold-500);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.pillar:hover::after { transform: scale(2); }
.pillar-num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 42px;
  font-weight: 900;
  color: rgba(212,175,55,0.15);
  line-height: 1;
  transition: color 0.4s;
}
.pillar:hover .pillar-num { color: rgba(212,175,55,0.4); }
.pillar-icon {
  width: 64px; height: 64px;
  margin-bottom: 20px;
  color: var(--gold-400);
  transition: transform 0.5s var(--ease);
}
.pillar:hover .pillar-icon { transform: translateY(-6px) scale(1.08); }
.pillar-icon svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 14px rgba(212,175,55,0.4)); }
.pillar h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; color: var(--white); }
.pillar p { font-size: 14.5px; color: rgba(255,255,255,0.72); }
.pillar p strong { color: var(--gold-300); }

.mechanism-note {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(212,175,55,0.05));
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.85);
}
.mechanism-note-ico { font-size: 40px; flex-shrink: 0; animation: float-bob 4s ease-in-out infinite; }
.mechanism-note p { font-size: 15.5px; }
.mechanism-note em { color: var(--gold-300); font-style: normal; font-weight: 700; }

/* ==========================================================================
   CAPACIDADES
   ========================================================================== */
.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cap {
  position: relative;
  padding: 34px 28px;
  background: var(--offwhite);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.cap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.cap:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-md); }
.cap:hover::before { opacity: 1; }
.cap-ico {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  font-size: 25px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.cap:hover .cap-ico {
  transform: translateY(-5px) rotate(6deg);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-500);
}
.cap h3 { font-size: 17px; font-weight: 800; margin-bottom: 9px; position: relative; z-index: 1; }
.cap p { font-size: 14.5px; color: var(--gray-700); position: relative; z-index: 1; }

/* ==========================================================================
   JORNADA (Timeline)
   ========================================================================== */
.journey { background: linear-gradient(175deg, var(--navy-900) 0%, var(--navy-800) 100%); }
.journey-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.14;
  filter: grayscale(0.6);
  pointer-events: none;
}
.journey .container { position: relative; z-index: 2; }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 20px auto 60px;
  padding: 30px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--gold-500) 8%, var(--gold-500) 92%, transparent);
  border-radius: 3px;
  box-shadow: 0 0 18px rgba(212,175,55,0.5);
}
.tl-item {
  position: relative;
  width: 50%;
  padding: 0 48px 46px;
}
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; text-align: left; }
.tl-dot {
  position: absolute;
  top: 22px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 4px solid var(--navy-900);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.25), 0 0 24px rgba(212,175,55,0.6);
  z-index: 2;
}
.tl-item:nth-child(odd) .tl-dot { right: -9px; }
.tl-item:nth-child(even) .tl-dot { left: -9px; }
.tl-dot.gold-dot { background: var(--gold-300); box-shadow: 0 0 0 4px rgba(212,175,55,0.35), 0 0 34px rgba(212,175,55,0.9); }

.tl-card {
  display: inline-block;
  max-width: 100%;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 18px;
  padding: 24px 26px;
  text-align: left;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s, background 0.4s;
  backdrop-filter: blur(6px);
}
.tl-card:hover {
  transform: translateY(-6px);
  background: rgba(212,175,55,0.09);
  border-color: var(--gold-500);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.tl-card-gold { border-color: var(--gold-500); background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.05)); }
.tl-year {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.tl-card h3 { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.tl-card h3 em { color: var(--gold-400); font-style: normal; }
.tl-card p { font-size: 14px; color: rgba(255,255,255,0.72); }
.tl-card p strong { color: var(--gold-300); }

.journey-quote {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 44px;
  background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(212,175,55,0.04));
  border-left: 5px solid var(--gold-500);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.journey-quote p {
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}
.journey-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  color: var(--gold-400);
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   CONTATO / FORM
   ========================================================================== */
.contact { background: linear-gradient(180deg, var(--offwhite) 0%, var(--white) 100%); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: start;
}
.contact-left .section-title { text-align: left; }
.contact-left .section-sub { text-align: left; margin: 0 0 28px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
}
.contact-list li span { font-size: 17px; flex-shrink: 0; }

.form-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy-800), var(--gold-500), var(--navy-800));
  background-size: 200% 100%;
  animation: gold-slide 5s linear infinite;
}
@keyframes gold-slide {
  to { background-position: -200% 0; }
}
.form-card h3 { font-size: 23px; font-weight: 800; color: var(--navy-900); }
.form-sub { color: var(--gray-500); font-size: 14px; margin-bottom: 26px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 7px;
}
.field .opt { color: var(--gray-500); font-weight: 500; font-size: 11.5px; }
.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--navy-900);
  background: var(--offwhite);
  border: 2px solid var(--gray-100);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.field input::placeholder { color: var(--gray-300); }
.field input:focus,
.field select:focus {
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
}
.field input.error { border-color: #d64545; box-shadow: 0 0 0 4px rgba(214,69,69,0.12); }
.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237c8598' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

.form-msg {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form-msg.success { display: block; background: #e8f7ee; color: #1d7a44; border: 1px solid #b8e6c8; }
.form-msg.error { display: block; background: #fdeeee; color: #b03030; border: 1px solid #f2c4c4; }
.form-msg.loading { display: block; background: var(--offwhite); color: var(--gray-700); border: 1px solid var(--gray-100); }

.form-disclaimer {
  margin-top: 18px;
  font-size: 11.5px;
  color: var(--gray-500);
  line-height: 1.6;
  text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 40px;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.footer-inner { text-align: center; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand .brand-text { font-size: 16px; }
.footer-tag { font-size: 13.5px; color: var(--gold-400); font-weight: 600; margin-bottom: 18px; }
.footer-legal {
  max-width: 860px;
  margin: 0 auto 18px;
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ==========================================================================
   ANIMAÇÕES DE ENTRADA / SCROLL REVEAL
   ========================================================================== */
.slide-up, .slide-in-left, .slide-in-right, .card-in-left, .card-in-up, .card-in-right,
.cap-in-left, .cap-in-up, .cap-in-right, .pillar-left, .pillar-center, .pillar-right,
.tl-item, .section-reveal, .hero-side {
  opacity: 0;
  will-change: transform, opacity;
}
.slide-up { transform: translateY(46px); }
.slide-in-left { transform: translateX(-60px); }
.slide-in-right { transform: translateX(60px); }
.card-in-left, .cap-in-left { transform: translateX(-52px); }
.card-in-right, .cap-in-right { transform: translateX(52px); }
.card-in-up, .cap-in-up { transform: translateY(48px) scale(0.96); }
.pillar-left { transform: translateX(-60px) rotate(-1.2deg); }
.pillar-right { transform: translateX(60px) rotate(1.2deg); }
.pillar-center { transform: translateY(60px) scale(0.94); }
.tl-item { transform: translateY(40px); }

.in-view { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.section-reveal.in-view .hero-content > * { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.d1 { transition-delay: 0.08s !important; }
.d2 { transition-delay: 0.16s !important; }
.d3 { transition-delay: 0.24s !important; }
.d4 { transition-delay: 0.32s !important; }
.d5 { transition-delay: 0.40s !important; }
.d6 { transition-delay: 0.48s !important; }
.d7 { transition-delay: 0.56s !important; }

/* stagger helpers for grids */
.cards-grid .card:nth-child(1).in-view { transition-delay: 0.05s; }
.cards-grid .card:nth-child(2).in-view { transition-delay: 0.15s; }
.cards-grid .card:nth-child(3).in-view { transition-delay: 0.25s; }
.cards-grid .card:nth-child(4).in-view { transition-delay: 0.35s; }
.cards-grid .card:nth-child(5).in-view { transition-delay: 0.45s; }
.cards-grid .card:nth-child(6).in-view { transition-delay: 0.55s; }
.caps-grid .cap:nth-child(1).in-view { transition-delay: 0.05s; }
.caps-grid .cap:nth-child(2).in-view { transition-delay: 0.15s; }
.caps-grid .cap:nth-child(3).in-view { transition-delay: 0.25s; }
.caps-grid .cap:nth-child(4).in-view { transition-delay: 0.35s; }
.caps-grid .cap:nth-child(5).in-view { transition-delay: 0.45s; }
.caps-grid .cap:nth-child(6).in-view { transition-delay: 0.55s; }
.pillars .pillar:nth-child(1).in-view { transition-delay: 0.05s; }
.pillars .pillar:nth-child(2).in-view { transition-delay: 0.2s; }
.pillars .pillar:nth-child(3).in-view { transition-delay: 0.35s; }
.timeline .tl-item:nth-child(1).in-view { transition-delay: 0.05s; }
.timeline .tl-item:nth-child(2).in-view { transition-delay: 0.12s; }
.timeline .tl-item:nth-child(3).in-view { transition-delay: 0.19s; }
.timeline .tl-item:nth-child(4).in-view { transition-delay: 0.26s; }
.timeline .tl-item:nth-child(5).in-view { transition-delay: 0.33s; }
.timeline .tl-item:nth-child(6).in-view { transition-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding-top: 130px; }
  .hero-side { max-width: 460px; margin: 0 auto; width: 100%; }
  .cards-grid, .caps-grid, .pillars { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .float-1 { left: -8px; }
  .float-2 { right: -8px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 340px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(6,13,31,0.97);
    backdrop-filter: blur(18px);
    border-left: 1px solid rgba(212,175,55,0.25);
    transition: right 0.45s var(--ease);
    padding: 40px;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .cards-grid, .caps-grid, .pillars { grid-template-columns: 1fr; }
  .timeline::before { left: 18px; }
  .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 40px 56px; }
  .tl-item:nth-child(odd) .tl-dot, .tl-item:nth-child(even) .tl-dot { left: 10px; right: auto; }
  .hero-badges { gap: 8px; }
  .badge { font-size: 12px; padding: 7px 12px; }
  .journey-quote { padding: 28px 24px; }
  .journey-quote p { font-size: 17px; }
  .form-card { padding: 30px 22px; }
  .expert-float { padding: 9px 12px; }
  .expert-float .float-ico { font-size: 19px; }
  .float-1 { top: -14px; }
}

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