/* LBCA Prompt Injection - Manticore Landing Page */
/* Identidade: Manticore (black/gold) → LBCA (bordô/navy/pearl) */
@font-face {
  font-family: "Conthrax";
  src: url("../assets/fonts/Conthrax-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --black: #000000;
  --black-soft: #070707;

  --gold: #C8A84E;
  --gold-light: #D4BC72;
  --gold-dim: rgba(200, 168, 78, .18);

  --bordo: #6A1040;
  --bordo-med: #922765;
  --rosa: #D78BFF;
  --purple: #8B1CA8;
  --purple-dark: #210016;
  --purple-deep: #070011;
  --blue: #315DFF;

  --navy: #2A296C;
  --deep-purple: #3D1A5C;

  --pearl: #F7F4F0;
  --pearl-warm: #EDE8E2;

  --text-dark: #2D1A24;
  --text-med: #5A3D4E;
  --white: #FAFAFA;

  --font-display: "Conthrax", "Exo 2", "Roboto", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--black)
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 0;
  background: transparent;
  transition: all .4s;
}

.nav.scrolled {
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px 0;
  box-shadow: 0 1px 30px rgba(0, 0, 0, .25);
}

.nav-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 clamp(22px, 3.5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  display: block;
  width: clamp(145px, 18vw, 280px);
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 1.8vw, 28px);
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 700;
  transition: color .3s;
}

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

.nav-cta-btn {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-weight: 800 !important;
  letter-spacing: .2px;
  transition: all .3s !important;
}

.nav-cta-btn:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 168, 78, .34);
  border-radius: 3px;
  background: rgba(255, 255, 255, .04);
  color: var(--gold);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: all .25s;
  z-index: 104;
}

.nav-menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transition: transform .25s, opacity .25s;
}

.nav-menu-toggle:hover {
  border-color: rgba(200, 168, 78, .68);
  background: rgba(200, 168, 78, .08);
}

.nav-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ─── HERO · VISUAL LEGAL STYLE ─── */
.hero {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 48%, rgba(139, 28, 168, .28), transparent 34%),
    linear-gradient(140deg, #060006 0%, #170010 38%, #4b062c 72%, #6A1040 100%);
  padding-top: 92px;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .28));
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  right: -120px;
  top: 120px;
  width: 620px;
  height: 620px;
  background:
    radial-gradient(circle, rgba(200, 168, 78, .11), transparent 58%),
    radial-gradient(circle at 35% 35%, rgba(139, 28, 168, .22), transparent 52%);
  filter: blur(8px);
}

.hero-bg::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(106, 16, 64, .75) 100%);
}

.hero-inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 32px clamp(22px, 3.5vw, 56px) 54px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(520px, 620px);
  gap: 72px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.2px;
  color: var(--gold);
  border: 1px solid rgba(200, 168, 78, .32);
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 26px;
}

.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(28px, 5.8vw, 50px);
  font-weight: 300;
  color: rgba(255, 255, 255, .92);
  line-height: 1.04;
  letter-spacing: clamp(-1.2px, -0.12vw, -1.4px);
  margin-bottom: clamp(18px, 2.5vw, 26px);
  max-width: 780px;
  text-transform: none;
}

.hero h1 strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 600;
  font-size: clamp(32px, 8vw, 70px);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: clamp(-0.6px, -0.08vw, -1px);
}

.hero-tag,
.section-title,
.gov-hero h2,
.algo-card h3,
.algo-confluence h3,
.auth-card h3,
.comercial-card h3,
.num-item .num-value {
  font-family: var(--font-display);
  font-weight: 600;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.45vw, 22px);
  color: rgba(255, 255, 255, .78);
  max-width: 680px;
  margin-bottom: 30px;
  line-height: 1.45;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

.hero-faixa {
  display: block;
  width: 260px;
  max-width: 100%;
  height: 25px;
  margin-top: 22px;
  opacity: .82;
  transform: scaleY(1.22);
  transform-origin: left center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition: all .35s;
  border: none;
  cursor: pointer;
  letter-spacing: .2px;
}

.btn-gold {
  background: var(--gold);
  color: #000;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 168, 78, .25);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: rgba(200, 168, 78, .6);
  background: rgba(200, 168, 78, .06);
}

.btn-bordo {
  background: var(--bordo);
  color: var(--white);
}

.btn-bordo:hover {
  background: var(--bordo-med);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(106, 16, 64, .35);
}

.hero-trust {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, .44);
  max-width: 540px;
  line-height: 1.6;
}

.hero-animation {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-animation::before {
  content: '';
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 28, 168, .18), transparent 64%);
  filter: blur(4px);
}

.hero-animation lottie-player {
  position: relative;
  z-index: 2;
  width: clamp(225px, 25vw, 460px);
  height: clamp(225px, 25vw, 460px);
  transform: scale(clamp(0.8, 0.9, 1));
  filter: drop-shadow(0 24px 56px rgba(0, 0, 0, .32));
}

.hero-scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, .32);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ─── SECTION SYSTEM ─── */
.section {
  padding: 100px clamp(22px, 3.5vw, 32px)
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px
}

.section-tag-gold {
  color: var(--gold);
}

.section-tag-rosa {
  color: white !important;
  font-size: 13px !important;
}

.section-tag-bordo {
  color: var(--bordo)
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(25px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: clamp(12px, 1.5vw, 16px)
}

.section-subtitle {
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.8
}

/* ─── TRANSITION ZONE: BLACK → BORDO ─── */
.zone-transition {
  background: linear-gradient(180deg, var(--black) 0%, #1A0C14 50%, #2D1225 100%);
  color: var(--white)
}

.zone-transition .section-subtitle {
  color: rgba(250, 250, 250, .5)
}

/* ─── CASO (transition zone) ─── */
.caso-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start
}

.caso-text {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(250, 250, 250, .7)
}

.caso-text strong {
  color: var(--gold)
}

.caso-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px
}

.caso-stat {
  background: rgba(200, 168, 78, .08);
  border: 1px solid rgba(200, 168, 78, .15);
  padding: 20px 16px;
  border-radius: 4px;
  text-align: center
}

.caso-stat-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  display: block
}

.caso-stat-label {
  font-size: 11px;
  color: rgba(250, 250, 250, .4);
  margin-top: 4px;
  display: block;
  letter-spacing: .5px
}

.caso-quote {
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin-top: 28px;
  background: rgba(200, 168, 78, .04);
  border-radius: 0 4px 4px 0
}

.caso-quote p {
  font-style: italic;
  font-size: 16px;
  color: rgba(250, 250, 250, .8);
  line-height: 1.7
}

.caso-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(250, 250, 250, .35);
  font-style: normal
}

.caso-evidence {
  margin-top: 24px;
  padding: 24px;
  background: rgba(250, 250, 250, .03);
  border: 1px solid rgba(250, 250, 250, .06);
  border-radius: 4px
}

.caso-evidence-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px
}

.caso-evidence-text {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(250, 250, 250, .6);
  background: rgba(0, 0, 0, .3);
  padding: 16px;
  border-radius: 3px;
  border-left: 3px solid var(--rosa)
}

/* ─── PROMPT INJECTION · FULL IMAGE SECTION ─── */
.prompt-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 0 32px;
  min-height: 760px;
  background:
    linear-gradient(180deg,
      rgba(31, 8, 54, .34) 0%,
      rgba(63, 18, 84, .48) 48%,
      rgba(106, 16, 64, .70) 100%),
    url("../assets/foto-olho-ia.jpg") center center / cover no-repeat;
}

.prompt-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(25, 12, 65, .22) 0%,
      rgba(45, 16, 76, .10) 44%,
      rgba(106, 16, 64, .44) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, .08) 0%,
      rgba(0, 0, 0, .16) 46%,
      rgba(77, 16, 80, .46) 100%);
  pointer-events: none;
  z-index: 0;
}

.prompt-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(66, 20, 88, .34) 34%,
      rgba(106, 16, 64, .62) 100%);
  pointer-events: none;
  z-index: 0;
}

.prompt-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  min-height: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 230px 0 86px;
}

.prompt-title-card {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 100px;
  text-align: center;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.prompt-title-card .section-tag {
  display: block;
  margin-bottom: 8px;
  color: rgba(215, 139, 255, .82);
  font-size: 8px;
  letter-spacing: 4px;
}

.prompt-title-card h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.04;
  color: var(--white);
  letter-spacing: -1.1px;
  margin-bottom: 10px;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .48);
}

.prompt-title-card p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(250, 250, 250, .72);
  font-size: 18px;
  line-height: 1.45;
  text-shadow: 0 8px 26px rgba(0, 0, 0, .42);
}

.prompt-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 18px);
}

.prompt-card {
  min-height: 238px;
  background: rgba(73, 24, 90, .28);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 6px;
  padding: 34px 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .055),
    0 24px 60px rgba(0, 0, 0, .10);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transition: all .35s;
}

.prompt-card:hover {
  transform: translateY(-4px);
  background: rgba(92, 30, 104, .38);
  border-color: rgba(255, 255, 255, .22);
}

.prompt-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(202, 103, 142, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 22px;
}

.prompt-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.prompt-card p {
  font-size: 15px;
  color: rgba(250, 250, 250, .72);
  line-height: 1.75;
}

/* ─── ZONE PEARL (LBCA territory) ─── */
.zone-pearl {
  background: var(--pearl);
  color: var(--text-dark)
}

.zone-pearl .section-subtitle {
  color: var(--text-med)
}

.zone-black {
  background: var(--black);
  color: var(--white);
  padding: 120px clamp(22px, 3.5vw, 32px);
}

.zone-black .section-subtitle {
  color: rgba(250, 250, 250, .45);
}

#riscos,
#empresas {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      rgba(247, 244, 240, .54) 0%,
      rgba(247, 244, 240, .58) 100%),
    url("../assets/fundo.png") center center / cover no-repeat !important;
}

#riscos::before,
#empresas::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(106, 16, 64, .14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
  pointer-events: none;
  z-index: 0;
}

#riscos .section-inner,
#empresas .section-inner {
  position: relative;
  z-index: 1;
}

/* ─── VETORES ─── */
.vetores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 20px)
}

.vetor-card {
  padding: 28px;
  border: 1px solid rgba(106, 16, 64, .1);
  border-radius: 6px;
  background: var(--white);
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.vetor-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--bordo);
  transform: scaleY(0);
  transition: transform .3s;
  transform-origin: bottom
}

.vetor-card:hover::before {
  transform: scaleY(1)
}

.vetor-card:hover {
  box-shadow: 0 4px 20px rgba(106, 16, 64, .08)
}

.vetor-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--bordo);
  margin-bottom: 8px
}

.vetor-card p {
  font-size: 14px;
  color: var(--text-med);
  line-height: 1.75
}

.vetor-alert {
  grid-column: 1/-1;
  background: rgba(106, 16, 64, .04);
  border-left: 3px solid var(--bordo);
  padding: 18px 22px;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-med)
}

.vetor-alert strong {
  color: var(--bordo)
}

.gov-lbca-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 30px;
  opacity: .9;
}

.gov-hero {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 56px;
}

.gov-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: clamp(14px, 2vw, 18px);
  line-height: 1.06;
}

.gov-hero h2 em {
  font-style: normal;
  color: var(--gold);
}

.gov-hero p {
  color: rgba(250, 250, 250, .58);
  font-size: 18px;
  line-height: 1.75;
}

.gov-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 22px);
  margin-bottom: clamp(32px, 5vw, 48px);
}

.gov-pillar {
  background: rgba(200, 168, 78, .04);
  border: 1px solid rgba(200, 168, 78, .1);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 34px) clamp(20px, 2.5vw, 26px);
  text-align: center;
  transition: all .3s;
}

.gov-pillar:hover {
  background: rgba(200, 168, 78, .08);
  border-color: rgba(200, 168, 78, .2);
}

.gov-pillar-icon {
  font-size: 35px;
  margin-bottom: 14px;
  display: block;
}

.gov-pillar h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.gov-pillar p {
  font-size: 14px;
  color: rgba(250, 250, 250, .55);
  line-height: 1.75;
}

.gov-highlight {
  background: rgba(200, 168, 78, .06);
  border: 1px solid rgba(200, 168, 78, .12);
  border-radius: 6px;
  padding: 34px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.gov-highlight p {
  color: rgba(250, 250, 250, .65);
  font-size: 16px;
  line-height: 1.8;
}

.gov-highlight strong {
  color: var(--gold);
}

.com-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 12px;
  display: block;
  transition: color .4s;
}

.comercial-card:hover .com-tag {
  color: var(--white);
}

/* ─── ALGORITMOS (from Três Versões) ─── */
.algo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 20px)
}

.algo-card {
  padding: 28px;
  border: 1px solid rgba(200, 168, 78, .1);
  border-radius: 6px;
  background: rgba(255, 255, 255, .02);
  transition: all .3s
}

.algo-card:hover {
  background: rgba(200, 168, 78, .04);
  border-color: rgba(200, 168, 78, .2)
}

.algo-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px
}

.algo-card h3::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0
}

.algo-card p {
  font-size: 14px;
  color: rgba(250, 250, 250, .55);
  line-height: 1.75
}

.algo-confluence {
  grid-column: 1/-1;
  padding: 28px;
  background: rgba(200, 168, 78, .06);
  border: 1px solid rgba(200, 168, 78, .12);
  border-radius: 6px;
  text-align: center
}

.algo-confluence h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  justify-content: center
}

.algo-confluence h3::before {
  display: none
}

.algo-confluence p {
  font-size: 14px;
  color: rgba(250, 250, 250, .55);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto
}

/* ─── AUTORIDADE ─── */
.auth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 20px)
}

.auth-card {
  border: 1px solid rgba(106, 16, 64, .1);
  border-radius: 6px;
  padding: 32px 24px;
  background: var(--white);
  transition: all .3s
}

.auth-card:hover {
  box-shadow: 0 4px 20px rgba(106, 16, 64, .08)
}

.auth-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block
}

.auth-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--bordo);
  margin-bottom: 8px
}

.auth-card p {
  font-size: 14px;
  color: var(--text-med);
  line-height: 1.75
}

/* ─── NÚMEROS ─── */
.nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64px clamp(20px, 4vw, 52px);
  text-align: center;
  align-items: center;
}

.num-item {
  position: relative;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.num-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -48px;
  top: 50%;
  width: 28px;
  height: 88px;
  transform: translateY(-50%);
  background: url("../assets/faixa-1.png") center center / contain no-repeat;
  opacity: .8;
  pointer-events: none;
}

.num-item .num-value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--bordo);
  display: block;
  line-height: 1;
}

.num-item .num-label {
  font-size: 13px;
  color: var(--text-med);
  margin-top: 8px;
  display: block;
  line-height: 1.4;
}

/* ─── VÍDEO ─── */
.video-section {
  background: linear-gradient(160deg, #1A0C14, var(--black));
  padding: 100px clamp(22px, 3.5vw, 32px)
}

.video-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  /* ⬅️ Corta as pontas quadradas do vídeo */
  transform: translateZ(0);
  /* ⬅️ Truque que força o Safari/iOS a respeitar o border-radius */
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
  background: #111;
  border: 1px solid rgba(200, 168, 78, .1);
}

.video-player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  background: #000;
}

.video-placeholder span {
  font-size: 56px;
  display: block;
  margin-bottom: 10px
}

.video-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  color: rgba(250, 250, 250, .35)
}

.video-credit strong {
  color: var(--gold);
  font-weight: 600
}

.video-credit a {
  text-decoration: none;
  /* ⬅️ Remove o sublinhado */
  transition: opacity 0.3s;
}

.video-credit a:hover {
  opacity: 0.7;
  /* ⬅️ Dá um leve efeito de brilho ao passar o mouse */
}

/* Player com capa + lazy load */
.video-wrap.video-lazy-wrap {
  aspect-ratio: 16/9;
  position: relative;
  display: block;
  cursor: pointer
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .4s ease
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease, opacity .3s ease
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(255, 255, 255, .2)
}

.video-play-icon {
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  margin-left: 4px
}

.video-lazy-wrap .video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease
}

.video-lazy-wrap.video-ready .video-thumb,
.video-lazy-wrap.video-ready .video-play-btn {
  opacity: 0;
  pointer-events: none
}

.video-lazy-wrap.video-ready .video-player {
  opacity: 1;
  pointer-events: auto
}

.video-lazy-wrap.video-loading .video-play-btn {
  opacity: 0;
  pointer-events: none
}

.video-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border: 3px solid rgba(200, 168, 78, .2);
  border-top-color: var(--gold);
  border-radius: 50%;
  /* animation: video-spin .8s linear infinite; */
  z-index: -1
}

@keyframes video-spin {
  to {
    transform: rotate(360deg)
  }
}

/* ─── COMERCIAL ─── */
.comercial-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.5vw, 20px);
  margin-bottom: clamp(24px, 4vw, 36px)
}

.comercial-card {
  border: 2px solid rgba(106, 16, 64, .1);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  text-align: center;
  transition: all .4s;
  background: var(--white)
}

.comercial-card:hover {
  border-color: var(--bordo);
  background: var(--bordo);
  color: var(--white)
}

.comercial-card:hover h3,
.comercial-card:hover p {
  color: var(--white)
}

.comercial-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--bordo);
  margin-bottom: 10px;
  transition: color .4s
}

.comercial-card p {
  font-size: 14px;
  color: var(--text-med);
  line-height: 1.75;
  transition: color .4s
}

.comercial-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-med);
  margin-top: 14px;
  font-style: italic
}


/* ─── BLOG/NOTÍCIAS · MANTICORE STYLE ─── */
.manticore-news-section {
  position: relative;
  overflow: hidden;
  padding: 112px clamp(22px, 3.5vw, 32px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 48%, rgba(139, 28, 168, .28), transparent 34%),
    linear-gradient(140deg, #060006 0%, #170010 38%, #4b062c 72%, #6A1040 100%);
}

.manticore-news-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(200, 168, 78, .10), transparent 34%),
    radial-gradient(circle at 86% 22%, rgba(215, 139, 255, .14), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .42));
  pointer-events: none;
  z-index: 0;
}

.manticore-news-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .30));
  pointer-events: none;
  z-index: 0;
}

.manticore-news-bg {
  position: absolute;
  right: -160px;
  top: 80px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(200, 168, 78, .10), transparent 58%),
    radial-gradient(circle at 35% 35%, rgba(139, 28, 168, .24), transparent 52%);
  filter: blur(8px);
  opacity: .9;
  pointer-events: none;
  z-index: 0;
}

.manticore-news-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.manticore-news-header {
  max-width: 790px;
  margin: 0 auto 48px;
  text-align: center;
}

.manticore-news-header .section-tag {
  margin-bottom: 16px;
}

.manticore-news-header h2 {
  font-family: var(--font-display);
  margin: 0 0 16px;
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -1px;
}

.manticore-news-header h2 span,
.manticore-news-header h2 em {
  display: block;
}

.manticore-news-header h2 em {
  color: var(--gold);
  font-style: normal;
}

.manticore-news-header p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(250, 250, 250, .62);
  font-size: 17px;
  line-height: 1.75;
}

.manticore-news-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.manticore-news-track {
  --news-gap: clamp(16px, 2.5vw, 22px);
  display: flex;
  gap: var(--news-gap);
  align-items: stretch;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.manticore-news-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - (var(--news-gap) * 2)) / 3);
  min-width: 0;
  overflow: hidden;
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(200, 168, 78, .12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .045),
    0 24px 60px rgba(0, 0, 0, .18);
  transition: transform .35s, border-color .35s, background .35s, box-shadow .35s;
}

.manticore-news-card > a {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.manticore-news-card > a:hover,
.manticore-news-card > a:focus {
  color: inherit;
  text-decoration: none;
}

.manticore-news-card * {
  text-decoration: none;
}

.manticore-news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(200, 168, 78, .08), transparent 42%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  z-index: 1;
}

.manticore-news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 168, 78, .32);
  background: rgba(200, 168, 78, .055);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
}

.manticore-news-card:hover::before {
  opacity: 1;
}

.manticore-news-media {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 30%, rgba(215, 139, 255, .18), transparent 38%),
    rgba(255, 255, 255, .05);
}

.manticore-news-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: .88;
  filter: saturate(.92) contrast(1.04);
  transform: scale(1.01);
  transition: transform .5s, opacity .35s;
}

.manticore-news-card:hover .manticore-news-image {
  opacity: 1;
  transform: scale(1.045);
}

.manticore-news-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 168, 78, .14), transparent 42%),
    linear-gradient(140deg, rgba(0, 0, 0, .24), rgba(106, 16, 64, .36));
}

.manticore-news-placeholder::after {
  content: "M";
  font-family: var(--font-display);
  font-size: 42px;
  color: rgba(200, 168, 78, .55);
  letter-spacing: 2px;
}

.manticore-news-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.manticore-news-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.manticore-news-date::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(200, 168, 78, .4);
  flex-shrink: 0;
}

.manticore-news-content h3 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.24;
  color: rgba(250, 250, 250, .94);
}

.manticore-news-content p {
  margin: 0 0 22px;
  color: rgba(250, 250, 250, .58);
  font-size: 14px;
  line-height: 1.75;
}

.manticore-news-readmore {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  border-bottom: 1px solid rgba(200, 168, 78, .34);
  padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}

.manticore-news-card:hover .manticore-news-readmore {
  color: var(--gold-light);
  border-color: rgba(212, 188, 114, .7);
}

.manticore-news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
}

.manticore-news-faixa {
  width: 230px;
  max-width: 42%;
  height: 22px;
  object-fit: contain;
  opacity: .82;
  transform: scaleY(1.16);
  transform-origin: left center;
}

.manticore-news-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.manticore-news-control {
  width: 42px;
  height: 42px;
  border-radius: 3px;
  border: 1px solid rgba(200, 168, 78, .28);
  background: rgba(255, 255, 255, .03);
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: all .25s;
}

.manticore-news-control:hover {
  border-color: rgba(200, 168, 78, .65);
  background: rgba(200, 168, 78, .10);
  transform: translateY(-1px);
}

.manticore-news-all {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.manticore-news-loading,
.manticore-news-error,
.manticore-news-empty {
  flex: 0 0 100%;
  width: 100%;
  padding: 28px;
  text-align: center;
  color: rgba(250, 250, 250, .62);
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(200, 168, 78, .12);
  border-radius: 6px;
}

.manticore-blog-archive {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 150px clamp(22px, 3.5vw, 32px) 96px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(139, 28, 168, .30), transparent 32%),
    linear-gradient(140deg, #060006 0%, #170010 38%, #4b062c 72%, #6A1040 100%);
}

.manticore-blog-archive::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(200, 168, 78, .10), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .46));
  pointer-events: none;
}

.manticore-blog-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.manticore-blog-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.manticore-blog-head h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
  margin-bottom: 16px;
}

.manticore-blog-head h1 em {
  color: var(--gold);
  font-style: normal;
}

.manticore-blog-head p {
  color: rgba(250, 250, 250, .64);
  font-size: 17px;
  line-height: 1.75;
}

.manticore-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 22px);
}

.manticore-blog-grid .manticore-news-card {
  flex-basis: auto;
}

.manticore-blog-back {
  margin-top: 34px;
  display: inline-flex;
  width: auto;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .manticore-news-card {
    flex-basis: calc((100% - var(--news-gap)) / 2);
  }

  .manticore-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .manticore-news-section {
    padding: clamp(72px, 9vw, 92px) clamp(20px, 3vw, 34px);
  }

  .manticore-news-header {
    margin-bottom: 36px;
  }

  .manticore-news-bg {
    right: -260px;
    width: 520px;
    height: 520px;
  }
}

@media (max-width: 640px) {
  .manticore-news-section {
    padding: clamp(58px, 8vw, 74px) clamp(18px, 2.5vw, 30px);
  }

  .manticore-news-card {
    flex-basis: 100%;
  }

  .manticore-news-header {
    text-align: left;
    margin-bottom: 30px;
  }

  .manticore-news-header h2 {
    font-size: clamp(24px, 6.5vw, 36px);
  }

  .manticore-news-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  .manticore-news-content {
    padding: 22px;
  }

  .manticore-news-footer {
    flex-direction: column;
    align-items: stretch;
    margin-top: 26px;
  }

  .manticore-news-faixa {
    width: 190px;
    max-width: 70%;
  }

  .manticore-news-actions {
    justify-content: stretch;
  }

  .manticore-news-control {
    flex: 1;
  }

  .manticore-news-all {
    width: 100%;
  }

  .manticore-blog-archive {
    padding: 120px clamp(18px, 2.5vw, 30px) 66px;
  }

  .manticore-blog-grid {
    grid-template-columns: 1fr;
  }

  .manticore-blog-head p {
    font-size: 14px;
  }

  .manticore-blog-back {
    width: 100%;
  }
}


.faq-section {
  position: relative;
  overflow: hidden;
  background: var(--pearl-warm);
}

.faq-section::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 430px;
  height: 620px;
  background: url("../assets/fundo-manticore-2.png") center right / contain no-repeat;
  opacity: .22;
  pointer-events: none;
  z-index: 0;
}

.faq-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 100%;
  background: radial-gradient(circle at 82% 72%, rgba(106, 16, 64, .06), transparent 48%);
  pointer-events: none;
  z-index: 0;
}

.faq-section .section-inner {
  position: relative;
  z-index: 1;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 760px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid rgba(106, 16, 64, .08)
}

.faq-q {
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color .3s;
  gap: 16px
}

.faq-q:hover {
  color: var(--bordo)
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  color: var(--rosa);
  transition: transform .3s;
  flex-shrink: 0
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-med)
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 18px
}

/* ─── FOOTER ─── */
.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(106, 16, 64, .28), transparent 32%),
    radial-gradient(circle at 82% 42%, rgba(200, 168, 78, .07), transparent 28%),
    linear-gradient(140deg, #030003 0%, #080006 42%, #16060F 74%, #000 100%);
  color: var(--white);
  padding: 48px clamp(22px, 3.5vw, 32px) 24px;
  border-top: 1px solid rgba(200, 168, 78, .12);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .18;
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  right: -160px;
  top: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 78, .16), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .75fr .75fr .75fr;
  gap: clamp(24px, 3vw, 34px);
  margin-bottom: clamp(20px, 2vw, 28px);
  align-items: start;
}

.footer-brand {
  max-width: 420px;
}

.footer-lbca-logo-gradient {
  display: block;
  width: 205px;
  height: 82px;
  margin-bottom: 14px;
  background: url("../assets/logo-lbca.png") center left / contain no-repeat;
  mask: url("../assets/logo-lbca.png") center left / contain no-repeat;
}

.footer-brand-text {
  color: rgba(250, 250, 250, .52);
  font-size: 13px;
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 14px;
}

.footer-address {
  padding-top: 12px;
  border-top: 1px solid rgba(250, 250, 250, .08);
  margin-bottom: 10px;
}

.footer-address p {
  color: rgba(250, 250, 250, .42);
  font-size: 13px;
  line-height: 1.65;
}

.footer-site {
  display: inline-flex;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 168, 78, .34);
  padding-bottom: 3px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  margin-bottom: 14px;
  color: var(--gold);
}

.footer-col a {
  display: block;
  color: rgba(250, 250, 250, .46);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.9;
  transition: all .25s;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 250, 250, .08);
  padding-top: 18px;
  font-size: 11px;
  color: rgba(250, 250, 250, .26);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-bottom span:last-child {
  font-family: var(--font-display);
  letter-spacing: 2.8px;
  color: rgba(200, 168, 78, .42);
  font-size: 10px;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all .7s cubic-bezier(.22, .61, .36, 1)
}

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

/* ─── SITE LOCK / SENHA DE ACESSO ─── */
.site-lock {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background:
    radial-gradient(circle at 78% 48%, rgba(139, 28, 168, .28), transparent 34%),
    linear-gradient(140deg, #060006 0%, #170010 38%, #4b062c 72%, #6A1040 100%);
}

.site-lock::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(200, 168, 78, .10), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, .14), rgba(0, 0, 0, .48));
  pointer-events: none;
}

.site-lock-card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 42px 36px;
  border-radius: 10px;
  text-align: center;
  background: rgba(8, 0, 8, .74);
  border: 1px solid rgba(200, 168, 78, .18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-lock-logo {
  width: 240px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 28px;
  display: block;
}

.site-lock-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.site-lock-card h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 12px;
}

.site-lock-card p {
  color: rgba(250, 250, 250, .62);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.site-lock-card form {
  display: flex;
  gap: 10px;
}

.site-lock-card input {
  flex: 1;
  min-width: 0;
  height: 48px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  padding: 0 14px;
  font-size: 14px;
  outline: none;
}

.site-lock-card input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.site-lock-card input:focus {
  border-color: rgba(200, 168, 78, .72);
}

.site-lock-card button {
  height: 48px;
  border: none;
  border-radius: 4px;
  background: var(--gold);
  color: #000;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
  transition: all .25s;
}

.site-lock-card button:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

#site-lock-error {
  display: none;
  margin-top: 14px;
  color: #ff9bb8;
  font-size: 12px;
}

.site-lock.is-hidden {
  display: none;
}

body.site-is-locked {
  overflow: hidden;
}

@media (max-width: 520px) {
  .site-lock {
    padding: 24px;
  }

  .site-lock-card {
    padding: 34px 24px;
  }

  .site-lock-logo {
    width: 200px;
  }

  .site-lock-card form {
    flex-direction: column;
  }

  .site-lock-card button {
    width: 100%;
  }
}

/* ─── RESPONSIVE ─── */

/* Tablets verticais e mobile grande */
@media (max-width: 860px) {
  .nav-inner {
    padding: 0 clamp(20px, 3vw, 34px);
  }

  .nav-logo-img {
    width: clamp(140px, 15vw, 205px);
    max-width: 100%;
  }

  .nav-menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: clamp(20px, 3vw, 34px);
    right: clamp(20px, 3vw, 34px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(200, 168, 78, .18);
    border-radius: 8px;
    background:
      radial-gradient(circle at 88% 12%, rgba(139, 28, 168, .18), transparent 34%),
      rgba(6, 0, 6, .94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .46);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s, transform .25s, visibility .25s;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .nav-links a {
    display: flex;
    width: 100%;
    padding: 13px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: rgba(255, 255, 255, .82);
  }

  .nav-links a:hover {
    background: rgba(200, 168, 78, .08);
  }

  .nav-cta-btn {
    justify-content: center;
    margin-top: 8px;
    padding: 13px 16px !important;
  }

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

  .hero {
    min-height: auto;
    height: auto;
    padding-top: clamp(70px, 12vw, 94px);
  }

  .hero::after {
    height: clamp(80px, 12vw, 100px);
  }

  .hero-bg::before {
    right: -240px;
    top: 120px;
    width: 440px;
    height: 440px;
  }

  .hero-bg::after {
    height: 56%;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: clamp(18px, 3vw, 24px);
    padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 34px) clamp(50px, 8vw, 72px);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-animation {
    order: -1;
    min-height: clamp(210px, 40vw, 250px);
    justify-content: center;
  }

  .hero-animation::before {
    width: clamp(210px, 30vw, 260px);
    height: clamp(210px, 30vw, 260px);
  }

  .hero-animation lottie-player {
    width: clamp(220px, 32vw, 270px);
    height: clamp(220px, 32vw, 270px);
    transform: scale(.9);
  }

  .hero h1 {
    font-size: clamp(28px, 6vw, 44px);
    line-height: 1.08;
    letter-spacing: -1px;
    max-width: 100%;
  }

  .hero h1 strong {
    font-size: clamp(32px, 8vw, 52px);
    line-height: .98;
    letter-spacing: -.7px;
    max-width: 100%;
  }

  .hero-sub {
    font-size: clamp(15px, 3.5vw, 17px);
    max-width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: clamp(56px, 8vw, 76px) clamp(20px, 3vw, 34px);
  }

  .section-title {
    font-size: clamp(24px, 6.5vw, 40px);
    line-height: 1.14;
  }

  .section-subtitle {
    font-size: clamp(14px, 3.2vw, 16px);
    margin-bottom: clamp(28px, 4vw, 36px);
  }

  .section-tag {
    font-size: clamp(8px, 1.5vw, 10px);
    letter-spacing: clamp(2.4px, 0.3vw, 2.7px);
  }

  .prompt-section {
    padding: 0 clamp(20px, 3vw, 34px);
  }

  .prompt-content {
    padding: clamp(110px, 15vw, 140px) 0 clamp(60px, 8vw, 72px);
  }

  .prompt-title-card {
    margin-bottom: clamp(36px, 6vw, 48px);
  }

  .prompt-title-card .section-tag {
    font-size: 8px;
    letter-spacing: 3px;
  }

  .prompt-title-card h2 {
    font-size: clamp(25px, 6vw, 38px);
  }

  .prompt-title-card p {
    font-size: clamp(13px, 3vw, 15px);
  }

  .prompt-card {
    padding: clamp(22px, 3vw, 28px) clamp(20px, 2.5vw, 26px);
    background: rgba(73, 24, 90, .40);
  }

  .zone-black {
    padding: clamp(60px, 8vw, 82px) clamp(20px, 3vw, 34px);
  }

  .gov-lbca-logo {
    width: clamp(140px, 25vw, 180px);
    margin-bottom: clamp(18px, 3vw, 24px);
  }

  .gov-hero {
    margin-bottom: clamp(32px, 5vw, 42px);
  }

  .gov-hero h2 {
    font-size: clamp(26px, 6vw, 42px);
  }

  .gov-hero p {
    font-size: clamp(14px, 3vw, 16px);
  }

  .gov-pillars {
    gap: clamp(12px, 2vw, 16px);
    margin-bottom: clamp(28px, 4vw, 36px);
    grid-template-columns: repeat(1, 1fr);
  }

  .gov-pillar {
    padding: clamp(22px, 3vw, 28px) clamp(18px, 2vw, 24px);
  }

  .gov-highlight {
    padding: clamp(22px, 3vw, 28px) clamp(18px, 2vw, 24px);
  }

  .auth-grid {
    gap: clamp(12px, 2vw, 16px);
  }

  .auth-card {
    padding: clamp(22px, 3vw, 28px) clamp(18px, 2vw, 24px);
  }

  .video-section {
    padding: clamp(56px, 8vw, 76px) clamp(20px, 3vw, 34px);
  }

  .video-placeholder span {
    font-size: clamp(36px, 8vw, 44px);
  }

  .comercial-card {
    padding: clamp(22px, 3vw, 30px) clamp(18px, 2vw, 24px);
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-q {
    font-size: clamp(13px, 3.5vw, 14px);
    line-height: 1.45;
    padding: clamp(14px, 2vw, 17px) 0;
    align-items: flex-start;
  }

  .faq-q::after {
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1;
    margin-top: -2px;
  }

  .faq-a {
    font-size: 14px;
    line-height: 1.75;
  }

  .footer {
    padding: clamp(45px, 6vw, 58px) clamp(20px, 3vw, 34px) clamp(22px, 3vw, 30px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: clamp(22px, 4vw, 30px);
  }

  .footer-brand {
    grid-column: auto;
    max-width: 100%;
  }

  .footer-lbca-logo-gradient {
    width: 205px;
    height: 82px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Celulares */
@media (max-width: 640px) {
  .nav {
    padding: clamp(10px, 1.5vw, 15px) 0;
    background: rgba(0, 0, 0, .66);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .nav.scrolled {
    padding: clamp(8px, 1.2vw, 12px) 0;
  }

  .nav-inner {
    padding: 0 clamp(18px, 2.5vw, 30px);
  }

  .nav-links {
    left: clamp(18px, 2.5vw, 30px);
    right: clamp(18px, 2.5vw, 30px);
  }

  .nav-logo-img {
    width: clamp(130px, 12vw, 176px);
    max-width: 100%;
  }

  .hero {
    padding-top: clamp(68px, 10vw, 84px);
  }

  .hero-inner {
    padding: clamp(28px, 4vw, 36px) clamp(18px, 2.5vw, 30px) clamp(50px, 8vw, 64px);
  }

  .hero-tag {
    font-size: clamp(7px, 1.2vw, 8px);
    letter-spacing: clamp(1.5px, 0.2vw, 2px);
    padding: clamp(5px, 1vw, 7px) clamp(8px, 1.5vw, 11px);
    margin-bottom: clamp(14px, 2vw, 18px);
    max-width: 100%;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 1.1;
    letter-spacing: clamp(-0.8px, -0.1vw, -0.6px);
    margin-bottom: clamp(14px, 2vw, 18px);
    max-width: 100%;
  }

  .hero h1 strong {
    font-size: clamp(30px, 8.5vw, 44px);
    line-height: 1;
    letter-spacing: clamp(-0.4px, -0.05vw, -0.3px);
    max-width: 100%;
  }

  .hero-sub {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.56;
    margin-bottom: clamp(18px, 3vw, 24px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(10px, 1.5vw, 12px);
    margin-bottom: clamp(14px, 2vw, 18px);
  }

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

  .btn {
    width: 100%;
    font-size: clamp(13px, 2.5vw, 14px);
    padding: clamp(12px, 2vw, 14px) clamp(14px, 2.5vw, 20px);
  }

  .hero-faixa {
    width: clamp(150px, 40vw, 190px);
    height: clamp(16px, 3vw, 20px);
    margin-top: clamp(14px, 2vw, 18px);
    opacity: clamp(0.6, 0.8, 0.9);
    transform: scaleY(1.16);
  }

  .hero-animation {
    min-height: clamp(180px, 35vw, 210px);
  }

  .hero-animation::before {
    width: clamp(180px, 26vw, 215px);
    height: clamp(180px, 26vw, 215px);
  }

  .hero-animation lottie-player {
    width: clamp(190px, 28vw, 225px);
    height: clamp(190px, 28vw, 225px);
    transform: scale(.9);
  }

  .section {
    padding: clamp(52px, 7vw, 66px) clamp(18px, 2.5vw, 30px);
  }

  .section-title {
    font-size: clamp(23px, 7vw, 36px);
  }

  .section-subtitle {
    font-size: clamp(14px, 3vw, 15.5px);
    line-height: 1.75;
    margin-bottom: clamp(26px, 4vw, 32px);
  }

  .section-tag {
    font-size: clamp(8px, 1.2vw, 9px);
    letter-spacing: clamp(2px, 0.3vw, 2.4px);
  }

  .caso-grid {
    gap: clamp(22px, 3.5vw, 28px);
    grid-template-columns: 1fr;
  }

  .caso-text {
    font-size: clamp(14px, 2.8vw, 15px);
    line-height: 1.78;
  }

  .caso-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .caso-stat {
    padding: clamp(14px, 2vw, 18px) clamp(12px, 2vw, 16px);
  }

  .caso-quote {
    padding: clamp(16px, 2.5vw, 22px) clamp(16px, 2vw, 20px);
    margin-top: 10px;
  }

  .caso-quote p {
    font-size: clamp(13px, 2.8vw, 15px);
  }

  .caso-evidence {
    padding: clamp(16px, 2.5vw, 20px);
  }

  .caso-evidence-text {
    font-size: clamp(11px, 2.5vw, 12px);
    overflow-wrap: anywhere;
  }

  .prompt-section {
    padding: 0 clamp(18px, 2.5vw, 30px);
    background-position: center center;
  }

  .prompt-content {
    padding: clamp(90px, 12vw, 112px) 0 clamp(52px, 7vw, 64px);
  }

  .prompt-title-card {
    max-width: 100%;
    margin-bottom: clamp(28px, 4vw, 34px);
  }

  .prompt-title-card h2 {
    font-size: clamp(22px, 6.5vw, 32px);
    line-height: 1.08;
  }

  .prompt-title-card p {
    font-size: clamp(13px, 2.8vw, 14px);
    line-height: 1.45;
  }

  .prompt-cards {
    grid-template-columns: 1fr;
    gap: clamp(12px, 2vw, 16px);
  }

  .prompt-card {
    padding: clamp(20px, 2.5vw, 26px) clamp(18px, 2vw, 24px);
    min-height: auto;
  }

  .prompt-card p {
    font-size: 14px;
  }

  #riscos,
  #empresas {
    background:
      linear-gradient(180deg,
        rgba(247, 244, 240, .62) 0%,
        rgba(247, 244, 240, .66) 100%),
      url("../assets/fundo.png") center center / cover no-repeat !important;
  }

  .vetores-grid {
    grid-template-columns: 1fr;
    gap: clamp(12px, 2vw, 16px);
  }

  .vetor-card,
  .algo-card,
  .auth-card,
  .comercial-card {
    padding: clamp(20px, 2.5vw, 26px) clamp(18px, 2vw, 24px);
  }

  .vetor-alert {
    padding: clamp(14px, 2vw, 18px) clamp(16px, 2vw, 20px);
  }

  .zone-black {
    padding: clamp(56px, 7vw, 76px) clamp(18px, 2.5vw, 30px);
  }

  .gov-lbca-logo {
    width: clamp(130px, 22vw, 165px);
  }

  .gov-hero h2 {
    font-size: clamp(24px, 5.8vw, 36px);
  }

  .gov-hero p {
    font-size: clamp(14px, 2.8vw, 15.5px);
  }

  .gov-pillar {
    padding: clamp(20px, 2.5vw, 26px) clamp(18px, 2vw, 24px);
  }

  .gov-highlight {
    padding: clamp(20px, 2.5vw, 26px) clamp(18px, 2vw, 24px);
  }

  .algo-grid {
    grid-template-columns: 1fr;
    gap: clamp(12px, 2vw, 16px);
  }

  .algo-confluence {
    grid-column: auto;
  }

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

  .nums-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(22px, 3vw, 28px) clamp(14px, 2.5vw, 20px);
  }

  .num-item {
    min-height: clamp(70px, 12vw, 82px);
  }

  .num-item:not(:last-child)::after {
    display: none;
  }

  .num-item .num-value {
    font-size: clamp(26px, 7vw, 42px);
  }

  .num-item .num-label {
    font-size: clamp(11px, 2vw, 12px);
  }

  .video-section {
    padding: clamp(54px, 7vw, 72px) clamp(18px, 2.5vw, 30px);
  }

  .comercial-cards {
    grid-template-columns: 1fr;
    gap: clamp(12px, 2vw, 16px);
  }

  .comercial-note {
    font-size: clamp(11px, 2.3vw, 12.5px);
  }

  .faq-section::before {
    right: -210px;
    top: 58%;
    width: 330px;
    height: 500px;
    opacity: .10;
  }

  .faq-section::after {
    width: 100%;
    opacity: .7;
  }

  .footer {
    padding: clamp(42px, 6vw, 54px) clamp(18px, 2.5vw, 30px) clamp(22px, 3vw, 28px);
  }
}

/* Celulares pequenos */
@media (max-width: 430px) {
  .nav-inner {
    padding: 0 clamp(16px, 2vw, 26px);
  }

  .nav-logo-img {
    width: clamp(120px, 10vw, 158px);
    max-width: 100%;
  }

  .hero-inner {
    padding-left: clamp(16px, 2vw, 26px);
    padding-right: clamp(16px, 2vw, 26px);
  }

  .hero h1 {
    font-size: clamp(24px, 6.5vw, 34px);
    line-height: 1.12;
    letter-spacing: clamp(-0.6px, -0.08vw, -0.5px);
  }

  .hero h1 strong {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.02;
    letter-spacing: clamp(-0.3px, -0.04vw, -0.2px);
  }

  .hero-sub {
    font-size: clamp(13px, 2.8vw, 15.5px);
  }

  .hero-animation {
    min-height: clamp(160px, 30vw, 185px);
  }

  .hero-animation::before {
    width: clamp(160px, 22vw, 190px);
    height: clamp(160px, 22vw, 190px);
  }

  .hero-animation lottie-player {
    width: clamp(170px, 24vw, 200px);
    height: clamp(170px, 24vw, 200px);
  }

  .section {
    padding: clamp(48px, 6.5vw, 58px) clamp(16px, 2vw, 26px);
  }

  .section-title {
    font-size: clamp(22px, 6.5vw, 33px);
  }

  .section-subtitle {
    font-size: clamp(13px, 2.8vw, 15px);
  }

  .prompt-section {
    padding-left: clamp(16px, 2vw, 26px);
    padding-right: clamp(16px, 2vw, 26px);
  }

  .prompt-content {
    padding: clamp(80px, 10vw, 92px) 0 clamp(46px, 6vw, 56px);
  }

  .prompt-title-card h2 {
    font-size: clamp(20px, 6.2vw, 30px);
  }

  .prompt-card {
    padding: clamp(18px, 2vw, 24px) clamp(16px, 1.8vw, 22px);
  }

  .caso-stat-num {
    font-size: clamp(18px, 4vw, 21px);
  }

  .vetor-card,
  .algo-card,
  .auth-card,
  .comercial-card,
  .gov-pillar {
    padding: clamp(18px, 2vw, 24px) clamp(16px, 1.8vw, 22px);
  }

  .zone-black {
    padding: clamp(52px, 6.5vw, 66px) clamp(16px, 2vw, 26px);
  }

  .gov-hero h2 {
    font-size: clamp(23px, 6.8vw, 34px);
  }

  .nums-grid {
    grid-template-columns: 1fr;
    gap: clamp(16px, 2.5vw, 22px);
  }

  .num-item {
    min-height: auto;
    padding: clamp(8px, 1.5vw, 10px) 0;
  }

  .video-section {
    padding: clamp(52px, 6.5vw, 64px) clamp(16px, 2vw, 26px);
  }

  .faq-section::before {
    right: -245px;
    width: 320px;
    height: 470px;
    opacity: .08;
  }

  .footer {
    padding: clamp(40px, 5.5vw, 50px) clamp(16px, 2vw, 26px) clamp(18px, 2.5vw, 26px);
  }

  .footer-lbca-logo-gradient {
    width: clamp(170px, 30vw, 188px);
    height: clamp(70px, 12vw, 76px);
  }

  .footer-brand-text,
  .footer-address p,
  .footer-col a {
    font-size: clamp(11.5px, 2.2vw, 12.8px);
    margin: 0 auto;
    margin-bottom: 16px;
  }
}

/* Celulares muito estreitos */
@media (max-width: 360px) {
  .nav-inner {
    padding: 0 clamp(14px, 1.8vw, 22px);
  }

  .nav-logo-img {
    width: clamp(110px, 8.5vw, 145px);
    max-width: 100%;
  }

  .hero-inner {
    padding-left: clamp(14px, 1.8vw, 22px);
    padding-right: clamp(14px, 1.8vw, 22px);
  }

  .hero h1 {
    font-size: clamp(22px, 6.5vw, 26px);
    line-height: 1.14;
  }

  .hero h1 strong {
    font-size: clamp(25px, 7.5vw, 29px);
    line-height: 1.04;
    letter-spacing: clamp(-0.2px, -0.03vw, -0.15px);
  }

  .hero-sub {
    font-size: clamp(13px, 2.8vw, 15px);
  }

  .section {
    padding-left: clamp(14px, 1.8vw, 22px);
    padding-right: clamp(14px, 1.8vw, 22px);
  }

  .btn {
    padding-left: clamp(12px, 1.5vw, 16px);
    padding-right: clamp(12px, 1.5vw, 16px);
  }
}