/* ============================================================
   PREPARATÓRIO MILITAR BR — Stylesheet
   Foco: Header · Topbar · Navbar · Hero Carousel
   ============================================================ */

/* ─── FONTES ─── */
@font-face {
  font-family: 'Helvetica';
  src: url('fonts/Helvetica-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica';
  src: url('fonts/Helvetica.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica';
  src: url('fonts/Helvetica-Oblique.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica';
  src: url('fonts/Helvetica-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helvetica';
  src: url('fonts/Helvetica-BoldOblique.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ─── VARIÁVEIS ─── */
:root {
  /* Paleta */
  --navy-900:  #050d26;
  --navy-800:  #0a1535;
  --navy-700:  #0d1b4b;
  --navy-600:  #162252;
  --navy-500:  #1e3080;
  --navy-400:  #2d4499;
  --purple:    #4a4f9e;
  --gold:      #FFB800;
  --gold-dark: #d99a00;
  --green:     #1a7f1a;
  --green-br:  #2da82d;
  --white:     #ffffff;
  --white-80:  rgba(255,255,255,0.8);
  --white-60:  rgba(255,255,255,0.6);
  --white-20:  rgba(255,255,255,0.2);
  --white-10:  rgba(255,255,255,0.1);

  /* Topbar */
  --topbar-h: 44px;
  --topbar-bg: linear-gradient(100deg,
    #b8bce8 0%,
    #7b80c8 30%,
    #3d4390 65%,
    #1a2060 100%
  );

  /* Navbar */
  --navbar-h: 80px;
  --navbar-bg: var(--navy-700);

  /* Tipografia */
  --font-heading: 'Bebas Neue', 'Helvetica', sans-serif;
  --font-body:    'Barlow', 'Helvetica', sans-serif;
  --font: var(--font-body);

  /* Transições */
  --t-fast: 0.18s ease;
  --t-base: 0.32s ease;
  --t-slow: 0.55s ease;

  /* Sombras */
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.2);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.45);
  --glow-gold:  0 0 24px rgba(255,184,0,0.35);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

/* ─── KEYFRAMES ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(64px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0)    scale(1); }
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translate(0, 0); }
  50%  { transform: scale(1.06) translate(-1.5%, -1%); }
  100% { transform: scale(1)    translate(0, 0); }
}
@keyframes floatJet {
  0%, 100% { transform: translateY(-320px)    rotate(-3deg); }
  50%       { transform: translateY(-334px) rotate(-3deg); }
}
@keyframes navDrop {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}
@keyframes pulseCta {
  0%, 100% { box-shadow: 0 0 0 0   rgba(255,184,0,0.5); }
  60%       { box-shadow: 0 0 0 10px rgba(255,184,0,0); }
}
@keyframes shineLine {
  from { background-position: -200% center; }
  to   { background-position:  200% center; }
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--topbar-bg);
  height: var(--topbar-h);
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.topbar-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* WhatsApp / contato */
.topbar-whatsapp {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--white-80);
  transition: color var(--t-fast);
}
.topbar-whatsapp i {
  font-size: 1rem;
  color: #4cde4c;
}
.topbar-whatsapp:hover { color: var(--white); }

/* Ícones sociais */
.topbar-social {
  display: flex;
  align-items: center;
  gap: 2px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--white-80);
  transition: color var(--t-fast), transform var(--t-fast), background var(--t-fast);
  position: relative;
}
.social-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--white-10);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.social-icon:hover::after   { opacity: 1; transform: scale(1); }
.social-icon:hover          { color: var(--white); transform: translateY(-2px); }
.social-icon:hover .fa-youtube           { color: #FF0000; }
.social-icon:hover .fa-facebook          { color: #1877F2; }
.social-icon:hover .fa-instagram         { color: #E1306C; }
.social-icon:hover .fa-pinterest         { color: #E60023; }
.social-icon:hover .fa-facebook-messenger{ color: #00B2FF; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: relative;
  top: 0;
  width: 100%;
  height: var(--navbar-h);
  background: var(--navbar-bg);
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
  animation: navDrop 0.45s ease both;
  transition: background var(--t-base), box-shadow var(--t-base);
  overflow: visible;
}

/* Navbar ao scrollar */
.navbar.scrolled {
  background: rgba(13, 27, 75, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1002;
  transform: translateY(-15px);
  transition: transform var(--t-fast);
}
.nav-logo img {
  height: 112px;
  width: auto;
  filter:
    drop-shadow(0 6px 20px rgba(0,0,0,0.80))
    drop-shadow(0 0 12px rgba(0,0,0,0.50));
}
.nav-logo:hover {
  transform: translateY(-15px) scale(1.07);
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-80);
  padding: 8px 14px;
  border-radius: 3px;
  position: relative;
  transition: color var(--t-fast);
  white-space: nowrap;
}

/* Underline animado */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-base);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Botão CTA na navbar */
.nav-link.nav-cta {
  background: var(--gold);
  color: var(--navy-900) !important;
  padding: 9px 20px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 1.2px;
  animation: pulseCta 2.5s ease-in-out infinite;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,184,0,0.45);
  animation: none;
}

/* Hamburguer */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base), width var(--t-base);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  max-height: 960px;
  overflow: hidden;
}

/* ─── Carrossel ─── */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ─── Slide ─── */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Background com Ken Burns */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.hero-slide.active .hero-bg {
  animation: kenBurns 22s ease-in-out infinite;
}

/* Overlays — variações por slide */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,13,38,0.90) 0%,
    rgba(5,13,38,0.68) 45%,
    rgba(5,13,38,0.28) 100%
  );
}
.hero-overlay--center {
  background: linear-gradient(
    105deg,
    rgba(5,13,38,0.88) 0%,
    rgba(5,13,38,0.60) 50%,
    rgba(5,13,38,0.30) 100%
  );
}
.hero-overlay--bottom {
  background: linear-gradient(
    to top,
    rgba(5,13,38,0.95) 0%,
    rgba(5,13,38,0.70) 40%,
    rgba(5,13,38,0.50) 100%
  );
}

/* Linha diagonal decorativa */
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 42%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,184,0,0.12), transparent);
  display: none;
}

/* ─── Conteúdo do slide ─── */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
}

/* Animações em cascata ao tornar o slide ativo */
.hero-slide.active .hero-badge    { animation: fadeInUp 0.55s ease 0.05s both; }
.hero-slide.active .hero-title    { animation: fadeInUp 0.65s ease 0.20s both; }
.hero-slide.active .hero-subtitle { animation: fadeInUp 0.65s ease 0.38s both; }
.hero-slide.active .hero-actions  { animation: fadeInUp 0.65s ease 0.52s both; }
.hero-slide.active .hero-stats    { animation: fadeInUp 0.65s ease 0.66s both; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,184,0,0.12);
  border: 1px solid rgba(255,184,0,0.38);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 24px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-badge i { font-size: 0.68rem; }

/* Título */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 3px 24px rgba(0,0,0,0.55);
  margin-bottom: 22px;
}
.text-gold { color: var(--gold); }

/* Subtítulo */
.hero-subtitle {
  font-size: clamp(0.88rem, 1.4vw, 1.02rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 38px;
}

/* ─── Botões Hero ─── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Botão Primário — split verde/dourado (bandeira) */
.btn-hero-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 3px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  border: none;
  background: linear-gradient(to right, var(--green) 62%, var(--gold) 62%);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  /* Efeito brilho */
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.18) 50%,
    transparent 70%
  );
  background-size: 200% auto;
  animation: shineLine 3.5s linear infinite;
}
.btn-hero-primary span {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.btn-hero-primary i {
  position: relative;
  z-index: 1;
  color: var(--navy-900);
  font-size: 0.82rem;
  transition: transform var(--t-fast);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), var(--glow-gold);
}
.btn-hero-primary:hover i { transform: translateX(4px); }
.btn-hero-primary:active  { transform: translateY(-1px); }

/* Botão Secundário — outline */
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,0.35);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-80);
  transition: border-color var(--t-fast), color var(--t-fast), transform var(--t-fast), background var(--t-fast);
}
.btn-hero-secondary i { font-size: 0.85rem; transition: transform var(--t-fast); }
.btn-hero-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,184,0,0.06);
  transform: translateY(-3px);
}
.btn-hero-secondary:hover i { transform: scale(1.15); }

/* ─── Stats ─── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 400;
  color: var(--gold);
}
.stat-lbl {
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--white-60);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 2px;
}
.stat-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* ─── Jato decorativo ─── */
.hero-visual {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 52%;
  max-width: 720px;
  z-index: 2;
  pointer-events: none;
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.hero-slide:not(.active) .hero-visual {
  opacity: 0;
  transform: translateX(60px) scale(0.96);
}
.hero-slide.active .hero-visual {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}
.hero-jet {
  width: 100%;
  height: auto;
  animation: floatJet 7s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.55));
}
/* ─── Controles do Carrossel ─── */
.hero-controls {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-900);
  transform: scale(1.1);
  box-shadow: var(--glow-gold);
}
.hero-arrow:active { transform: scale(1.0); }

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.30);
  cursor: pointer;
  padding: 0;
  transition: all var(--t-base);
}
.hero-dot.active {
  width: 30px;
  border-radius: 5px;
  background: var(--gold);
  box-shadow: var(--glow-gold);
}
.hero-dot:not(.active):hover {
  background: rgba(255,255,255,0.60);
  transform: scale(1.2);
}

/* ─── Barra de progresso ─── */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--green-br), var(--gold));
  z-index: 10;
  border-radius: 0 2px 0 0;
}

/* ─── Scroll hint ─── */
.hero-scroll-hint {
  position: absolute;
  bottom: 22px;
  right: 44px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.55;
  transition: opacity var(--t-fast);
}
.hero-scroll-hint:hover { opacity: 0.9; }
.hero-scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-80);
  writing-mode: vertical-rl;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.38);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* ─── Tablet ─── */
@media (max-width: 1100px) {
  .hero-visual {
    width: 44%;
    opacity: 0.55;
  }
  .hero-content { padding: 0 44px; }
}

@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero-content { padding: 0 36px; }
}

/* ============================================================
   MENU MOBILE FULLSCREEN
   ============================================================ */
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {

  /* ── Topbar: oculta ── */
  .topbar { display: none; }

  /* ── Navbar ── */
  :root { --navbar-h: 64px; }
  .navbar { height: var(--navbar-h); }
  .nav-menu { display: none; }          /* menu desktop oculto no mobile */
  .nav-toggle { display: flex; }
  .nav-logo { transform: translateY(10px); }
  .nav-logo:hover { transform: translateY(10px) scale(1.07); }
  .nav-logo img { height: 78px; }

  /* ── Fullscreen overlay ── */
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy-900);
    padding: 0 28px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
  }

  /* Cabeçalho do overlay: logo + botão fechar */
  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--navbar-h);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .mobile-menu-header img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  }
  .mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast), transform var(--t-fast);
  }
  .mobile-menu-close:hover {
    background: rgba(255,255,255,0.16);
    transform: rotate(90deg);
  }

  /* Links centralizados */
  .mobile-menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .mobile-link {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-80);
    padding: 12px 24px;
    border-radius: 4px;
    transition: color var(--t-fast), background var(--t-fast);
    text-align: center;
    width: 100%;
  }
  .mobile-link:hover,
  .mobile-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.05);
  }
  .mobile-link-cta {
    background: var(--gold);
    color: var(--navy-900) !important;
    margin-top: 10px;
    font-size: 1.1rem;
    border-radius: 4px;
  }
  .mobile-link-cta:hover {
    background: var(--gold-dark) !important;
  }

  /* Redes sociais no rodapé */
  .mobile-menu-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }
  .mobile-menu-social .social-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
  }
  .mobile-menu-social .social-icon:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.1);
  }

  /* ── Hero mobile ── */
  .hero { max-height: none; height: 100svh; min-height: 560px; }
  .hero-content { padding: 0 22px; }
  .hero-title    { font-size: clamp(1.85rem, 7.5vw, 2.8rem); margin-bottom: 14px; }
  .hero-badge    { font-size: 0.67rem; margin-bottom: 14px; }
  .hero-subtitle { font-size: 0.85rem; margin-bottom: 26px; }
  .hero-subtitle br { display: none; }
  .hero-actions  { gap: 10px; margin-bottom: 28px; }
  .btn-hero-primary,
  .btn-hero-secondary { padding: 12px 20px; font-size: 0.8rem; }
  .hero-stats  { gap: 14px; }
  .stat-num    { font-size: 1.25rem; }
  .stat-sep    { height: 32px; }
  .hero-controls { bottom: 32px; gap: 12px; }
  .hero-arrow    { width: 38px; height: 38px; font-size: 0.8rem; }
  .hero-dot      { width: 7px; height: 7px; }
  .hero-dot.active { width: 24px; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 480px) {
  :root { --navbar-h: 60px; }
  .nav-logo img { height: 70px; }
  .mobile-menu-header img { height: 52px; }
  .mobile-menu-header img { height: 46px; }
  .mobile-link   { font-size: 1.3rem; padding: 10px 20px; }
  .hero-stats    { display: none; }
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .btn-hero-primary,
  .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-title    { font-size: clamp(1.7rem, 9vw, 2.4rem); }
}

/* ============================================================
   UTILITÁRIOS — animações de scroll
   ============================================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].visible                       { opacity: 1; transform: none; }
[data-delay="100"][data-animate].visible     { transition-delay: 0.10s; }
[data-delay="200"][data-animate].visible     { transition-delay: 0.20s; }
[data-delay="300"][data-animate].visible     { transition-delay: 0.30s; }

/* ============================================================
   SEÇÃO: 4 FORÇAS
   ============================================================ */

/* Paleta por força */
.forca-card[data-color="marinha"]     { --accent: #4A90D9; --accent2: #1a3a8f; --rgb: 74,144,217; }
.forca-card[data-color="exercito"]    { --accent: #5DBE63; --accent2: #1B5E20; --rgb: 93,190,99;  }
.forca-card[data-color="aeronautica"] { --accent: #56CCF2; --accent2: #0277BD; --rgb: 86,204,242; }
.forca-card[data-color="bombeiro"]    { --accent: #FF6B4A; --accent2: #B71C1C; --rgb: 255,107,74; }

/* ── Seção ── */
.forcas-section {
  position: relative;
  padding: 110px 0 120px;
  background: #07101f;
  overflow: hidden;
}

/* Grid pontilhado de fundo */
.forcas-bg-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,184,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,184,0,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.forcas-bg-deco::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, #07101f 80%);
  pointer-events: none;
}

.forcas-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Cabeçalho ── */
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
}

/* ── Grid ── */
.forcas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Card ── */
.forca-card {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(145deg, #0e1d3d 0%, #080f26 100%);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
}
.forca-card:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--rgb), 0.45);
  box-shadow:
    0 24px 64px rgba(0,0,0,0.55),
    0 0 0 1px rgba(var(--rgb), 0.18),
    0 0 50px rgba(var(--rgb), 0.10);
}

/* Glow radial no canto superior direito */
.forca-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(var(--rgb), 0.14) 0%, transparent 65%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
}
.forca-card:hover::after { opacity: 1; }

/* Faixa colorida no topo com shimmer */
.forca-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--accent2), var(--accent), var(--accent2));
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: background-position 0.6s ease;
}
.forca-card:hover .forca-card-accent {
  background-position: 0% 0;
}

.forca-card-inner {
  padding: 30px 30px 26px;
}

/* ── Topo: ícone + badge ── */
.forca-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

/* Círculo do ícone */
.forca-icon-wrap {
  position: relative;
  width: 86px;
  height: 86px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(var(--rgb), 0.10);
  border: 2px solid rgba(var(--rgb), 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.38s ease, border-color 0.38s ease, box-shadow 0.38s ease;
}
.forca-card:hover .forca-icon-wrap {
  background: rgba(var(--rgb), 0.18);
  border-color: rgba(var(--rgb), 0.50);
  box-shadow: 0 0 28px rgba(var(--rgb), 0.25);
}

/* Fundo azul-celeste para a logo B&W da Aeronáutica */
.forca-icon-wrap--sky {
  background: rgba(2, 119, 189, 0.25);
  border-color: rgba(86,204,242,0.35);
}
.forca-card:hover .forca-icon-wrap--sky {
  background: rgba(2, 119, 189, 0.40);
}

.forca-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transition: transform 0.38s ease;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.55));
}
.forca-card:hover .forca-logo { transform: scale(1.12); }

/* Badge e subtítulo */
.forca-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.forca-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 5px;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(var(--rgb), 0.35);
}
.forca-badge i { font-size: 0.78rem; }

.forca-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(var(--rgb), 0.75);
}

/* ── Conteúdo ── */
.forca-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
}
.forca-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(255,255,255,0.60);
  margin-bottom: 22px;
}

/* CTA */
.forca-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.22s ease, color 0.22s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(var(--rgb), 0.3);
}
.forca-cta i { font-size: 0.8rem; transition: transform 0.22s ease; }
.forca-cta:hover { color: var(--white); gap: 14px; border-color: rgba(255,255,255,0.4); }
.forca-cta:hover i { transform: translateX(4px); }

/* ── Responsivo ── */
@media (max-width: 860px) {
  .forcas-grid { grid-template-columns: 1fr; }
  .forcas-section { padding: 80px 0 90px; }
  .section-header { margin-bottom: 48px; }
}
@media (max-width: 480px) {
  .forca-card-inner { padding: 22px 20px 20px; }
  .forca-icon-wrap { width: 72px; height: 72px; }
  .forca-logo { width: 48px; height: 48px; }
  .forca-title { font-size: 1.6rem; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
}

/* ============================================================
   SEÇÃO: MISSÃO / CARREIRA MILITAR  (v3 — editorial)
   ============================================================ */

.missao-section {
  background: var(--navy-900);
  overflow: hidden;
  position: relative;
}

/* Grade diagonal + brilhos — imita o padrão das seções acima */
.missao-bg-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Grade pontilhada ouro */
  background-image:
    radial-gradient(circle, rgba(255,184,0,0.04) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
}
.missao-bg-deco::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Linhas diagonais sutis */
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.012) 0px,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 48px
    );
}
.missao-bg-deco::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Brilhos radiais — ouro canto superior direito, verde canto inferior esquerdo */
  background:
    radial-gradient(ellipse 55% 50% at 100% 0%,   rgba(255,184,0,0.08)  0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 0%   100%,  rgba(26,127,26,0.09)  0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 50%  50%,   rgba(5,13,38,0.45)    0%, transparent 70%);
}

/* Blocos acima da decoração */
.missao-bloco1,
.missao-bloco2 {
  position: relative;
  z-index: 1;
}

/* ────────────────────────────────────────
   BLOCO 1 — colagem de fotos (esq) + texto (dir)
   ──────────────────────────────────────── */
.missao-bloco1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 80px 80px 60px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

/* ── Coluna esquerda: colagem de fotos ── */
.missao-photos-col {
  position: relative;
  padding-right: 56px;
}

/* Decoração pontinhos no canto superior-direito */
.mphotos-dot-deco {
  position: absolute;
  top: -10px;
  right: 64px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(180,140,0,0.5) 1.5px, transparent 1.5px);
  background-size: 11px 11px;
  pointer-events: none;
  z-index: 0;
}

/* Badge "15 ANOS DE EXPERIÊNCIA" */
.mphotos-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: #4a5814;
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 148px;
}
.mphotos-badge strong {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1;
  display: block;
}
.mphotos-badge span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Grade das fotos lado a lado */
.mphotos-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 5px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.mphoto {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
}
.mphoto--left  { object-position: center center; }
.mphoto--right { object-position: center 20%; }

/* ── Coluna direita: texto ── */
.missao-text-col {
  padding-left: 16px;
}

.missao-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8fa020;
  margin-bottom: 20px;
}
.missao-eyebrow i { font-size: 0.68rem; }

.missao-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.06;
  margin-bottom: 24px;
}

.missao-body {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 430px;
  margin-bottom: 36px;
}

.btn-missao-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 34px;
  background: #5c6d18;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease;
}
.btn-missao-primary:hover {
  background: #6e8220;
  transform: translateY(-2px);
}
.btn-missao-primary i {
  font-size: 0.78rem;
  transition: transform 0.22s ease;
}
.btn-missao-primary:hover i { transform: translateX(4px); }

/* ────────────────────────────────────────
   BLOCO 2 — (verde+foto) esq + (foto+texto) dir
   ──────────────────────────────────────── */
.missao-bloco2 {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px 80px;
}

/* ── Coluna esquerda: painel verde + foto empilhados ── */
.missao-join-col {
  display: flex;
  flex-direction: column;
  padding-right: 5px;
}

.missao-join-green {
  background: #5c6d18;
  padding: 52px 44px;
  flex: 0 0 auto;
}

.join-green-title {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.missao-join-img {
  flex: 1;
  overflow: hidden;
  min-height: 300px;
}
.missao-join-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 8s ease;
}
.missao-join-img:hover img { transform: scale(1.04); }

/* ── Coluna direita: foto grande + texto ── */
.missao-estab-col {
  display: flex;
  flex-direction: column;
  padding-left: 5px;
}

.missao-estab-img {
  overflow: hidden;
}
.missao-estab-img img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 8s ease;
}
.missao-estab-img:hover img { transform: scale(1.04); }

.missao-estab-text {
  padding: 40px 0 0;
  flex: 1;
}

.estab-title-new {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.estab-body-new {
  font-size: clamp(0.82rem, 1.2vw, 0.9rem);
  color: rgba(255,255,255,0.58);
  line-height: 1.78;
  max-width: 560px;
  margin-bottom: 12px;
}

/* ── Responsivo: missão ── */
@media (max-width: 1100px) {
  .missao-bloco1 { padding: 72px 56px 52px; }
  .missao-bloco2 { padding: 0 56px 72px; }
}
@media (max-width: 860px) {
  .missao-bloco1 {
    grid-template-columns: 1fr;
    padding: 64px 32px 48px;
    gap: 48px;
  }
  .missao-photos-col { padding-right: 0; }
  .mphoto { height: 280px; }
  .missao-text-col { padding-left: 0; }
  .missao-bloco2 {
    grid-template-columns: 1fr;
    padding: 0 32px 64px;
    gap: 0;
  }
  .missao-join-col { padding-right: 0; margin-bottom: 5px; }
  .missao-join-img { min-height: 240px; }
  .missao-estab-col { padding-left: 0; }
  .missao-estab-img img { height: 320px; }
  .missao-estab-text { padding: 32px 0 0; }
}
@media (max-width: 480px) {
  .missao-bloco1 { padding: 52px 20px 40px; gap: 40px; }
  .missao-bloco2 { padding: 0 20px 52px; }
  .mphotos-grid { grid-template-columns: 1fr; }
  .mphoto { height: 240px; }
  .mphotos-dot-deco { display: none; }
  .missao-headline { font-size: clamp(2rem, 10vw, 2.8rem); }
  .join-green-title { font-size: clamp(2.8rem, 12vw, 4rem); }
  .missao-join-green { padding: 40px 28px; }
  .missao-estab-img img { height: 260px; }
}

/* ============================================================
   SEÇÃO: VÍDEOS
   ============================================================ */

.videos-section {
  position: relative;
  background: var(--navy-800);
  padding: 110px 0 130px;
  overflow: hidden;
}

/* Fundo decorativo — gradiente radial + linhas sutis */
.videos-bg-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(45,168,45,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(255,184,0,0.05) 0%, transparent 65%);
}
.videos-bg-deco::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg,  rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 80px);
}

.videos-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Subtítulo da seção */
.vid-section-sub {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: var(--white-60);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ── Carousel wrapper ── */
.vid-carousel {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 64px -12px 0;
}

/* ── Stage (viewport dos cards) ── */
.vid-stage {
  position: relative;
  flex: 1;
  height: clamp(420px, 58vw, 660px);
  overflow: hidden;
}

/* ── Cards ── */
.vid-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(240px, 30vw, 420px);
  aspect-ratio: 332 / 453;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  /* Estado padrão: escondido */
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-50%) scale(0.55);
  transition:
    transform 0.52s cubic-bezier(0.4, 0, 0.2, 1),
    opacity   0.52s ease,
    filter    0.52s ease,
    box-shadow 0.52s ease;
  will-change: transform, opacity;
}

/* Estado: ativo (centro) */
.vid-card.s-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-50%) scale(1);
  z-index: 3;
  box-shadow:
    0 28px 72px rgba(0,0,0,0.65),
    0 0 0 1.5px rgba(255,184,0,0.35);
}

/* Estado: anterior (esquerda) */
.vid-card.s-prev {
  opacity: 0.52;
  pointer-events: auto;
  transform: translateX(calc(-50% - clamp(230px, 27vw, 410px))) translateY(-50%) scale(0.80);
  z-index: 2;
  filter: blur(1.5px) brightness(0.65);
}

/* Estado: próximo (direita) */
.vid-card.s-next {
  opacity: 0.52;
  pointer-events: auto;
  transform: translateX(calc(-50% + clamp(230px, 27vw, 410px))) translateY(-50%) scale(0.80);
  z-index: 2;
  filter: blur(1.5px) brightness(0.65);
}

/* Estado: longe à esquerda */
.vid-card.s-far-prev {
  opacity: 0.18;
  pointer-events: none;
  transform: translateX(calc(-50% - clamp(420px, 50vw, 700px))) translateY(-50%) scale(0.60);
  z-index: 1;
  filter: blur(3px) brightness(0.4);
}

/* Estado: longe à direita */
.vid-card.s-far-next {
  opacity: 0.18;
  pointer-events: none;
  transform: translateX(calc(-50% + clamp(420px, 50vw, 700px))) translateY(-50%) scale(0.60);
  z-index: 1;
  filter: blur(3px) brightness(0.4);
}

/* Borda dourada pulsante no card ativo */
.vid-card.s-active::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1.5px solid rgba(255,184,0,0.5);
  z-index: 10;
  pointer-events: none;
  animation: vidBorderPulse 3s ease-in-out infinite;
}

@keyframes vidBorderPulse {
  0%, 100% { border-color: rgba(255,184,0,0.25); box-shadow: inset 0 0 0 transparent; }
  50%       { border-color: rgba(255,184,0,0.65); box-shadow: inset 0 0 12px rgba(255,184,0,0.08); }
}

/* ── Thumbnail ── */
.vid-thumb-wrap {
  position: absolute;
  inset: 0;
}
.vid-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.vid-card.s-active:hover .vid-thumb-img {
  transform: scale(1.04);
}
.vid-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,13,38,0.08)  0%,
    rgba(5,13,38,0.15) 40%,
    rgba(5,13,38,0.88) 85%,
    rgba(5,13,38,0.97) 100%
  );
}

/* ── Badge de categoria ── */
.vid-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.3s ease;
}
.vid-badge--marinha     { background: rgba(74,144,217,0.22); color: #90c8f7; border: 1px solid rgba(74,144,217,0.45); }
.vid-badge--exercito    { background: rgba(93,190,99,0.22);  color: #8ede95; border: 1px solid rgba(93,190,99,0.45);  }
.vid-badge--aeronautica { background: rgba(86,204,242,0.22); color: #82dcf7; border: 1px solid rgba(86,204,242,0.45); }
.vid-badge--bombeiro    { background: rgba(255,107,74,0.22); color: #ff9b80; border: 1px solid rgba(255,107,74,0.45); }

/* ── Badge de duração ── */
.vid-duration {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.72);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5;
}

/* ── Botão play ── */
.vid-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.vid-card.s-active:hover .vid-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
}
.vid-play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.vid-play-icon {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.15rem;
  margin-left: 3px; /* centrar visualmente */
}

/* Play dourado no ativo */
.vid-card.s-active .vid-play-ring {
  border-color: var(--gold);
  background: rgba(255,184,0,0.18);
  animation: playPulseGold 2.8s ease-in-out infinite;
}
.vid-card.s-active .vid-play-icon { color: var(--gold); }

@keyframes playPulseGold {
  0%, 100% { box-shadow: 0 0 0 0   rgba(255,184,0,0.45); }
  50%       { box-shadow: 0 0 0 14px rgba(255,184,0,0); }
}

.vid-card.s-active:hover .vid-play-ring {
  background: rgba(255,184,0,0.35);
  border-color: var(--gold);
  animation: none;
  transform: scale(1.1);
}

/* ── Info do card (parte inferior) ── */
.vid-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 16px 16px;
  z-index: 5;
}
.vid-card-title {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.7vw, 1.2rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 5px;
}
.vid-card-meta {
  font-size: 0.72rem;
  color: var(--white-60);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.25s ease;
}
.vid-card.s-active:hover .vid-card-meta { color: var(--gold); }

/* ── Setas de navegação ── */
.vid-arrow {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,184,0,0.35);
  background: rgba(5,13,38,0.55);
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0 12px;
  z-index: 10;
}
.vid-arrow:hover {
  background: var(--gold);
  color: var(--navy-900);
  border-color: var(--gold);
  transform: scale(1.12);
}

/* ── Rodapé do carrossel (dots + contador) ── */
.vid-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.vid-dots { display: flex; gap: 8px; }
.vid-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
  padding: 0;
}
.vid-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}
.vid-counter {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  color: var(--white-60);
  letter-spacing: 0.12em;
}

/* ── MODAL ── */
.vid-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.vid-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.vid-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,13,38,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.vid-modal-box {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 1020px;
  background: var(--navy-900);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,184,0,0.15);
  transform: scale(0.90) translateY(20px);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vid-modal.open .vid-modal-box {
  transform: scale(1) translateY(0);
}
.vid-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 12px;
}
.vid-modal-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.vid-modal-title-txt {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--white-80);
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vid-modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--white-60);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.vid-modal-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transform: rotate(90deg);
}
.vid-modal-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.vid-modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Painel de detalhes do vídeo ativo ── */
.vid-detail {
  position: relative;
  margin-top: 52px;
  padding: 36px 48px 32px;
  background: rgba(13,27,75,0.45);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  transition: opacity 0.4s ease;
}
.vid-detail::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  border-radius: 4px 0 0 4px;
  transition: background 0.4s ease;
}
.vid-detail-left {
  flex: 1;
  min-width: 0;
}
.vid-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.vid-detail-badge.badge-marinha     { background: rgba(74,144,217,0.18); color: #90c8f7; border: 1px solid rgba(74,144,217,0.4); }
.vid-detail-badge.badge-exercito    { background: rgba(93,190,99,0.18);  color: #8ede95; border: 1px solid rgba(93,190,99,0.4);  }
.vid-detail-badge.badge-aeronautica { background: rgba(86,204,242,0.18); color: #82dcf7; border: 1px solid rgba(86,204,242,0.4); }
.vid-detail-badge.badge-bombeiro    { background: rgba(255,107,74,0.18); color: #ff9b80; border: 1px solid rgba(255,107,74,0.4); }
.vid-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 2.0rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 10px;
  transition: opacity 0.35s ease;
}
.vid-detail-desc {
  font-size: clamp(0.85rem, 1.4vw, 0.98rem);
  color: var(--white-60);
  line-height: 1.7;
  max-width: 520px;
  transition: opacity 0.35s ease;
}
.vid-detail-right {
  flex-shrink: 0;
}
.vid-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--navy-900);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
}
.vid-detail-cta:hover {
  background: #ffc929;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,184,0,0.4);
}
.vid-detail-cta i { font-size: 0.8rem; transition: transform 0.22s ease; }
.vid-detail-cta:hover i { transform: translateX(4px); }

/* Fade de transição ao trocar vídeo */
.vid-detail.fading { opacity: 0; }

/* ── Responsivo: vídeos ── */
@media (max-width: 860px) {
  .vid-stage { height: 480px; }
  .vid-carousel { margin: 48px -8px 0; }
  .vid-detail { flex-direction: column; gap: 24px; padding: 28px 28px 24px; }
  .vid-detail-right { width: 100%; }
  .vid-detail-cta { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .vid-stage { height: 420px; }
  .vid-card { width: clamp(220px, 72vw, 300px); }
  .vid-card.s-prev,
  .vid-card.s-next { opacity: 0.28; filter: blur(3px) brightness(0.45); }
  .vid-card.s-far-prev,
  .vid-card.s-far-next { opacity: 0; }
  .vid-arrow { width: 40px; height: 40px; margin: 0 6px; }
  .vid-modal-box { width: 97%; border-radius: 12px; }
  .vid-detail { padding: 28px 20px 20px; }
  .vid-detail-title { font-size: 1.3rem; }
}
@media (max-width: 420px) {
  .vid-stage { height: 370px; }
  .vid-play-btn { width: 52px; height: 52px; }
  .vid-play-icon { font-size: 1rem; }
}

/* ============================================================
   SEÇÃO: CADASTRO / FORMULÁRIO
   ============================================================ */

.cadastro-section {
  display: grid;
  grid-template-columns: 36fr 64fr;
  min-height: 100vh;
  overflow: hidden;
}

/* ── Painel visual (esquerda) ── */
.cadastro-visual {
  position: relative;
  overflow: hidden;
}

.cadastro-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  transform: scale(1.06);
  transition: transform 14s ease;
}
.cadastro-visual:hover .cadastro-bg { transform: scale(1.1); }

.cadastro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(5,13,38,0.93) 0%,
    rgba(13,27,75,0.72) 45%,
    rgba(5,13,38,0.90) 100%
  );
  pointer-events: none;
}

.cadastro-visual-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 88px 64px;
}

.cadastro-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.67rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.cadastro-eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.cadastro-headline {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 7vw, 7.5rem);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.cadastro-visual-sub {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 52px;
}

.cadastro-visual-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cv-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cv-stat strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.cv-stat span {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cv-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── Painel do formulário (direita) ── */
.cadastro-form-panel {
  background: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 80px;
  position: relative;
  overflow: hidden;
}
/* Grade pontilhada + brilhos */
.cadastro-form-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Grade ouro idêntica ao padrão forcas */
  background-image:
    linear-gradient(rgba(255,184,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,184,0,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.cadastro-form-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Brilho ouro no topo + navy no fundo */
  background:
    radial-gradient(ellipse 70% 40% at 50%  0%,   rgba(255,184,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 100%,  rgba(26,127,26,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50%  50%,   transparent 40%, rgba(5,13,38,0.5) 90%);
  pointer-events: none;
}

.cadastro-form-wrap {
  width: 100%;
  max-width: 660px;
  position: relative;
  z-index: 1;
}

/* ── Cabeçalho do form ── */
.cadastro-form-header {
  margin-bottom: 44px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
/* Faixa dourada curta */
.cadastro-form-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 52px;
  height: 2px;
  background: var(--gold);
}

.cadastro-form-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.cadastro-form-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

/* ── Estrutura do formulário ── */
.cadastro-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Campo com label flutuante ── */
.cf-field {
  position: relative;
  padding-top: 28px;
}
.cf-field--full { grid-column: 1 / -1; }
.cf-field--select { position: relative; }

/* Input base */
.cf-input {
  width: 100%;
  padding: 16px 16px 13px;
  background: rgba(255,255,255,0.05);
  border: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.28s ease, border-color 0.28s ease;
}
.cf-input:focus {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,184,0,0.5);
}
.cf-input::placeholder { color: transparent; }

/* Label flutuante */
.cf-label {
  position: absolute;
  left: 16px;
  top: calc(28px + 16px);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
  transform-origin: left center;
  transition: top 0.25s ease, font-size 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.cf-label i { font-size: 0.8rem; transition: color 0.25s ease; }

/* Flutua quando focado ou preenchido */
.cf-input:focus + .cf-label,
.cf-input:not(:placeholder-shown) + .cf-label {
  top: 6px;
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.cf-input:focus + .cf-label i,
.cf-input:not(:placeholder-shown) + .cf-label i { color: var(--gold); }

/* Barra dourada animada no foco */
.cf-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #ffd84a);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.cf-input:focus ~ .cf-bar { transform: scaleX(1); }

/* ── Select ── */
.cf-select {
  cursor: pointer;
  padding-right: 32px;
}
.cf-select option { background: var(--navy-700); color: var(--white); }

/* Label do select: sempre flutuada após ter valor */
.cf-label--select {
  top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}
.cf-field--select.has-value .cf-label--select { color: var(--gold); }
.cf-field--select.has-value .cf-label--select i { color: var(--gold); }
.cf-select:focus + .cf-label--select { color: var(--gold); }
.cf-select:focus + .cf-label--select i { color: var(--gold); }
.cf-select:focus ~ .cf-bar { transform: scaleX(1); }

.cf-select-icon {
  position: absolute;
  right: 12px;
  bottom: 18px;
  color: rgba(255,255,255,0.3);
  font-size: 0.62rem;
  pointer-events: none;
  transition: transform 0.22s ease, color 0.22s ease;
}
.cf-select:focus ~ .cf-select-icon {
  color: var(--gold);
  transform: rotate(180deg);
}

/* ── Botão submit ── */
.cf-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 28px;
  padding: 22px 40px;
  background: var(--gold);
  color: var(--navy-900);
  border: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.26s ease, transform 0.22s ease, box-shadow 0.26s ease;
}
.cf-submit:hover {
  background: #ffc929;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255,184,0,0.35);
}
.cf-submit:active { transform: translateY(0); box-shadow: none; }

.cf-submit-icon {
  font-size: 0.82rem;
  transition: transform 0.22s ease;
}
.cf-submit:hover .cf-submit-icon { transform: translateX(5px); }

/* Efeito shimmer no botão */
.cf-submit-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.28) 50%,
    transparent 80%
  );
  transition: left 0s;
}
.cf-submit:hover .cf-submit-shine {
  left: 140%;
  transition: left 0.55s ease;
}

/* ── Animação de entrada escalonada ── */
.cadastro-form-header,
.cadastro-form > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.cadastro-form-wrap.visible .cadastro-form-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}
.cadastro-form-wrap.visible .cadastro-form > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.cadastro-form-wrap.visible .cadastro-form > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.cadastro-form-wrap.visible .cadastro-form > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
.cadastro-form-wrap.visible .cadastro-form > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }
.cadastro-form-wrap.visible .cadastro-form > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.44s; }
.cadastro-form-wrap.visible .cadastro-form > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.52s; }

/* Animação painel visual */
.cadastro-visual-content[data-animate] {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cadastro-visual-content[data-animate].visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
  .cadastro-form-panel { padding: 64px 56px; }
  .cadastro-visual-content { padding: 72px 48px; }
}
@media (max-width: 860px) {
  .cadastro-section { grid-template-columns: 1fr; }
  .cadastro-visual { min-height: 420px; }
  .cadastro-visual-content { padding: 60px 40px; justify-content: flex-end; }
  .cadastro-headline { font-size: clamp(3.2rem, 10vw, 5rem); }
  .cadastro-form-panel { padding: 60px 40px; }
}
@media (max-width: 560px) {
  .cf-row { grid-template-columns: 1fr; gap: 6px; }
  .cadastro-form-panel { padding: 48px 24px; }
  .cadastro-visual-content { padding: 48px 24px; }
  .cadastro-visual-stats { flex-wrap: wrap; gap: 20px; }
  .cv-sep { display: none; }
}

/* ============================================================
   SEÇÃO COMENTÁRIOS / FEEDBACKS
   ============================================================ */
.coment-section {
  position: relative;
  background: var(--navy-900);
  padding: 96px 0 80px;
  overflow: hidden;
}

.coment-bg-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Grade de pontos — espelhando o padrão forcas */
  background-image:
    linear-gradient(rgba(255,184,0,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,184,0,0.028) 1px, transparent 1px);
  background-size: 56px 56px;
}
.coment-bg-deco::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Vinheta nas bordas para não vazar o grid */
  background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 30%, var(--navy-900) 85%);
}
.coment-bg-deco::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Brilhos de cor */
  background:
    radial-gradient(ellipse 50% 60% at 5%   50%, rgba(26,127,26,0.07)  0%, transparent 60%),
    radial-gradient(ellipse 55% 50% at 95%  50%, rgba(255,184,0,0.07)  0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50%  0%,  rgba(13,27,75,0.6)    0%, transparent 65%);
}

/* Conteúdo acima da decoração */
.coment-wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─ Cabeçalho ─ */
.coment-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}

.coment-nav-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  padding-bottom: 8px;
}

.coment-arr {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.15s, opacity 0.2s;
}

.coment-arr:hover:not(:disabled) {
  background: var(--gold);
  color: var(--navy-900);
  transform: scale(1.08);
}

.coment-arr:disabled {
  opacity: 0.22;
  cursor: not-allowed;
}

/* ─ Track ─ */
.coment-stage-wrap {
  overflow: hidden;
}

.coment-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ─ Card ─ */
.coment-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--navy-800);
  border: 1px solid rgba(255,184,0,0.10);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 44px 38px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.coment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

/* Card header: estrelas */
.coment-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.coment-stars {
  display: flex;
  gap: 6px;
  color: var(--gold);
  font-size: 17px;
}

.coment-stars .far.fa-star {
  color: rgba(255,184,0,0.28);
}

/* Divisor */
.coment-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 0 0 26px 0;
}

/* Texto */
.coment-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.78;
  color: var(--white-80);
  flex: 1;
  margin: 0 0 30px 0;
}

/* Rodapé do card */
.coment-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: auto;
}

.coment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-500), var(--navy-700));
  border: 2px solid rgba(255,184,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.coment-name {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--white);
  letter-spacing: 0.4px;
}

.coment-unit {
  display: block;
  font-size: 13px;
  color: var(--gold);
  margin-top: 4px;
}

/* ─ Dots ─ */
.coment-dots-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.coment-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.25s, border-radius 0.25s;
}

.coment-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ─ Responsivo ─ */
@media (max-width: 991px) {
  .coment-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 639px) {
  .coment-section  { padding: 72px 0 56px; }
  .coment-wrap     { padding: 0 20px; }
  .coment-head     { flex-direction: column; align-items: flex-start; margin-bottom: 36px; }
  .coment-card     { flex: 0 0 100%; }
  .coment-score    { font-size: 40px; }
}

/* ============================================================
   SEÇÃO GUERREIROS — LIDERE COMO
   ============================================================ */
.guerreiros-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

/* ─ Decoração ─ */
.guerreiros-bg-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,184,0,0.035) 1.5px, transparent 1.5px);
  background-size: 38px 38px;
}
.guerreiros-bg-deco::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 0%   50%, rgba(26,127,26,0.08)  0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(255,184,0,0.06)  0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50%  50%, rgba(5,13,38,0.5)     0%, transparent 80%);
}

/* ─ Grid de 3 colunas ─ */
.guerreiros-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 640px;
}

/* ══════════════════════════
   COL 1 — Tópicos com ícone
   ══════════════════════════ */
.guerreiros-features {
  padding: 88px 56px;
  background: linear-gradient(160deg, #050e1f 0%, #091330 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,184,0,0.08);
  position: relative;
}
/* Faixa dourada na borda esquerda */
.guerreiros-features::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.gf-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 32px 0;
  transition: transform 0.2s;
}
.gf-item:hover { transform: translateX(4px); }

.gf-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,184,0,0.07);
  border: 2px solid rgba(255,184,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.gf-item:hover .gf-icon-wrap {
  background: rgba(255,184,0,0.14);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(255,184,0,0.18);
}

.gf-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.gf-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.72;
  color: var(--white-60);
}

.gf-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255,184,0,0.25), rgba(255,184,0,0.0));
}

/* ══════════════════════════
   COL 2 — Painel de texto
   ══════════════════════════ */
.guerreiros-panel {
  padding: 88px 60px;
  background: var(--navy-800);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
/* Detalhe decorativo no canto superior */
.guerreiros-panel::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle at top right, rgba(255,184,0,0.07), transparent 70%);
}
.guerreiros-panel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at bottom left, rgba(26,127,26,0.08), transparent 70%);
}

.guerreiros-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-left: 28px;
}
.guerreiros-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold);
}

.guerreiros-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.guerreiros-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.78;
  color: var(--white-60);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.guerreiros-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.guerreiros-checks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--white-80);
}
.guerreiros-checks li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,184,0,0.12);
  border: 1px solid rgba(255,184,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.btn-guerreiros {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  background: var(--gold);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  align-self: flex-start;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
.btn-guerreiros:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,184,0,0.25);
}
.btn-guerreiros i { transition: transform 0.2s; }
.btn-guerreiros:hover i { transform: translateX(4px); }

/* ══════════════════════════
   COL 3 — Foto
   ══════════════════════════ */
.guerreiros-photo {
  position: relative;
  overflow: hidden;
}
.guerreiros-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 12s ease;
}
.guerreiros-photo:hover img { transform: scale(1.06); }

.guerreiros-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,21,53,0.88) 0%,
    rgba(10,21,53,0.35) 50%,
    transparent 100%
  ),
  linear-gradient(
    0deg,
    rgba(5,13,38,0.7) 0%,
    transparent 50%
  );
}

.guerreiros-photo-badge {
  position: absolute;
  bottom: 36px;
  left: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(5,13,38,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,184,0,0.25);
  border-radius: 6px;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.guerreiros-photo-badge i { font-size: 16px; }

/* ─ Responsivo ─ */
@media (max-width: 1100px) {
  .guerreiros-grid { grid-template-columns: 1fr 1fr; }
  .guerreiros-photo { display: none; }
}
@media (max-width: 720px) {
  .guerreiros-grid  { grid-template-columns: 1fr; }
  .guerreiros-features,
  .guerreiros-panel { padding: 60px 28px; }
  .guerreiros-features::before { display: none; }
  .guerreiros-panel { border-right: none; border-top: 1px solid rgba(255,255,255,0.04); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: #020917;
  overflow: hidden;
}

/* ─ Decoração de fundo ─ */
.footer-bg-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Grade ouro — idêntica ao padrão das seções */
  background-image:
    linear-gradient(rgba(255,184,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,184,0,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.footer-bg-deco::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Vinheta */
  background: radial-gradient(ellipse 100% 80% at 50% 100%, transparent 20%, #020917 75%);
}
.footer-bg-deco::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Brilhos */
  background:
    radial-gradient(ellipse 55% 50% at 10% 0%,  rgba(255,184,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 90% 30%,  rgba(26,127,26,0.06) 0%, transparent 60%);
}

/* ─ Corpo ─ */
.footer-body {
  position: relative;
  z-index: 1;
  padding: 80px 0 56px;
  border-bottom: 1px solid rgba(255,184,0,0.12);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.2fr;
  gap: 60px;
  align-items: start;
}

/* ─ Coluna — Marca ─ */
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo { width: 72px; height: auto; filter: drop-shadow(0 0 12px rgba(255,184,0,0.25)); }

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-60);
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-forcas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-forca-logo {
  height: 36px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(30%);
  transition: opacity 0.2s, filter 0.2s;
}
.footer-forca-logo:hover { opacity: 1; filter: grayscale(0%); }

/* ─ Título de coluna ─ */
.footer-col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,184,0,0.18);
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

/* ─ Coluna — Navegação ─ */
.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--white-60);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  transition: color 0.2s, gap 0.2s;
}
.footer-nav-link i {
  font-size: 10px;
  color: rgba(255,184,0,0.4);
  transition: color 0.2s, transform 0.2s;
}
.footer-nav-link:hover { color: var(--white); }
.footer-nav-link:hover i { color: var(--gold); transform: translateX(3px); }

.footer-nav-link--cta {
  color: var(--gold);
  font-weight: 600;
}
.footer-nav-link--cta:hover { color: var(--gold-dark); }

/* ─ Coluna — Contato ─ */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,184,0,0.08);
  border: 1px solid rgba(255,184,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact-label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 3px;
}

.footer-contact-val {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white-80);
  transition: color 0.2s;
}
a.footer-contact-val:hover { color: var(--gold); }

/* ─ Coluna — Diferenciais ─ */
.footer-diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-diff-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white-60);
  transition: color 0.2s;
}
.footer-diff-item:hover { color: var(--white-80); }

.footer-diff-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,184,0,0.08);
  border: 1px solid rgba(255,184,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}

/* ─ Coluna — Redes ─ */
.footer-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--white-60);
  font-size: 13px;
  font-family: var(--font-body);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.footer-social-btn i { font-size: 16px; flex-shrink: 0; }
.footer-social-btn:hover {
  background: rgba(255,184,0,0.08);
  border-color: rgba(255,184,0,0.25);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─ Rodapé inferior ─ */
.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 24px 0;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-copy-right {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* ─ Responsivo ─ */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 48px 56px;
  }
  .footer-col--brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .footer-body     { padding: 60px 0 44px; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .footer-col--brand { grid-column: auto; }
  .footer-desc     { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; padding: 0 24px; }
  .footer-social-grid  { grid-template-columns: 1fr 1fr 1fr; }
}
