:root {
  /* paleta alinhada ao PL: azul royal dominante, amarelo destaque, verde só detalhe */
  --ink: #091031;
  --navy: #0c1645;
  --navy-2: #13225f;
  --royal: #2a3591; /* azul royal do logo PL */
  --blue: #0275d8; /* azul vibrante PL (destaque primário) */
  --blue-2: #1b95e0;
  --blue-soft: #8b93d6;
  --green: #1f9d4d; /* detalhe bandeira */
  --yellow: #ffce00;
  --yellow-deep: #f5b800;
  --white: #ffffff;
  --muted: #9aa6cf;
  --radius: 20px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Archivo", system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
svg {
  display: block;
}
::selection {
  background: var(--yellow);
  color: var(--ink);
}

/* ícones */
.ico {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ============ FUNDO ============ */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-fx .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.bg-fx .b1 {
  width: 560px;
  height: 560px;
  background: var(--blue);
  top: -200px;
  right: -120px;
  opacity: 0.22;
}
.bg-fx .b2 {
  width: 520px;
  height: 520px;
  background: var(--royal);
  bottom: -180px;
  left: -140px;
  opacity: 0.4;
}
.bg-fx .b3 {
  width: 600px;
  height: 600px;
  background: var(--navy-2);
  top: 42%;
  left: 34%;
  opacity: 0.5;
}
.bg-fx .grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 15%,
    #000 30%,
    transparent 80%
  );
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: 0.4s var(--ease);
}
header.scrolled {
  background: rgba(12, 22, 69, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .mark {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-family: "Anton";
  background: #fff;
  color: var(--royal);
  font-size: 19px;
  letter-spacing: -0.5px;
  box-shadow: 0 8px 22px rgba(2, 117, 216, 0.3);
  border: 2px solid var(--yellow);
}
.brand b {
  font-family: "Anton";
  font-size: 27px;
  line-height: 0.95;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.brand span {
  display: block;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 1.8px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-top: 4px;
}
@media (max-width: 760px) {
  .brand b {
    font-size: 22px;
  }
  .brand span {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
}
.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu a {
  font-weight: 600;
  font-size: 14.5px;
  color: #d4dbf3;
  position: relative;
  transition: 0.25s;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  height: 2.5px;
  width: 0;
  background: var(--yellow);
  transition: 0.3s var(--ease);
}
.menu a:hover {
  color: #fff;
}
.menu a:hover::after {
  width: 100%;
}
.btn {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 13px 24px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: 0.3s var(--ease);
}
.btn .ico {
  width: 18px;
  height: 18px;
}
.btn-y {
  background: var(--yellow);
  color: var(--ink);
}
.btn-y:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(255, 206, 0, 0.4);
}
.btn-b {
  background: var(--blue);
  color: #fff;
}
.btn-b:hover {
  transform: translateY(-3px);
  background: var(--blue-2);
  box-shadow: 0 14px 34px rgba(2, 117, 216, 0.4);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(2, 117, 216, 0.14);
  border: 1px solid rgba(2, 117, 216, 0.4);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7cc4f5;
  margin-bottom: 26px;
}
.tagline .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 0 rgba(27, 149, 224, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(27, 149, 224, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(27, 149, 224, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(27, 149, 224, 0);
  }
}
.hero h1 {
  font-family: "Anton";
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  font-size: clamp(54px, 8.5vw, 118px);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.hero h1 .l1 {
  display: block;
  color: #fff;
}
.hero h1 .l2 {
  display: block;
  background: linear-gradient(
    100deg,
    var(--yellow) 0%,
    var(--yellow-deep) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .role {
  font-weight: 800;
  font-size: clamp(14px, 2vw, 19px);
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 14px 0 22px;
}
.hero .lead {
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.6;
  color: #cdd6f0;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero .lead b {
  color: #fff;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.stats {
  display: flex;
  gap: 30px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.stat .n {
  font-family: "Anton";
  font-size: 34px;
  line-height: 1;
  color: var(--yellow);
}
.stat .t {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-top: 5px;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.portrait {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 4/5;
  border-radius: 26px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}
.portrait .ap-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  transition: transform 0.6s var(--ease);
}
.portrait:hover .ap-photo {
  transform: scale(1.04);
}
.portrait .portrait-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 26px;
  background:
    linear-gradient(180deg, transparent 55%, rgba(9, 16, 49, 0.55) 100%),
    radial-gradient(
      circle at 50% 18%,
      transparent 55%,
      rgba(9, 16, 49, 0.3) 100%
    );
  box-shadow: inset 0 0 0 1.5px rgba(255, 206, 0, 0.22);
}
.badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--royal);
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.1;
}
.badge-float .bi {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--royal);
  color: #fff;
  flex: none;
}
.badge-float .bi .ico {
  width: 18px;
  height: 18px;
}
.badge-float small {
  display: block;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: var(--blue);
  opacity: 0.85;
}
.bf-1 {
  top: 5%;
  left: -6%;
  animation: float 5s ease-in-out infinite;
}
.bf-2 {
  bottom: 9%;
  right: -7%;
  animation: float 5s ease-in-out infinite 0.8s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--yellow);
  color: var(--ink);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 3;
  transform: rotate(-1.1deg) scale(1.04);
  margin: 8px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 38px;
  animation: scroll 26s linear infinite;
  font-family: "Anton";
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 38px;
}
.marquee .star {
  color: var(--royal);
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* ============ SEÇÕES ============ */
section {
  position: relative;
  z-index: 2;
}
.block {
  padding: 108px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2.5px;
  background: var(--yellow);
}
.h-sec {
  font-family: "Anton";
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(38px, 5.5vw, 72px);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.h-sec .hl {
  color: var(--yellow);
}
.sec-intro {
  font-size: 17px;
  line-height: 1.65;
  color: #c0caea;
  max-width: 620px;
}
.sec-intro em {
  color: var(--blue-soft);
  font-style: italic;
}

/* círculo de ícone estilo PL */
.icbubble {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  background: linear-gradient(160deg, var(--blue), var(--royal));
  color: #fff;
  box-shadow: 0 10px 24px rgba(2, 117, 216, 0.3);
}
.icbubble .ico {
  width: 26px;
  height: 26px;
}

/* ============ HISTÓRIA ============ */
.historia {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(19, 34, 95, 0.5),
    transparent
  );
}
.hist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 58px;
  align-items: start;
}
.card-pub {
  background: linear-gradient(
    160deg,
    rgba(2, 117, 216, 0.16),
    rgba(19, 34, 95, 0.55)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 34px;
}
.card-pub h3 {
  font-family: "Anton";
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.card-pub .sub {
  font-size: 14.5px;
  color: #c0caea;
  margin-bottom: 14px;
}
.chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  transition: 0.25s;
}
.chip:hover {
  background: rgba(2, 117, 216, 0.2);
  border-color: var(--blue);
  transform: translateX(4px);
}
.chip .ic2 {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--royal);
  color: #fff;
  flex: none;
}
.chip .ic2 .ico {
  width: 19px;
  height: 19px;
}
.timeline {
  position: relative;
  padding-left: 34px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2.5px;
  background: linear-gradient(var(--blue), var(--yellow));
}
.tl-item {
  position: relative;
  margin-bottom: 30px;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--blue-2);
  box-shadow: 0 0 0 5px rgba(27, 149, 224, 0.12);
}
.tl-item .tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
}
.tl-item h4 {
  font-weight: 800;
  font-size: 18px;
  margin: 4px 0 5px;
}
.tl-item p {
  color: #b4c0e2;
  font-size: 14.5px;
  line-height: 1.55;
}
.curri {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.curri .c {
  flex: 1;
  min-width: 128px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.curri .c .ic3 {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(2, 117, 216, 0.18);
  color: var(--blue-2);
  margin-bottom: 10px;
}
.curri .c .ic3 .ico {
  width: 21px;
  height: 21px;
}
.curri .c h5 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 3px;
}
.curri .c p {
  font-size: 12.5px;
  color: var(--muted);
}

/* ============ PROPOSTAS ============ */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
}
.prop-card {
  position: relative;
  background: rgba(19, 34, 95, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  overflow: hidden;
  transition: 0.4s var(--ease);
}
.prop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(2, 117, 216, 0.18), transparent 55%);
  opacity: 0;
  transition: 0.4s;
}
.prop-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 117, 216, 0.55);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4);
}
.prop-card:hover::before {
  opacity: 1;
}
.prop-card .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  position: relative;
}
.prop-card .num {
  font-family: "Anton";
  font-size: 15px;
  color: var(--yellow);
  letter-spacing: 2px;
}
.prop-card h3 {
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
}
.prop-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #b4c0e2;
  position: relative;
}
.ph-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255, 206, 0, 0.12);
  padding: 5px 11px;
  border-radius: 7px;
}

/* ============ CONTEÚDO ============ */
.conteudo {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(19, 34, 95, 0.45),
    transparent
  );
}
.paporeto-banner {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(120deg, var(--royal), var(--navy-2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.paporeto-banner img {
  width: 220px;
  border-radius: 13px;
}
.paporeto-banner .pr-txt {
  flex: 1;
  min-width: 240px;
}
.paporeto-banner h3 {
  font-family: "Anton";
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.paporeto-banner p {
  color: #c8d2ee;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.content-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.cc {
  background: rgba(19, 34, 95, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.35s var(--ease);
}
.cc:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 206, 0, 0.45);
}
.cc .thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--royal), var(--blue));
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
}
.cc .thumb .ico {
  width: 40px;
  height: 40px;
  stroke-width: 1.6;
}
.cc .thumb .play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  color: var(--royal);
}
.cc .thumb .play .ico {
  width: 22px;
  height: 22px;
  stroke-width: 0;
  fill: currentColor;
  margin-left: 3px;
}
.cc .body {
  padding: 19px;
}
.cc .body .kind {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--blue-2);
}
.cc .body .kind .ico {
  width: 14px;
  height: 14px;
}
.cc .body h4 {
  font-weight: 800;
  font-size: 16.5px;
  margin: 7px 0 5px;
  line-height: 1.3;
}
.cc .body p {
  font-size: 13px;
  color: var(--muted);
}

/* ============ CONTATO ============ */
.cta-band {
  background: linear-gradient(120deg, var(--blue) 0%, var(--royal) 100%);
  border-radius: 30px;
  padding: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -160px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.09),
    transparent 70%
  );
  pointer-events: none;
}
.cta-band h2 {
  font-family: "Anton";
  font-size: clamp(34px, 4.5vw, 56px);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 16px;
}
.cta-band h2 .hl {
  color: var(--yellow);
}
.cta-band p {
  font-size: 16px;
  line-height: 1.6;
  color: #eef3ff;
  margin-bottom: 24px;
  max-width: 440px;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.soc {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: 0.3s;
  color: #fff;
}
.soc .ico {
  width: 22px;
  height: 22px;
}
.soc:hover {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-4px);
}
.form {
  background: rgba(9, 16, 49, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 30px;
  position: relative;
  z-index: 2;
}
.form label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 14px 0 6px;
  text-transform: uppercase;
  color: #cdd6f0;
}
.form label:first-child {
  margin-top: 0;
}
.form input,
.form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 11px;
  padding: 13px 15px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: 0.25s;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.13);
}
.form textarea {
  resize: vertical;
  min-height: 90px;
}
.form button {
  width: 100%;
  margin-top: 20px;
  justify-content: center;
}

/* ============ FOOTER ============ */
footer {
  padding: 52px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 88px;
  position: relative;
  z-index: 2;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.foot .fbrand {
  font-family: "Anton";
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.foot .legal {
  font-size: 11.5px;
  color: #6d7cab;
  max-width: 430px;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.hero .anim {
  opacity: 0;
  transform: translateY(30px);
  animation: rise 0.9s var(--ease) forwards;
}
.hero .a1 {
  animation-delay: 0.1s;
}
.hero .a2 {
  animation-delay: 0.25s;
}
.hero .a3 {
  animation-delay: 0.4s;
}
.hero .a4 {
  animation-delay: 0.55s;
}
.hero .a5 {
  animation-delay: 0.7s;
}
.hero .a6 {
  animation-delay: 0.85s;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ============ RESPONSIVO ============ */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-row,
  .stats,
  .tagline {
    justify-content: center;
  }
  .tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .hist-grid,
  .props-grid,
  .content-cards,
  .cta-band {
    grid-template-columns: 1fr;
  }
  .cta-band {
    padding: 36px 26px;
  }
}
@media (max-width: 760px) {
  .menu {
    position: fixed;
    inset: 78px 0 auto 0;
    background: rgba(12, 22, 69, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 30px 24px;
    gap: 22px;
    transform: translateY(-130%);
    transition: 0.4s var(--ease);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .menu.open {
    transform: none;
  }
  .menu .btn {
    width: 100%;
    justify-content: center;
  }
  .burger {
    display: flex;
  }
  .block {
    padding: 78px 0;
  }
  .marquee-track {
    font-size: 18px;
  }
}

/* ============ NOTÍCIAS (seção dinâmica) ============ */
.noticias {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(19, 34, 95, 0.4),
    transparent
  );
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(19, 34, 95, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.35s var(--ease);
}
.news-card .ncover {
  position: absolute;
  inset: 0;
  z-index: 4;
}
.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 206, 0, 0.45);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.35);
}
.news-card .nthumb {
  height: 172px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--royal), var(--navy-2));
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
}
.news-card .nthumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.news-card .nthumb .ico {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
}
.news-card .ndate {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 5px 11px;
  border-radius: 8px;
  z-index: 2;
}
.news-card .nbody {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.news-card .nkind {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--blue-2);
}
.news-card .nkind .ico {
  width: 14px;
  height: 14px;
}
.news-card h4 {
  font-weight: 800;
  font-size: 17px;
  line-height: 1.3;
}
.news-card p {
  font-size: 13.5px;
  color: #b4c0e2;
  line-height: 1.55;
  flex: 1;
}
.news-card .nlink {
  margin-top: 6px;
  font-weight: 800;
  font-size: 13px;
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.news-card .nlink .ico {
  width: 16px;
  height: 16px;
}
.news-empty {
  margin-top: 40px;
  padding: 40px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}
@media (max-width: 980px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ GALERIA (trajetória & realizações) ============ */
.galeria {
  margin-top: 64px;
  padding-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.gal-title {
  font-family: "Anton";
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.gal-title .hl {
  color: var(--yellow);
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.gal-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(19, 34, 95, 0.5);
  margin: 0;
  aspect-ratio: 4/3;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gal-item:hover img {
  transform: scale(1.06);
}
.gal-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 14px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  background: linear-gradient(transparent, rgba(9, 16, 49, 0.92));
}
.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1.5px rgba(255, 206, 0, 0.16);
  border-radius: 16px;
  pointer-events: none;
}
@media (max-width: 900px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .gal-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ LOGO REAL (marca) ============ */
.brand-logo {
  height: 40px;
  width: auto;
  background: #fff;
  padding: 6px 9px;
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}
.foot-logo {
  height: 34px;
  width: auto;
  background: #fff;
  padding: 5px 8px;
  border-radius: 9px;
  vertical-align: middle;
}
@media (max-width: 760px) {
  .brand-logo {
    height: 36px;
  }
}

/* ============ REDES SOCIAIS COLORIDAS ============ */
.soc.soc-whatsapp {
  background: #25d366;
  border-color: transparent;
  color: #fff;
}
.soc.soc-instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888
  );
  border-color: transparent;
  color: #fff;
}
.soc.soc-youtube {
  background: #ff0000;
  border-color: transparent;
  color: #fff;
}
.soc.soc-facebook {
  background: #1877f2;
  border-color: transparent;
  color: #fff;
}
.soc.soc-whatsapp:hover,
.soc.soc-instagram:hover,
.soc.soc-youtube:hover,
.soc.soc-facebook:hover {
  transform: translateY(-4px);
  color: #fff;
  filter: brightness(1.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

/* ============ RODAPÉ REFORÇADO ============ */
.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.6fr;
  gap: 40px;
  padding-bottom: 34px;
}
.foot-brand .fbrand {
  font-family: "Anton";
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot-brand p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 340px;
}
.foot-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.foot-socials .soc {
  width: 42px;
  height: 42px;
}
.foot-links,
.foot-legal-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.foot-links b,
.foot-legal-col b {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}
.foot-links a {
  font-size: 14px;
  color: #c0caea;
  transition: 0.2s;
  width: fit-content;
}
.foot-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.foot-legal-col .legal {
  font-size: 12px;
  color: #8b96b8;
  line-height: 1.6;
  max-width: 100%;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-bottom p {
  font-size: 12px;
  color: #6d7cab;
}
@media (max-width: 820px) {
  .foot-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .foot-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

/* card de notícia sem foto: marca d'água do símbolo (não fica "solto") */
.news-card .nthumb:not(:has(img)) {
  background: linear-gradient(135deg, var(--royal), var(--navy-2));
}
.news-card .nthumb:not(:has(img))::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/logo-simbolo.png") center/58% no-repeat;
  opacity: 0.14;
}
.news-card .nthumb:not(:has(img)) .ico {
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

/* ícones de marca (X, TikTok, LinkedIn) usam preenchimento, não traço */
.ico-brand {
  fill: currentColor;
  stroke: none;
}
.soc.soc-x {
  background: #000;
  border-color: transparent;
  color: #fff;
}
.soc.soc-tiktok {
  background: #000;
  border-color: transparent;
  color: #fff;
}
.soc.soc-linkedin {
  background: #0a66c2;
  border-color: transparent;
  color: #fff;
}
.soc.soc-x:hover,
.soc.soc-tiktok:hover,
.soc.soc-linkedin:hover {
  transform: translateY(-4px);
  color: #fff;
  filter: brightness(1.15);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}
.soc.soc-tiktok .ico {
  filter: drop-shadow(1px 0 0 #25f4ee) drop-shadow(-1px 0 0 #fe2c55);
}

/* dois botões de WhatsApp */
.wa-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.wa-row .btn {
  font-size: 13.5px;
}

/* honeypot anti-bot: invisivel para humanos, fora do fluxo e da acessibilidade */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* consentimento LGPD no formulario */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  margin: 4px 0 6px;
  cursor: pointer;
}
.consent input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: var(--blue);
}
.consent a {
  color: var(--yellow);
  text-decoration: underline;
}
