:root {
  --primary-color: #003b73; /* Azul PSD */
  --primary-dark: #002244;
  --primary-darker: #001830;
  --secondary-color: #FFCB05; /* Amarelo/Dourado PSD */
  --secondary-dark: #e6b800;
  --text-dark: #1A1A1A;
  --text-light: #ffffff;
  --bg-light: #F9FAFB;
  --bg-cream: #F4F1E3;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --transition: all 0.3s ease;
  --transition-slow: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 10px 40px rgba(0, 34, 68, 0.08);
  --shadow-strong: 0 25px 60px rgba(0, 34, 68, 0.18);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
}

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }

/* ===== ANIMAÇÕES DE REVEAL (scroll) ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* Efeito shine nos botões */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-25deg);
  animation: shine 3.5s ease-in-out infinite;
}

@keyframes shine {
  0%, 60% { left: -100%; }
  100% { left: 160%; }
}

/* Top bar gradient */
.top-bar-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
  background-size: 200% 100%;
  animation: gradientSlide 6s linear infinite;
  z-index: 1001;
}

@keyframes gradientSlide {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* ===== HEADER ===== */
#main-header {
  position: fixed;
  top: 4px;
  left: 0;
  width: 100%;
  background-color: transparent;
  transition: var(--transition);
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 59, 115, 0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease;
}

#main-header.scrolled .header-container {
  padding: 14px 5%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -1px;
  transition: transform 0.3s ease;
}

.logo:hover { transform: scale(1.03); }
.logo span { color: var(--secondary-color); }

/* Menu "pílula de vidro" com efeitos digitais */
.nav-desktop {
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 59, 115, 0.12);
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0, 34, 68, 0.08),
              inset 0 1px 0 rgba(255,255,255,0.6);
}

#main-header.scrolled .nav-desktop {
  background: rgba(0, 59, 115, 0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

.nav-desktop a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-color);
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding: 10px 16px;
  border-radius: 50px;
  overflow: hidden;
}

.nav-desktop a:not(.btn-apoie)::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(120deg, rgba(0, 59, 115, 0.08), rgba(255, 203, 5, 0.12));
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
}

.nav-desktop a:not(.btn-apoie):hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-desktop a:not(.btn-apoie):hover {
  text-shadow: 0 0 12px rgba(0, 59, 115, 0.35);
}

.nav-desktop a:not(.btn-apoie).active {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 59, 115, 0.35),
              0 0 0 1px rgba(255, 203, 5, 0.35),
              0 0 18px rgba(255, 203, 5, 0.25);
}

.nav-desktop a:not(.btn-apoie).active::before { display: none; }

.btn-apoie {
  background-color: var(--secondary-color);
  color: var(--primary-dark) !important;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 203, 5, 0.3);
}

.nav-desktop .btn-apoie {
  padding: 10px 24px;
  margin-left: 6px;
}

.btn-apoie:hover {
  background-color: var(--primary-color);
  color: var(--text-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 59, 115, 0.3);
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
}

/* ===== MENU MOBILE ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--primary-dark), var(--primary-color));
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 6%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--secondary-color);
  color: var(--primary-dark);
  transform: rotate(90deg);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.mobile-menu-nav a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}

.mobile-menu.open .mobile-menu-nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open .mobile-menu-nav a:nth-child(1) { transition-delay: 0.10s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(5) { transition-delay: 0.34s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(6) { transition-delay: 0.40s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(7) { transition-delay: 0.46s; }
.mobile-menu.open .mobile-menu-nav a:nth-child(8) { transition-delay: 0.52s; }

.mobile-menu-nav a:not(.btn-apoie):hover { color: var(--secondary-color); }

.mobile-menu-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at top right, rgba(0, 59, 115, 0.06), transparent 50%),
              radial-gradient(circle at bottom left, rgba(255, 203, 5, 0.06), transparent 50%);
  padding-top: 110px;
  overflow: hidden;
}

/* Formas flutuantes decorativas */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.shape-1 {
  width: 420px;
  height: 420px;
  background: rgba(0, 59, 115, 0.12);
  top: -120px;
  right: -80px;
  animation: float 12s ease-in-out infinite;
}

.shape-2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 203, 5, 0.16);
  bottom: 10%;
  left: -100px;
  animation: float 14s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(0, 59, 115, 0.08);
  top: 40%;
  left: 45%;
  animation: float 10s ease-in-out infinite 2s;
}

.shape-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 59, 115, 0.10) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 0%, transparent 60%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.97); }
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.tag-partido {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 59, 115, 0.08);
  border: 1px solid rgba(0, 59, 115, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 203, 5, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 203, 5, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 203, 5, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.text-highlight { color: var(--primary-color); }

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #4a5568;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-description strong { color: var(--primary-color); }

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--secondary-color);
  color: var(--primary-dark);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 203, 5, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 203, 5, 0.6);
}

.btn-primary i { width: 18px; height: 18px; }

.btn-lg { padding: 20px 44px; font-size: 0.95rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid rgba(0, 59, 115, 0.2);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  background-color: rgba(0, 59, 115, 0.05);
  transform: translateY(-2px);
}

.btn-outline.light {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.btn-outline.light:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #718096;
  font-weight: 600;
  margin-top: 6px;
  max-width: 150px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background-color: rgba(0,0,0,0.1);
}

.stat-icon {
  width: 30px;
  height: 30px;
  color: var(--primary-color);
  margin-bottom: 4px;
}

/* Hero Visual (foto) */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-photo-frame {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 4/5;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--primary-color), var(--primary-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.55);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 203, 5, 0.25);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}

.hero-photo-placeholder i {
  width: 64px;
  height: 64px;
  stroke-width: 1.2;
}

.hero-photo-placeholder p {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}

.hero-photo-ring {
  position: absolute;
  inset: -16px;
  border: 2px dashed rgba(255, 203, 5, 0.45);
  border-radius: 32px;
  animation: spinSlow 30s linear infinite;
  z-index: 0;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-photo-badge {
  position: absolute;
  bottom: 24px;
  left: -30px;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(0,0,0,0.05);
  animation: floatBadge 5s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-photo-badge i {
  color: var(--secondary-color);
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.hero-photo-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--primary-color);
}

.hero-photo-badge span {
  font-size: 0.72rem;
  color: #718096;
}

/* Faixa marquee */
.hero-strip {
  background: var(--primary-color);
  border-top: 4px solid var(--secondary-color);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-strip-content {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-strip:hover .hero-strip-content { animation-play-state: paused; }

.hero-strip-content span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-strip-content i {
  color: var(--secondary-color);
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 6px rgba(255, 203, 5, 0.9));
}

.dot {
  width: 7px;
  height: 7px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: inline-block;
  animation: neonDot 1.6s ease-in-out infinite;
}

/* bolinhas dessincronizadas pra parecer "vivo" */
.hero-strip-content span:nth-child(odd) .dot { animation-delay: 0.4s; }
.hero-strip-content span:nth-child(3n) .dot { animation-delay: 0.8s; }

@keyframes neonDot {
  0%, 100% {
    box-shadow: 0 0 4px 1px rgba(255, 203, 5, 0.7),
                0 0 10px 2px rgba(255, 203, 5, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 8px 3px rgba(255, 203, 5, 1),
                0 0 22px 7px rgba(255, 203, 5, 0.55);
    transform: scale(1.25);
  }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CABEÇALHOS DE SEÇÃO ===== */
.section-header {
  margin-bottom: 70px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .title-divider.center {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 680px;
  margin: 0 auto;
}

.section-subtitle.light { color: rgba(255,255,255,0.75); }

.section-tag {
  display: inline-block;
  border: 1px solid rgba(0, 59, 115, 0.2);
  background-color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(0,0,0,0.6);
  margin-bottom: 24px;
}

.section-tag.light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--secondary-color);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-title.light { color: #fff; }

.title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-dark));
  border-radius: 2px;
  margin-bottom: 30px;
}

/* ===== SEÇÃO SOBRE ===== */
.section-sobre {
  padding: 120px 0;
  background-color: var(--bg-cream);
  position: relative;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-image-container { position: relative; }

.sobre-image-card {
  aspect-ratio: 4/5;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 59, 115, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.sobre-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 59, 115, 0.18);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #e2e8f0, #edf2f7);
  color: #a0aec0;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
}

.image-placeholder i { width: 48px; height: 48px; stroke-width: 1.2; }

/* ===== FOTOS (preenchem o container quando o link é inserido) ===== */
.photo-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.photo-fill.round { border-radius: 50%; }

/* quando tem foto, esconde ícone e texto do placeholder */
.has-photo > i,
.has-photo > p { display: none; }

/* ===== CARROSSEL (seção Quem É) ===== */
.carrossel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.carrossel-slides {
  position: absolute;
  inset: 0;
}

.carrossel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.12);
  filter: brightness(0.85) saturate(1.05);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 6.5s linear,
              filter 1.1s ease;
  will-change: opacity, transform;
}

.carrossel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.carrossel-slide.ativo {
  opacity: 1;
  transform: scale(1);   /* Ken Burns: entra com zoom e assenta suave */
  filter: brightness(1) saturate(1.05);
  z-index: 1;
}

.carrossel-slide.saindo {
  opacity: 0;
  transform: scale(1.06) translateX(-3%);
  z-index: 0;
}

/* linha de "scan" tecnológica que varre a foto na troca */
.carrossel-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18%;
  width: 14%;
  background: linear-gradient(100deg,
    transparent,
    rgba(255, 203, 5, 0.16) 40%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 203, 5, 0.16) 60%,
    transparent);
  transform: skewX(-12deg);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.carrossel.trocando .carrossel-scan {
  animation: scanSweep 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scanSweep {
  0% { left: -18%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: 108%; opacity: 0; }
}

.carrossel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
  background: rgba(0, 24, 48, 0.35);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
}

.carrossel-dots:empty { display: none; }

.carrossel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: width 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.carrossel-dot.ativo {
  width: 26px;
  background: var(--secondary-color);
  box-shadow: 0 0 10px rgba(255, 203, 5, 0.8);
}

.badge-float {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background-color: var(--primary-color);
  color: white;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 59, 115, 0.3);
  border: 1px solid rgba(255, 203, 5, 0.3);
  animation: floatBadge 6s ease-in-out infinite;
}

.badge-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.badge-subtitle {
  color: var(--secondary-color);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

.sobre-exp-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: var(--secondary-color);
  color: var(--primary-dark);
  padding: 18px 24px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(255, 203, 5, 0.4);
  z-index: 2;
}

.exp-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.exp-num em { font-style: normal; opacity: 0.5; }

.exp-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  opacity: 0.8;
}

.sobre-text {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card {
  display: flex;
  gap: 15px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.03);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 59, 115, 0.1);
  border-color: rgba(255, 203, 5, 0.4);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 59, 115, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--secondary-color);
  color: var(--primary-dark);
  transform: rotate(-8deg) scale(1.08);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.85rem;
  color: #718096;
  line-height: 1.45;
}

.link-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 4px;
  transition: var(--transition);
}

.link-action:hover {
  color: var(--secondary-dark);
  border-color: var(--secondary-color);
  gap: 14px;
}

/* ===== TRAJETÓRIA (TIMELINE) ===== */
.section-trajetoria {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--primary-darker) 0%, var(--primary-dark) 45%, var(--primary-color) 100%);
  position: relative;
  overflow: hidden;
}

.section-trajetoria::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Timeline central alternada com linha de progresso */
.timeline2 {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

.timeline2-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.timeline2-progress {
  display: block;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--secondary-color), #ffe066);
  border-radius: 3px;
  box-shadow: 0 0 14px rgba(255, 203, 5, 0.8);
  transition: height 0.15s linear;
}

.t2-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: center;
  padding: 34px 0;
}

.t2-dot {
  grid-column: 2;
  justify-self: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary-dark);
  border: 2px solid rgba(255, 203, 5, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  z-index: 2;
  transition: var(--transition);
  box-shadow: 0 0 0 6px rgba(255, 203, 5, 0.08);
}

.t2-item:hover .t2-dot {
  background: var(--secondary-color);
  color: var(--primary-dark);
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 0 0 10px rgba(255, 203, 5, 0.14), 0 0 30px rgba(255, 203, 5, 0.5);
}

.t2-dot i { width: 25px; height: 25px; }

.t2-dot.gold {
  background: var(--secondary-color);
  color: var(--primary-dark);
  animation: pulse 2s infinite;
}

.t2-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 28px 32px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s ease, border-color 0.3s ease;
}

/* entrada: esquerda desliza da esquerda, direita da direita */
.t2-left .t2-card { grid-column: 1; grid-row: 1; text-align: right; transform: translateX(-60px); }
.t2-right .t2-card { grid-column: 3; grid-row: 1; transform: translateX(60px); }

.t2-item.visible .t2-card {
  opacity: 1;
  transform: translateX(0);
}

.t2-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255, 203, 5, 0.4);
}

.t2-card.gold {
  background: linear-gradient(120deg, rgba(255, 203, 5, 0.15), rgba(255, 203, 5, 0.04));
  border-color: rgba(255, 203, 5, 0.5);
  box-shadow: 0 0 40px rgba(255, 203, 5, 0.12);
}

/* seta conectando o card à linha */
.t2-card::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: inherit;
  border: 1px solid rgba(255,255,255,0.1);
}

.t2-left .t2-card::after {
  right: -8px;
  border-left: none;
  border-bottom: none;
}

.t2-right .t2-card::after {
  left: -8px;
  border-right: none;
  border-top: none;
}

/* ano fantasma gigante no lado oposto */
.t2-ghost-year {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -2px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke-color 0.4s ease, opacity 0.4s ease;
  z-index: 0;
}

.t2-left .t2-ghost-year { right: 4%; }
.t2-right .t2-ghost-year { left: 4%; }

.t2-item:hover .t2-ghost-year {
  -webkit-text-stroke-color: rgba(255, 203, 5, 0.4);
}

.t2-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: rgba(255, 203, 5, 0.12);
  border: 1px solid rgba(255, 203, 5, 0.25);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.t2-card h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.t2-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

/* ===== LEGADO EM NÚMEROS ===== */
.section-legado {
  padding: 120px 0;
  background-color: var(--bg-light);
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.numero-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px 26px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.numero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.numero-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.numero-card:hover::before { transform: scaleX(1); }

.numero-card > i {
  width: 34px;
  height: 34px;
  color: var(--primary-color);
  margin-bottom: 14px;
  transition: var(--transition);
}

.numero-card:hover > i {
  color: var(--secondary-dark);
  transform: scale(1.15);
}

.numero-valor {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 10px;
}

.numero-label {
  font-size: 0.82rem;
  color: #718096;
  font-weight: 500;
  line-height: 1.45;
}

/* Áreas de atuação */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.area-card {
  background: var(--bg-cream);
  border-radius: 18px;
  padding: 30px 26px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  position: relative;
}

.area-card:hover {
  background: var(--primary-color);
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.area-card:hover h3 { color: #fff; }
.area-card:hover p { color: rgba(255,255,255,0.78); }

.area-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 59, 115, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 18px;
  transition: var(--transition);
}

.area-card:hover .area-icon {
  background: var(--secondary-color);
  color: var(--primary-dark);
  transform: rotate(-6deg) scale(1.05);
}

.area-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.area-card p {
  font-size: 0.88rem;
  color: #5a6577;
  line-height: 1.55;
  transition: color 0.3s ease;
}

/* ===== GRANDES OBRAS ===== */
.section-obras {
  padding: 120px 0;
  background: linear-gradient(140deg, var(--primary-color) 0%, var(--primary-dark) 70%, var(--primary-darker) 100%);
  position: relative;
  overflow: hidden;
}

.section-obras::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 203, 5, 0.12), transparent 65%);
  pointer-events: none;
}

.obras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.obra-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 34px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.obra-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255, 203, 5, 0.45);
  transform: translateY(-8px);
}

.obra-card.destaque {
  background: linear-gradient(140deg, rgba(255, 203, 5, 0.16), rgba(255, 203, 5, 0.05));
  border-color: rgba(255, 203, 5, 0.4);
}

.obra-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 203, 5, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  margin-bottom: 20px;
  transition: var(--transition);
}

.obra-card:hover .obra-icon {
  background: var(--secondary-color);
  color: var(--primary-dark);
  transform: rotate(-6deg) scale(1.06);
}

.obra-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.obra-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 18px;
}

.obra-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: rgba(255, 203, 5, 0.1);
  border: 1px solid rgba(255, 203, 5, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
}

/* ===== BANDEIRAS / COMPROMISSOS ===== */
.section-bandeiras {
  padding: 120px 0;
  background-color: var(--bg-cream);
}

.bandeiras-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bandeira-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 28px 34px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.bandeira-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(255, 203, 5, 0.5);
}

.bandeira-num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 900;
  color: rgba(0, 59, 115, 0.06);
  line-height: 1;
  transition: var(--transition);
}

.bandeira-card:hover .bandeira-num { color: rgba(255, 203, 5, 0.35); }

.bandeira-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(0, 59, 115, 0.25);
  transition: var(--transition);
}

.bandeira-card:hover .bandeira-icon {
  transform: rotate(-8deg) scale(1.08);
}

.bandeira-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.bandeira-card p {
  font-size: 0.9rem;
  color: #5a6577;
  line-height: 1.55;
}

/* ===== MANIFESTO ===== */
.section-manifesto {
  padding: 120px 0;
  background-color: #fff;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
}

.quote-box {
  background: linear-gradient(140deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 40px;
  border-radius: 20px;
  margin: 40px 0;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 59, 115, 0.2);
  overflow: hidden;
}

.quote-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 203, 5, 0.18), transparent 70%);
}

.quote-icon {
  color: rgba(255, 203, 5, 0.35);
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-weight: 600;
}

.propostas-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.prop-card {
  display: flex;
  gap: 15px;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: var(--transition);
  background: var(--bg-cream);
}

.prop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 59, 115, 0.08);
  border-color: rgba(255, 203, 5, 0.4);
}

.prop-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,59,115,0.1), rgba(0,59,115,0.02));
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.prop-card:hover .prop-icon {
  background: var(--secondary-color);
  color: var(--primary-dark);
}

.prop-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.prop-card p { font-size: 0.9rem; color: #718096; }

/* ===== CREDENCIAL DIGITAL (sidebar do manifesto) ===== */
.credencial {
  position: sticky;
  top: 100px;
  background: linear-gradient(155deg, var(--primary-darker), var(--primary-dark) 55%, var(--primary-color));
  border-radius: 22px;
  padding: 26px;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 203, 5, 0.25);
  z-index: 0;
}

/* borda animada girando */
.credencial::before {
  content: '';
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 0deg,
    transparent 0deg,
    rgba(255, 203, 5, 0.5) 40deg,
    transparent 90deg,
    transparent 180deg,
    rgba(255, 203, 5, 0.3) 220deg,
    transparent 270deg);
  animation: spinSlow 8s linear infinite;
  z-index: -2;
}

.credencial::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 20px;
  background: linear-gradient(155deg, var(--primary-darker), var(--primary-dark) 55%, var(--primary-color));
  z-index: -1;
}

.cred-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.cred-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--secondary-color);
  background: rgba(255, 203, 5, 0.1);
  border: 1px solid rgba(255, 203, 5, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
}

.cred-uf {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--primary-dark);
  background: var(--secondary-color);
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 203, 5, 0.35);
}

.cred-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.cred-avatar {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255, 203, 5, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.cred-avatar i { width: 32px; height: 32px; }

.cred-avatar-ring {
  position: absolute;
  inset: -7px;
  border: 2px dashed rgba(255, 203, 5, 0.4);
  border-radius: 50%;
  animation: spinSlow 14s linear infinite;
}

.cred-id strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cred-id strong i {
  width: 19px;
  height: 19px;
  color: var(--secondary-color);
  filter: drop-shadow(0 0 5px rgba(255, 203, 5, 0.7));
}

.cred-id span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

.cred-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.cred-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 7px 13px;
  border-radius: 50px;
  transition: var(--transition);
}

.cred-chip:hover {
  background: rgba(255, 203, 5, 0.14);
  border-color: rgba(255, 203, 5, 0.45);
  transform: translateY(-2px);
}

.cred-chip i {
  width: 13px;
  height: 13px;
  color: var(--secondary-color);
}

.cred-metric {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.cred-metric-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
  transition: var(--transition);
}

.cred-metric-item:hover {
  border-color: rgba(255, 203, 5, 0.4);
  background: rgba(255, 203, 5, 0.07);
  transform: translateY(-3px);
}

.cred-metric-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 0 14px rgba(255, 203, 5, 0.4);
}

.cred-metric-item span {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

/* "código de barras" decorativo */
.cred-barcode {
  display: flex;
  align-items: stretch;
  gap: 3px;
  height: 30px;
  margin-bottom: 4px;
  opacity: 0.5;
}

.cred-barcode i {
  flex: 1;
  background: rgba(255,255,255,0.65);
  border-radius: 1px;
}

.cred-barcode i:nth-child(2n) { flex: 0.45; opacity: 0.5; }
.cred-barcode i:nth-child(3n) { flex: 1.6; }
.cred-barcode i:nth-child(5n) { flex: 0.3; opacity: 0.7; }
.cred-barcode i:nth-child(7n) { flex: 2; opacity: 0.4; }

.btn-apoie-block {
  display: block;
  text-align: center;
  background-color: var(--secondary-color);
  color: var(--primary-dark);
  padding: 16px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  margin-top: 30px;
  transition: var(--transition);
}

.btn-apoie-block:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 59, 115, 0.3);
}

/* ===== CTA APOIE ===== */
.section-apoie {
  padding: 130px 0;
  background: linear-gradient(150deg, var(--primary-darker), var(--primary-color));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.apoie-shapes .shape-a {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255, 203, 5, 0.09);
  filter: blur(70px);
  top: -140px;
  left: -120px;
  animation: float 13s ease-in-out infinite;
}

.apoie-shapes .shape-b {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  filter: blur(60px);
  bottom: -120px;
  right: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

.apoie-content {
  position: relative;
  z-index: 1;
}

.apoie-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.apoie-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 auto 44px;
}

.apoie-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.main-footer {
  background-color: var(--primary-darker);
  color: white;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--secondary-color);
}

.footer-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 59, 115, 0.55), transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.logo-footer {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  letter-spacing: -1px;
  display: inline-block;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.logo-footer:hover { transform: scale(1.03); }
.logo-footer span { color: var(--secondary-color); }

.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  max-width: 340px;
  margin-bottom: 26px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.social-btn svg { width: 19px; height: 19px; }

.social-btn:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-dark);
  transform: translateY(-4px) rotate(6deg);
  box-shadow: 0 10px 22px rgba(255, 203, 5, 0.35);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-col:hover .footer-heading::after { width: 60px; }

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease, gap 0.3s ease;
}

.footer-nav a i {
  width: 15px;
  height: 15px;
  color: var(--secondary-color);
  opacity: 0;
  margin-left: -15px;
  transition: opacity 0.3s ease, margin 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
  transform: translateX(6px);
}

.footer-nav a:hover i {
  opacity: 1;
  margin-left: 0;
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
}

.footer-contact i {
  width: 17px;
  height: 17px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.footer-cta {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 0.83rem;
  position: relative;
  z-index: 1;
}

.footer-motto {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.footer-motto span { color: var(--secondary-color); }

.footer-bottom a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.footer-bottom a:hover { opacity: 0.8; }

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
#whatsapp-float {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 998;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2.5s infinite;
}

#whatsapp-float svg {
  width: 30px;
  height: 30px;
}

#whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
  animation-play-state: paused;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-tooltip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--primary-dark);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding: 9px 16px;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  box-shadow: 0 8px 20px rgba(0, 34, 68, 0.3);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--primary-dark);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

#whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 34, 68, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, background 0.3s ease;
  z-index: 998;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-4px);
}

#back-to-top i { width: 22px; height: 22px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .numeros-grid, .areas-grid, .bandeiras-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .obras-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-desktop a { padding: 9px 11px; font-size: 0.72rem; }
  .nav-desktop .btn-apoie { padding: 9px 18px; }
  .logo { font-size: 1.5rem; }
}

@media (max-width: 992px) {
  .nav-desktop { display: none; }
  .nav-mobile-btn { display: block; }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 20px;
  }

  .hero-visual { order: -1; }
  .hero-photo-frame { width: min(300px, 80%); }
  .hero-photo-badge { left: -10px; }

  .sobre-grid, .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .sobre-exp-badge { top: -18px; left: 0; }

  .badge-float {
    right: 12px;
    bottom: 12px;
  }

  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Timeline vira coluna única no tablet/celular */
  .timeline2-line { left: 28px; transform: none; }

  .t2-item {
    grid-template-columns: 56px 1fr;
    padding: 26px 0;
  }

  .t2-dot {
    grid-column: 1;
    grid-row: 1;
    width: 48px;
    height: 48px;
    align-self: start;
  }

  .t2-dot i { width: 20px; height: 20px; }

  .t2-left .t2-card,
  .t2-right .t2-card {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    transform: translateX(40px);
    margin-left: 18px;
  }

  .t2-left .t2-card::after,
  .t2-right .t2-card::after {
    left: -8px;
    right: auto;
    border: 1px solid rgba(255,255,255,0.1);
    border-right: none;
    border-top: none;
  }

  .t2-ghost-year { display: none; }
}

@media (max-width: 768px) {
  .hero-actions { flex-direction: column; }

  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .apoie-actions .btn-primary,
  .apoie-actions .btn-outline { width: auto; }

  .features-grid, .propostas-cards,
  .numeros-grid, .areas-grid,
  .bandeiras-grid, .obras-grid {
    grid-template-columns: 1fr;
  }

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

  .section-sobre, .section-trajetoria, .section-legado,
  .section-obras, .section-bandeiras, .section-manifesto {
    padding: 80px 0;
  }

  .section-apoie { padding: 90px 0; }

  .timeline2-line { left: 21px; }
  .t2-item { grid-template-columns: 42px 1fr; }
  .t2-dot { width: 42px; height: 42px; }
  .t2-dot i { width: 18px; height: 18px; }
  .t2-card { padding: 20px 22px; }
  .t2-left .t2-card, .t2-right .t2-card { margin-left: 14px; }

  #back-to-top { bottom: 20px; right: 20px; width: 46px; height: 46px; }
  #whatsapp-float { bottom: 80px; right: 20px; width: 54px; height: 54px; }
  #whatsapp-float svg { width: 27px; height: 27px; }
  .whatsapp-tooltip { display: none; }
}

/* Celulares pequenos */
@media (max-width: 480px) {
  .container { padding: 0 6%; }

  .hero { padding-top: 95px; }
  .hero-photo-frame { width: min(250px, 88%); }
  .hero-photo-badge { padding: 10px 14px; left: -4px; bottom: 14px; }
  .hero-photo-badge i { width: 24px; height: 24px; }
  .hero-photo-ring { inset: -10px; }

  .hero-stats { gap: 16px; }
  .stat-number { font-size: 1.7rem; }
  .stat-label { font-size: 0.65rem; max-width: 130px; }

  .hero-strip-content { font-size: 0.75rem; gap: 28px; }

  .sobre-exp-badge { padding: 12px 16px; }
  .exp-num { font-size: 1.1rem; }
  .badge-float { padding: 14px 20px; }
  .badge-title { font-size: 1.15rem; }

  .carrossel-dots { bottom: 12px; padding: 6px 10px; }

  .credencial { padding: 20px 16px; }
  .cred-header { gap: 12px; }
  .cred-avatar { width: 56px; height: 56px; }
  .cred-id strong { font-size: 1.05rem; }
  .cred-metric { gap: 7px; }
  .cred-metric-item { padding: 11px 5px; }
  .cred-metric-item strong { font-size: 1.2rem; }
  .cred-metric-item span { font-size: 0.58rem; }

  .quote-box { padding: 26px 22px; }
  .quote-text { font-size: 1.15rem; }

  .numero-card { padding: 26px 18px; }
  .numero-valor { font-size: 2.1rem; }

  .obra-card, .bandeira-card, .area-card { padding: 26px 20px; }

  .apoie-title { font-size: 1.7rem; }
  .apoie-text { font-size: 1rem; }
  .btn-lg { padding: 16px 30px; font-size: 0.85rem; }

  .footer-bottom { font-size: 0.75rem; }
  .logo-footer { font-size: 1.6rem; }
}
