/* ============================================================
   LANDING PAGE - DESIGN SYSTEM (harmonizado com a Ficha Cadastral)
   ============================================================ */

:root {
  --bg-primary: #070a13;
  --bg-secondary: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.72);
  --bg-card-hover: rgba(30, 41, 59, 0.88);

  --border-color: rgba(255, 255, 255, 0.1);

  --brand-blue: #2563eb;
  --brand-emerald: #059669;
  --brand-gold: #d97706;

  --grad-mercosul: linear-gradient(135deg, #1e3a8a 0%, #0d9488 50%, #059669 100%);
  --grad-accent: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  --grad-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 6px 20px -4px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(59, 130, 246, 0.25);
  --shadow-emerald: 0 0 25px rgba(16, 185, 129, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html:has(.lightbox-open) { overflow: hidden; }

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: clip;
}

::selection {
  background: rgba(59, 130, 246, 0.35);
  color: var(--text-main);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.45), rgba(16, 185, 129, 0.45));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(148, 163, 184, 0.55); }

body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}

body::before {
  width: 60vmax;
  height: 60vmax;
  top: -25vmax;
  left: -20vmax;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22), transparent 60%);
  animation: floatBlob1 24s ease-in-out infinite alternate;
}

body::after {
  width: 55vmax;
  height: 55vmax;
  bottom: -25vmax;
  right: -18vmax;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.18), transparent 60%);
  animation: floatBlob2 28s ease-in-out infinite alternate;
}

@keyframes floatBlob1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(6vmax, 4vmax) scale(1.12); }
}

@keyframes floatBlob2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-5vmax, -4vmax) scale(1.1); }
}

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

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 10, 19, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-main);
  min-width: 0;
}

.nav-logo {
  width: 136px;
  height: 136px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
  will-change: transform;
}

.nav-logo::after {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.55), rgba(251, 191, 36, 0) 70%);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: -1;
}

.nav-brand:hover .nav-logo,
.nav-logo:hover {
  transform: scale(1.12);
  filter: drop-shadow(0 0 18px rgba(251, 191, 36, 0.8)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

.nav-brand:hover .nav-logo::after,
.nav-logo:hover::after {
  opacity: 1;
  transform: scale(1);
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.nav-brand-text strong {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-brand-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}

.nav-links a i {
  font-size: 0.82rem;
  color: var(--brand-gold);
  transition: var(--transition);
}

.nav-links a:hover i {
  color: #6ee7b7;
  transform: translateY(-1px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 9px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle:hover {
  border-color: var(--brand-blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-mercosul);
  background-size: 160% 160%;
  color: #ffffff;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cta:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(37, 99, 235, 0.45);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.hamburger:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-glow);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 150px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 26s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.09); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 19, 0.72) 0%, rgba(7, 10, 19, 0.55) 45%, rgba(7, 10, 19, 0.92) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(30, 58, 138, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 65%, rgba(5, 150, 105, 0.25) 0%, transparent 55%);
}

.hero-content {
  max-width: 900px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  animation: heroIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.16));
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #93c5fd;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
  background: linear-gradient(135deg, #ffffff 0%, #bae6fd 55%, #6ee7b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 900px;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: #cbd5e1;
  max-width: 720px;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.btn-hero:hover::after { left: 130%; }

.btn-hero--primary {
  background: var(--grad-mercosul);
  background-size: 160% 160%;
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-hero--primary:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 0 36px rgba(37, 99, 235, 0.5);
}

.btn-hero--ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-hero--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn-hero--lg {
  padding: 17px 34px;
  font-size: 1rem;
}

.btn-hero--gold {
  background: var(--grad-gold);
  background-size: 160% 160%;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(217, 119, 6, 0.45);
}

.btn-hero--gold:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 0 38px rgba(245, 158, 11, 0.55);
}

/* ============================================================
   CTA STRIP - INSTRUÇÕES FINANCEIRAS E CADASTRAIS
   ============================================================ */

.cta-strip {
  position: relative;
  padding: 34px 0;
  background:
    radial-gradient(900px 300px at 15% -50%, rgba(245, 158, 11, 0.18) 0%, transparent 60%),
    radial-gradient(900px 300px at 85% -50%, rgba(37, 99, 235, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(7, 10, 19, 1) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.cta-strip-icon {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  background: var(--grad-gold);
  color: #ffffff;
  font-size: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 32px rgba(217, 119, 6, 0.45);
  position: relative;
  overflow: hidden;
}

.cta-strip-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.cta-strip:hover .cta-strip-icon::after { left: 130%; }

.cta-strip-text {
  flex: 1;
  min-width: 260px;
}

.cta-strip-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.cta-strip-text h2 {
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-strip-text p {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.6;
}

.hero-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-meta-item i {
  color: var(--brand-gold);
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: var(--transition);
}

.hero-scroll:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glow);
}

@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat {
  text-align: center;
  padding: 10px 8px;
}

.stat-num {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.stat::before {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  margin: 0 auto 14px;
  background: var(--grad-gold);
  border-radius: 3px;
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   SECTIONS GENERIC
   ============================================================ */

.section {
  padding: 90px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(7, 10, 19, 0) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   SOBRE O COMITÊ (Institucional)
   ============================================================ */

.section--sobre {
  background: linear-gradient(180deg, rgba(7, 10, 19, 0) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(7, 10, 19, 0) 100%);
}

.about-lead {
  position: relative;
  max-width: 940px;
  margin: 0 auto 44px;
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-left: 4px solid var(--brand-gold);
  border-radius: var(--radius-md);
  padding: 30px 34px 30px 74px;
  box-shadow: var(--shadow-lg);
}

.about-lead i {
  position: absolute;
  left: 26px;
  top: 26px;
  font-size: 1.6rem;
  color: var(--brand-gold);
  opacity: 0.85;
}

.about-lead p {
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.8;
  color: #dbe4f3;
  font-weight: 500;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-card {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: var(--shadow-glow);
}

.about-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  background: var(--grad-mercosul);
  box-shadow: var(--shadow-glow);
}

.about-card-head h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.about-card-head small {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-text {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-full);
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #a7f3d0;
  transition: var(--transition);
}

.about-chip i {
  color: var(--brand-emerald);
  font-size: 0.78rem;
}

.about-chip:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-2px);
}

/* ============================================================
   SECTOR CARDS
   ============================================================ */

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.sector-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.sector-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55), var(--shadow-glow);
}

.sector-card--wide {
  grid-column: span 2;
}

.sector-img {
  height: 215px;
  overflow: hidden;
  position: relative;
}

.sector-card--wide .sector-img { height: 250px; }

.sector-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card:hover .sector-img img {
  transform: scale(1.07);
}

.sector-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 10, 19, 0.85) 100%);
}

.sector-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
}

.sector-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  background: var(--grad-accent);
  box-shadow: var(--shadow-emerald);
  margin-top: -52px;
  z-index: 2;
  position: relative;
  border: 3px solid rgba(7, 10, 19, 0.9);
}

.sector-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.sector-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.sector-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #93c5fd;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.sector-link:hover {
  color: #6ee7b7;
  gap: 12px;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item:nth-child(5) {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1e3a8a 0%, #0d9488 60%, #059669 100%);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  animation: galleryIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes galleryIn {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 10, 19, 0.82) 100%);
  opacity: 0.85;
  transition: var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gallery-caption span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.gallery-caption i {
  color: #ffffff;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption i {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   PILLARS (Capital & Tecnologia)
   ============================================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.pillar {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: var(--shadow-glow);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  background: var(--grad-mercosul);
  box-shadow: var(--shadow-glow);
}

.pillar h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.pillar p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   FINANCING CARD
   ============================================================ */

.financing-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(15, 23, 42, 0.85) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.financing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(105deg, transparent 42%, rgba(245, 158, 11, 0.12) 50%, transparent 58%);
  animation: shimmerSweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0%   { transform: translateX(-30%); }
  100% { transform: translateX(30%); }
}

.financing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.financing-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.financing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-gold);
  color: #ffffff;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
}

.financing-card-top h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.financing-card-top p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 680px;
}

.financing-stamp {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.5), var(--shadow-glow);
  animation: stampFloat 5s ease-in-out infinite alternate;
}

@keyframes stampFloat {
  from { transform: translateY(0) rotate(-3deg); }
  to   { transform: translateY(-7px) rotate(3deg); }
}

.financing-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.financing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.fstep {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
}

.fstep:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.fstep-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.fstep strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
}

.fstep small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.5;
}

.financing-cta {
  margin-top: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.financing-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--border-color);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(7, 10, 19, 1) 100%);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
}

.footer-col--brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
}

.footer-logo {
  width: 136px;
  height: 136px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
  will-change: transform;
}

.footer-logo:hover {
  transform: scale(1.12);
  filter: drop-shadow(0 0 18px rgba(251, 191, 36, 0.8)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

.footer-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.footer-partners {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-partners img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  border: 1px solid var(--border-color);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-main);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: #6ee7b7;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact li i {
  color: var(--brand-gold);
  margin-top: 4px;
}

.footer-contact li a {
  color: #6ee7b7;
  font-weight: 700;
}

/* ============================================================
   FOOTER TRUST (Selos de Segurança & Formas de Pagamento)
   ============================================================ */

.footer-trust {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-color);
}

.footer-trust-col h5 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-main);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-trust-col h5::before {
  content: '';
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-accent);
}

.trust-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 7px 15px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.trust-seal i {
  color: #6ee7b7;
  font-size: 0.92rem;
}

.trust-seal:hover {
  border-color: rgba(110, 231, 183, 0.45);
  color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.payment-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 34px;
  background: #ffffff;
  border-radius: 8px;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}

.payment-method:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: var(--shadow-md);
}

.payment-method--pix { color: #10b981; }
.payment-method--visa { color: #1a1f71; }
.payment-method--mastercard { color: #eb001b; }
.payment-method--amex { color: #2e77bc; }
.payment-method--diners { color: #0079be; }
.payment-method--boleto { color: #d97706; font-size: 1.65rem; }
.payment-method--ted { color: #059669; font-size: 1.35rem; }
.payment-method--applepay { color: #000000; font-size: 1.35rem; }
.payment-method--gpay { color: #4285f4; font-size: 1.35rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-photo-credit {
  text-align: center;
  margin-top: 18px;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

.footer-langs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-mini {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.lang-mini:hover {
  color: var(--text-main);
  border-color: var(--text-dim);
}

.lang-mini.active {
  background: var(--grad-accent);
  color: #ffffff;
  border-color: transparent;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */

.float-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 800;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: waPulse 2.6s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45), 0 8px 26px rgba(37, 211, 102, 0.4); }
  50%      { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 26px rgba(37, 211, 102, 0.4); }
}

.float-whatsapp:hover {
  transform: scale(1.1) rotate(8deg);
}

.back-to-top {
  position: fixed;
  bottom: 98px;
  right: 34px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

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

.back-to-top:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.back-to-top.visible:hover { transform: translateY(-3px); }

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 6, 12, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 40px;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.open .lightbox-figure { transform: scale(1); }

.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-glow);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

@media (max-width: 420px) {
  .nav-brand-text { display: none; }
  .nav-logo { width: 100px; height: 100px; }
}

/* ============================================================
   PAÍSES DO MERCOSUL (Bandeiras)
   ============================================================ */

.section--paises {
  position: relative;
  background: linear-gradient(180deg, rgba(7, 10, 19, 0) 0%, rgba(15, 23, 42, 0.55) 45%, rgba(7, 10, 19, 0) 100%);
  overflow: hidden;
}

.section--paises::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent);
}

.flags-group {
  margin-bottom: 48px;
}

.flags-group:last-child {
  margin-bottom: 0;
}

.flags-group-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  margin-bottom: 26px;
}

.flags-group-label i {
  font-size: 0.8rem;
  color: #fbbf24;
}

.flags-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.flags-row--members {
  gap: 34px;
}

.flag-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 108px;
  animation: flagFloat 6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -0.8s);
}

.flags-row--members .flag-card {
  width: 132px;
}

.flag-card--sm {
  width: 92px;
}

.flag-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.flag-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center;
  animation: flagWave 5.5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -0.7s);
}

.flag-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-130%);
  pointer-events: none;
}

.flag-card:hover {
  z-index: 2;
}

.flag-card:hover .flag-wrap {
  transform: scale(1.1) translateY(-4px);
  border-color: rgba(251, 191, 36, 0.85);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.25), 0 0 30px rgba(251, 191, 36, 0.45), 0 14px 30px -8px rgba(0, 0, 0, 0.6);
}

.flag-card:hover .flag-wrap img {
  animation-play-state: paused;
}

.flag-card:hover .flag-shine {
  animation: flagShine 0.9s ease forwards;
}

.flag-card:hover .flag-name {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-2px);
}

.flag-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.flags-row--members .flag-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
}

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

@keyframes flagWave {
  0%, 100% { transform: skewY(0deg) scale(1.02); }
  25% { transform: skewY(-1.6deg) scale(1.06, 1.02); }
  50% { transform: skewY(0deg) scale(1.02); }
  75% { transform: skewY(1.6deg) scale(1.06, 1.02); }
}

@keyframes flagShine {
  to { transform: translateX(130%); }
}

@media (max-width: 640px) {
  .flags-row {
    gap: 18px;
  }

  .flags-row--members {
    gap: 22px;
  }

  .flag-card {
    width: 88px;
  }

  .flags-row--members .flag-card {
    width: 104px;
  }

  .flag-card--sm {
    width: 76px;
  }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .sector-card--wide { grid-column: span 1; }

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

  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 860px) {
  .nav-logo { width: 120px; height: 120px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    height: 100svh;
    background: rgba(7, 10, 19, 0.97);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 30px 30px;
    gap: 8px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -18px 0 44px rgba(0, 0, 0, 0.5);
    z-index: 940;
  }

  .nav-links.open { right: 0; }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-color);
  }

  .hamburger { display: inline-flex; align-items: center; justify-content: center; }

  .brand-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 930;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .financing-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-inner { gap: 12px; padding: 12px 16px; }
  .nav-logo { width: 112px; height: 112px; }
  .footer-logo { width: 112px; height: 112px; }
  .nav-brand-text span { display: none; }
  .btn-cta span { display: none; }
  .btn-cta { padding: 11px 14px; }

  .hero { padding: 145px 18px 70px; }

  .hero-meta { gap: 14px; }

  .section { padding: 64px 0; }

  .about-lead { padding: 26px 22px 26px 58px; }
  .about-lead i { left: 20px; top: 22px; font-size: 1.3rem; }
  .about-card { padding: 24px 20px; }

  .sector-grid { grid-template-columns: 1fr; }
  .sector-card--wide .sector-img { height: 220px; }

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

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

  .financing-card { padding: 24px 18px; }
  .financing-card-top { justify-content: center; text-align: center; }
  .financing-stamp { margin: 0 auto; }

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

  .footer-trust {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trust-seals,
  .payment-methods {
    justify-content: center;
  }

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

  .lightbox { padding: 20px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .nav-logo { width: 100px; height: 100px; }
  .footer-logo { width: 100px; height: 100px; }

  .stats-inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-num { font-size: 1.45rem; }
  .stat-label { font-size: 0.72rem; }

  .btn-hero { width: 100%; justify-content: center; }
  .hero-actions { width: 100%; }
}

/* ============================================================
   GALLERY PLACEHOLDER (imagem reserva / em falta)
   ============================================================ */

.gallery-item.ph,
.sector-img.ph {
  position: relative;
}

.gallery-item.ph img,
.sector-img.ph img { display: none; }

.gallery-item.ph::before,
.sector-img.ph::before {
  content: '\f6fc';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.35);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}