/* =====================================================================
   CPPEM — Mentoria Intensiva PMPE 2026 | Landing Page de Vendas
   Tema: Polícia Militar — vermelho, azul, preto e branco
   Mobile-first, responsivo, foco em conversão
   ===================================================================== */

:root {
  /* Paleta principal — VERMELHO dominante (PMPE) */
  --vermelho: #e1112c;
  --vermelho-claro: #ff2945;
  --vermelho-escuro: #8e0a1d;
  --vermelho-sangue: #5a0612;

  --azul: #133b8c;
  --azul-claro: #2c63d6;
  --azul-escuro: #061638;
  --azul-noite: #030a1f;

  --preto: #0a0a0f;
  --preto-2: #131319;
  --preto-card: #16161e;
  --preto-card-hover: #1c1c25;
  --preto-borda: #2a2a36;
  --preto-borda-claro: #3a3a48;

  --branco: #ffffff;
  --branco-alt: #f5f5f7;
  --cinza: #a8a8b3;
  --cinza-2: #6e6e7a;
  --cinza-borda: rgba(255, 255, 255, 0.08);
  --dourado: #d4a737;

  /* Verde — usado na seção de garantia (sinal de "ok / seguro") */
  --verde: #18a957;
  --verde-claro: #2bd672;
  --verde-escuro: #0f7a3d;
  --gradiente-verde: linear-gradient(135deg, #2bd672 0%, #0f7a3d 100%);

  --gradiente-vermelho: linear-gradient(135deg, #e1112c 0%, #8e0a1d 100%);
  --gradiente-vermelho-claro: linear-gradient(135deg, #ff2945 0%, #e1112c 100%);
  --gradiente-azul-vermelho: linear-gradient(135deg, #133b8c 0%, #e1112c 100%);

  --sombra-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --sombra-card-hover: 0 8px 40px rgba(0, 0, 0, 0.65);
  --sombra-vermelha: 0 8px 32px rgba(225, 17, 44, 0.35);
  --sombra-vermelha-forte: 0 12px 48px rgba(225, 17, 44, 0.55);

  --raio: 14px;
  --raio-grande: 22px;
  --raio-pequeno: 8px;

  --t-fast: 180ms;
  --t-med: 320ms;
  --t-slow: 600ms;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: var(--preto);
  color: var(--branco);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

/* ---------- BG: foto policiais (opacidade baixa) ---------- */
.bg-policiais {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image: url("../img/policiais-bg-mobile.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: scroll;
  opacity: 0.13;
  filter: grayscale(0.4) contrast(1.1) brightness(0.7);
}
.bg-policiais::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.7) 0%,
    rgba(10, 10, 15, 0.85) 50%,
    rgba(10, 10, 15, 0.95) 100%
  );
}
@media (min-width: 900px) {
  .bg-policiais {
    background-image: url("../img/policiais-bg.jpg");
    background-attachment: fixed;
    opacity: 0.16;
  }
}

/* ---------- SIRENE BG ---------- */
.sirene-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.sirene-vermelho,
.sirene-azul {
  position: absolute;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  will-change: opacity, transform;
}
.sirene-vermelho {
  left: -15vw;
  top: -10vh;
  background: radial-gradient(
    circle,
    rgba(225, 17, 44, 0.55) 0%,
    rgba(225, 17, 44, 0.15) 45%,
    transparent 70%
  );
  animation: sirene-v 2.8s ease-in-out infinite;
}
.sirene-azul {
  right: -15vw;
  bottom: -10vh;
  background: radial-gradient(
    circle,
    rgba(44, 99, 214, 0.4) 0%,
    rgba(44, 99, 214, 0.1) 45%,
    transparent 70%
  );
  animation: sirene-a 2.8s ease-in-out infinite;
}
@keyframes sirene-v {
  0%, 30%, 100% { opacity: 0; transform: scale(0.85); }
  10%, 20% { opacity: 0.45; transform: scale(1.05); }
}
@keyframes sirene-a {
  0%, 50%, 100% { opacity: 0; transform: scale(0.85); }
  60%, 70% { opacity: 0.32; transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .sirene-vermelho, .sirene-azul {
    animation: none;
    opacity: 0.18;
  }
}

/* ---------- Progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradiente-vermelho-claro);
  z-index: 100;
  transition: width 80ms linear;
  box-shadow: 0 0 12px rgba(255, 41, 69, 0.6);
}

/* ---------- TOPBAR (urgência) ---------- */
.topbar {
  position: relative;
  z-index: 50;
  background: var(--gradiente-vermelho);
  color: var(--branco);
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  overflow: hidden;
}
.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  animation: topbar-shine 4.5s ease-in-out infinite;
}
@keyframes topbar-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.topbar-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--branco);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-w 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-w {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.topbar-texto {
  font-size: 11.5px;
  line-height: 1.3;
}
@media (min-width: 600px) {
  .topbar-texto { font-size: 13px; }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cinza-borda);
  transition: box-shadow var(--t-fast) ease;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-cppem {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.nav-logo-sep {
  display: inline-block;
  width: 1px;
  height: 22px;
  background: var(--preto-borda-claro);
}
.nav-logo-pmpe {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.nav-cta {
  background: var(--gradiente-vermelho);
  color: var(--branco);
  padding: 9px 14px;
  border-radius: var(--raio-pequeno);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(225, 17, 44, 0.3);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
  white-space: nowrap;
}
.nav-cta:hover, .nav-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 17, 44, 0.5);
}
.nav-cta-full { display: none; }
.nav-cta-short { display: inline; }
@media (min-width: 600px) {
  .nav-cta-full { display: inline; }
  .nav-cta-short { display: none; }
  .nav-cta { padding: 10px 18px; font-size: 13px; }
  .nav { padding: 12px 22px; }
  .nav-logo-cppem { height: 36px; }
  .nav-logo-pmpe { height: 42px; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  text-align: center;
  padding: 32px 18px 56px;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-stripes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 4px;
  z-index: 1;
}
.hero-stripes span {
  flex: 1;
}
.hero-stripes span:nth-child(1) { background: var(--vermelho); }
.hero-stripes span:nth-child(2) { background: var(--branco); }
.hero-stripes span:nth-child(3) { background: var(--azul); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(225, 17, 44, 0.12);
  border: 1px solid rgba(225, 17, 44, 0.45);
  border-radius: 999px;
  color: var(--vermelho-claro);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vermelho-claro);
  box-shadow: 0 0 0 0 rgba(255, 41, 69, 0.7);
  animation: pulse-r 1.4s ease-in-out infinite;
}
@keyframes pulse-r {
  0% { box-shadow: 0 0 0 0 rgba(255, 41, 69, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255, 41, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 41, 69, 0); }
}

/* Selo PMPE Hero */
.hero-pmpe-seal {
  margin-bottom: 26px;
  position: relative;
}
.hero-pmpe-seal-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  background: radial-gradient(
    circle,
    rgba(225, 17, 44, 0.18) 0%,
    transparent 60%
  );
}
.hero-pmpe-seal-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(225, 17, 44, 0.35);
  animation: rotate-ring 30s linear infinite;
}
@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-pmpe-img {
  width: 92px;
  height: auto;
  filter: drop-shadow(0 6px 24px rgba(225, 17, 44, 0.4));
  position: relative;
  z-index: 2;
}

.hero-titulo {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: var(--branco);
  max-width: 880px;
  margin: 0 auto 18px;
  text-transform: uppercase;
}
.hero-titulo .destaque {
  color: var(--vermelho-claro);
  display: inline-block;
  position: relative;
  text-shadow: 0 4px 28px rgba(225, 17, 44, 0.5);
}
.hero-titulo .destaque::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 4px;
  background: var(--gradiente-vermelho-claro);
  border-radius: 2px;
  animation: linha-cresce 1s var(--easing) 0.6s both;
  transform-origin: left;
}
@keyframes linha-cresce {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.hero-subtitulo {
  font-size: 16px;
  line-height: 1.55;
  color: var(--cinza);
  max-width: 700px;
  margin: 0 auto 32px;
  font-weight: 400;
}
.hero-subtitulo strong {
  color: var(--branco);
  font-weight: 700;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-garantia-mini {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  color: var(--cinza);
  font-weight: 500;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--cinza-borda);
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}
.hero-mini-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.hero-mini-stats strong {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--vermelho-claro);
  letter-spacing: 0.02em;
  line-height: 1;
}
.hero-mini-stats span {
  font-size: 10px;
  color: var(--cinza);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  line-height: 1.2;
}

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--cinza);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-top: 32px;
}
.scroll-line {
  width: 1px;
  height: 22px;
  background: linear-gradient(180deg, var(--vermelho-claro), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (min-width: 600px) {
  .hero { padding: 48px 24px 80px; }
  .hero-titulo { font-size: 54px; }
  .hero-subtitulo { font-size: 17px; }
  .hero-pmpe-seal-ring { width: 130px; height: 130px; }
  .hero-pmpe-img { width: 110px; }
  .hero-mini-stats { gap: 36px; }
  .hero-mini-stats strong { font-size: 36px; }
}
@media (min-width: 900px) {
  .hero { padding: 64px 32px 100px; }
  .hero-titulo { font-size: 72px; max-width: 1000px; }
  .hero-subtitulo { font-size: 18px; }
  .hero-pmpe-seal-ring { width: 150px; height: 150px; }
  .hero-pmpe-img { width: 128px; }
}

/* =====================================================================
   BOTÃO PRIMÁRIO (CTA)
   ===================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradiente-vermelho);
  color: var(--branco);
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: var(--raio);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sombra-vermelha);
  transition:
    transform var(--t-fast) ease,
    box-shadow var(--t-fast) ease,
    filter var(--t-fast) ease;
  text-align: center;
  width: 100%;
  max-width: 420px;
  z-index: 1;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 700ms ease;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  transform: translateX(100%);
}
.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-3px);
  box-shadow: var(--sombra-vermelha-forte);
  filter: brightness(1.08);
  outline: none;
}
.btn-primary:active {
  transform: translateY(-1px);
}
.btn-arrow {
  font-size: 22px;
  transition: transform var(--t-fast) ease;
  font-family: sans-serif;
  font-weight: 700;
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-primary.pulse {
  animation: btn-pulse 1.6s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: var(--sombra-vermelha); }
  50% { box-shadow: 0 0 0 12px rgba(225, 17, 44, 0.18), var(--sombra-vermelha-forte); }
}

@media (min-width: 600px) {
  .btn-primary { font-size: 22px; padding: 20px 36px; max-width: 520px; }
}
@media (min-width: 900px) {
  .btn-primary { font-size: 24px; padding: 22px 42px; max-width: 580px; }
}

/* =====================================================================
   ALERT BANNER
   ===================================================================== */
.alert-banner {
  background: var(--gradiente-azul-vermelho);
  color: var(--branco);
  padding: 14px 18px;
  text-align: center;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  position: relative;
  overflow: hidden;
}
.alert-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  animation: topbar-shine 5s ease-in-out infinite;
}
@media (min-width: 600px) {
  .alert-banner { font-size: 19px; padding: 16px 22px; }
}

/* =====================================================================
   SECTIONS - genéricas
   ===================================================================== */
.section {
  padding: 64px 18px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.section.centro,
.section-titulo.centro,
.section-desc.centro,
.section-label.centro {
  text-align: center;
}
@media (min-width: 600px) {
  .section { padding: 80px 28px; }
}
@media (min-width: 900px) {
  .section { padding: 96px 36px; }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--vermelho-claro);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 6px 12px;
  background: rgba(225, 17, 44, 0.08);
  border: 1px solid rgba(225, 17, 44, 0.3);
  border-radius: 999px;
}
.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--vermelho-claro);
  border-radius: 50%;
}
.section-label.centro {
  align-self: center;
}

.section-titulo {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--branco);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-titulo .vermelho {
  color: var(--vermelho-claro);
  text-shadow: 0 2px 16px rgba(225, 17, 44, 0.45);
}
.vermelho { color: var(--vermelho-claro); }

.section-desc {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--cinza);
  max-width: 760px;
  margin-bottom: 36px;
  font-weight: 400;
}
.section-desc strong {
  color: var(--branco);
  font-weight: 700;
}
@media (min-width: 600px) {
  .section-titulo { font-size: 44px; margin-bottom: 18px; }
  .section-desc { font-size: 17px; margin-bottom: 44px; }
}
@media (min-width: 900px) {
  .section-titulo { font-size: 56px; }
}

/* =====================================================================
   SEÇÃO DOR
   ===================================================================== */
.dor-section .section-label {
  background: rgba(225, 17, 44, 0.1);
}
.dor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 44px;
}
@media (min-width: 600px) {
  .dor-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
.dor-card {
  background: var(--preto-card);
  border: 1px solid var(--preto-borda);
  border-radius: var(--raio);
  padding: 22px 20px;
  position: relative;
  transition: transform var(--t-med) var(--easing), border-color var(--t-fast) ease, background var(--t-fast) ease;
  overflow: hidden;
}
.dor-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradiente-vermelho);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--easing);
}
.dor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 17, 44, 0.45);
  background: var(--preto-card-hover);
}
.dor-card:hover::before { transform: scaleX(1); }
.dor-card-num {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 32px;
  color: var(--vermelho-claro);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.85;
}
.dor-card-titulo {
  font-size: 17px;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 8px;
  line-height: 1.25;
}
.dor-card-texto {
  font-size: 14.5px;
  color: var(--cinza);
  line-height: 1.55;
}

.dor-promessa {
  background: linear-gradient(135deg, rgba(225, 17, 44, 0.08), rgba(19, 59, 140, 0.08));
  border: 1px solid rgba(225, 17, 44, 0.3);
  border-radius: var(--raio-grande);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dor-promessa::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(225, 17, 44, 0.18), transparent 70%);
  pointer-events: none;
}
.dor-promessa-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--vermelho-claro);
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}
.dor-promessa-texto {
  font-size: 16px;
  color: var(--branco);
  line-height: 1.55;
  position: relative;
}
.dor-promessa-texto strong {
  color: var(--vermelho-claro);
  font-weight: 700;
}
@media (min-width: 600px) {
  .dor-promessa { padding: 36px 28px; }
  .dor-promessa-texto { font-size: 18px; }
}

/* =====================================================================
   SEÇÃO PROFESSOR
   ===================================================================== */
.professor-section { padding-top: 24px; }
.professor-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .professor-inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }
}

.professor-foto {
  position: relative;
  border-radius: var(--raio-grande);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--sombra-card);
  aspect-ratio: 4/5;
  border: 1px solid var(--preto-borda);
}
.professor-foto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
  pointer-events: none;
}
.professor-foto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.05);
}
.professor-foto-glow {
  position: absolute;
  top: -20px; right: -20px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(225, 17, 44, 0.4), transparent 70%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}
.professor-foto-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(225, 17, 44, 0.92);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: var(--raio-pequeno);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.professor-foto-badge .nome {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--branco);
  line-height: 1.05;
}
.professor-foto-badge .cargo {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.professor-titulo {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--branco);
}
@media (min-width: 600px) {
  .professor-titulo { font-size: 46px; }
}
@media (min-width: 900px) {
  .professor-titulo { font-size: 56px; }
}
.professor-bio {
  font-size: 15.5px;
  color: var(--cinza);
  line-height: 1.65;
  margin-bottom: 14px;
}
.professor-bio strong {
  color: var(--branco);
  font-weight: 700;
}
.professor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--cinza-borda);
  border-bottom: 1px solid var(--cinza-borda);
}
.prof-stat { text-align: center; }
.prof-stat-num {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 32px;
  color: var(--vermelho-claro);
  letter-spacing: 0.02em;
  line-height: 1;
}
.prof-stat-label {
  font-size: 11px;
  color: var(--cinza);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.3;
}
@media (min-width: 600px) {
  .prof-stat-num { font-size: 40px; }
}

/* =====================================================================
   PRODUTO (apresentação)
   ===================================================================== */
.produto-section { text-align: center; }
.produto-section .section-titulo,
.produto-section .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* =====================================================================
   BENEFÍCIOS GRID
   ===================================================================== */
.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px) {
  .beneficios-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
@media (min-width: 1100px) {
  .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.beneficio-card {
  background: var(--preto-card);
  border: 1px solid var(--preto-borda);
  border-radius: var(--raio);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med) var(--easing), border-color var(--t-fast) ease, background var(--t-fast) ease;
}
.beneficio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradiente-vermelho);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--t-med) var(--easing);
}
.beneficio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 17, 44, 0.4);
  background: var(--preto-card-hover);
}
.beneficio-card:hover::before { transform: scaleY(1); }
.beneficio-card.destaque {
  background: linear-gradient(135deg, rgba(225, 17, 44, 0.08), var(--preto-card));
  border-color: rgba(225, 17, 44, 0.4);
}
.beneficio-card.destaque::before { transform: scaleY(1); }

.beneficio-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--raio-pequeno);
  background: rgba(225, 17, 44, 0.12);
  border: 1px solid rgba(225, 17, 44, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vermelho-claro);
  margin-bottom: 16px;
}
.beneficio-icon svg {
  width: 24px;
  height: 24px;
}
.beneficio-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--vermelho-claro);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding: 3px 8px;
  background: rgba(225, 17, 44, 0.1);
  border-radius: 4px;
}
.beneficio-tag.exclusivo {
  background: var(--gradiente-vermelho);
  color: var(--branco);
}
.beneficio-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 8px;
  line-height: 1.25;
}
.beneficio-card p {
  font-size: 14.5px;
  color: var(--cinza);
  line-height: 1.6;
}
@media (min-width: 600px) {
  .beneficio-card h3 { font-size: 19px; }
}

/* =====================================================================
   BÔNUS SECTION
   ===================================================================== */
.bonus-section {
  position: relative;
  text-align: center;
}
.bonus-aviso {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--gradiente-vermelho);
  color: var(--branco);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin: 0 auto 22px;
  box-shadow: 0 6px 24px rgba(225, 17, 44, 0.4);
}
.bonus-aviso-pulse {
  width: 8px;
  height: 8px;
  background: var(--branco);
  border-radius: 50%;
  animation: pulse-w 1.4s ease-in-out infinite;
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
  margin-bottom: 32px;
}
@media (min-width: 700px) {
  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
.bonus-card {
  background: linear-gradient(180deg, var(--preto-card) 0%, var(--preto) 100%);
  border: 1px solid var(--preto-borda);
  border-radius: var(--raio);
  padding: 28px 22px;
  position: relative;
  text-align: left;
  transition: transform var(--t-med) var(--easing);
  overflow: hidden;
}
.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(212, 167, 55, 0.12), transparent 60%);
  pointer-events: none;
}
.bonus-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(225, 17, 44, 0.5);
}
.bonus-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--dourado);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: rgba(212, 167, 55, 0.1);
  border: 1px solid rgba(212, 167, 55, 0.4);
  border-radius: 4px;
}
.bonus-icon {
  font-size: 38px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.bonus-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 8px;
  line-height: 1.2;
}
.bonus-card p {
  font-size: 14px;
  color: var(--cinza);
  line-height: 1.55;
}
.bonus-aviso-rodape {
  background: rgba(225, 17, 44, 0.08);
  border: 1px solid rgba(225, 17, 44, 0.3);
  border-radius: var(--raio-pequeno);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--cinza);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.bonus-aviso-rodape strong { color: var(--vermelho-claro); font-weight: 700; }

/* =====================================================================
   OFERTA / PREÇO
   ===================================================================== */
.oferta-section {
  scroll-margin-top: 90px;
}
.oferta-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--preto-card), var(--preto-2));
  border: 2px solid rgba(225, 17, 44, 0.45);
  border-radius: var(--raio-grande);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
              0 0 0 1px rgba(225, 17, 44, 0.12);
}
.oferta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(225, 17, 44, 0.18), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(19, 59, 140, 0.14), transparent 50%);
  pointer-events: none;
}
.oferta-card > * { position: relative; z-index: 1; }

.oferta-tarja {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--gradiente-vermelho);
  color: var(--branco);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(225, 17, 44, 0.5);
}
.oferta-tarja-pulse {
  width: 7px;
  height: 7px;
  background: var(--branco);
  border-radius: 50%;
  animation: pulse-w 1.2s ease-in-out infinite;
}
.oferta-titulo {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--branco);
}
@media (min-width: 600px) {
  .oferta-card { padding: 40px 32px; }
  .oferta-titulo { font-size: 42px; }
}

/* Countdown */
.countdown-wrap {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--preto-borda);
  border-radius: var(--raio);
  padding: 18px 14px;
  margin-bottom: 28px;
  text-align: center;
}
.countdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--vermelho-claro);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
.cd-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  max-width: 80px;
}
.cd-num {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  color: var(--branco);
  background: linear-gradient(180deg, var(--preto-2), var(--preto));
  border: 1px solid var(--preto-borda);
  border-radius: var(--raio-pequeno);
  padding: 10px 6px;
  width: 100%;
  letter-spacing: 0.02em;
  box-shadow: inset 0 -2px 0 rgba(225, 17, 44, 0.4);
  font-variant-numeric: tabular-nums;
}
.cd-unit {
  font-size: 9.5px;
  color: var(--cinza);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.cd-sep {
  font-size: 22px;
  color: var(--vermelho-claro);
  font-weight: 700;
  margin-top: -16px;
  align-self: center;
}
@media (min-width: 500px) {
  .countdown { gap: 8px; }
  .cd-num { font-size: 44px; padding: 12px 8px; }
  .cd-unit { font-size: 11px; }
  .cd-sep { font-size: 28px; }
}
@media (min-width: 700px) {
  .cd-num { font-size: 56px; }
  .countdown { gap: 12px; }
}

/* Lista de inclusos */
.oferta-inclusos {
  margin-bottom: 24px;
}
.oferta-inclusos-titulo {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--vermelho-claro);
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}
.oferta-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.oferta-lista li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--branco);
  line-height: 1.5;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.025);
  border-radius: var(--raio-pequeno);
  border: 1px solid var(--cinza-borda);
}
.oferta-lista li strong { font-weight: 700; color: var(--vermelho-claro); }
.oferta-lista .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradiente-vermelho);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.bonus-lista .check {
  background: linear-gradient(135deg, var(--dourado), #b58a25);
  color: var(--preto);
}

.oferta-bonus-bloco {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(212, 167, 55, 0.4);
}
.oferta-bonus-titulo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--dourado);
  text-transform: uppercase;
  margin-bottom: 12px;
  justify-content: center;
}
.oferta-bonus-titulo span { color: var(--dourado); }

/* Preço */
.preco-bloco {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--preto-borda);
  border-radius: var(--raio);
  padding: 20px 16px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.preco-bloco::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(225, 17, 44, 0.14), transparent 70%);
  pointer-events: none;
}
.preco-de {
  font-size: 13px;
  color: var(--cinza);
  margin-bottom: 6px;
  position: relative;
}
.preco-de-valor {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: var(--cinza);
}
.preco-de-valor::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  background: var(--vermelho-claro);
  transform: rotate(-6deg);
}
.preco-por-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--vermelho-claro);
  text-transform: uppercase;
  margin-bottom: 4px;
  position: relative;
}
.preco-parcelado {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--branco);
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-weight: 400;
  position: relative;
  margin-bottom: 6px;
}
.preco-x {
  font-size: 22px;
  color: var(--vermelho-claro);
  margin-right: 4px;
}
.preco-cifrao {
  font-size: 22px;
  color: var(--branco);
  margin-right: 2px;
}
.preco-valor {
  font-size: 64px;
  letter-spacing: 0.005em;
  line-height: 0.95;
  background: linear-gradient(180deg, var(--branco), #d4d4d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 24px rgba(225, 17, 44, 0.3);
}
.preco-avista {
  font-size: 14px;
  color: var(--cinza);
  margin-bottom: 8px;
  position: relative;
}
.preco-avista strong {
  color: var(--branco);
  font-weight: 700;
}
.preco-economia {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #5dd06a;
  background: rgba(93, 208, 106, 0.1);
  border: 1px solid rgba(93, 208, 106, 0.3);
  padding: 5px 12px;
  border-radius: 999px;
  position: relative;
}
.preco-economia strong { color: #5dd06a; }

@media (min-width: 600px) {
  .preco-bloco { padding: 26px 20px; }
  .preco-valor { font-size: 80px; }
  .preco-x, .preco-cifrao { font-size: 28px; }
}

.btn-checkout {
  width: 100%;
  max-width: 100%;
  margin-bottom: 16px;
}

.oferta-seguranca {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: var(--cinza);
  font-weight: 600;
  margin-bottom: 16px;
}

.oferta-escassez {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(225, 17, 44, 0.1);
  border: 1px solid rgba(225, 17, 44, 0.3);
  border-radius: var(--raio-pequeno);
  font-size: 12.5px;
  color: var(--branco);
  line-height: 1.45;
}
.oferta-escassez strong { color: var(--vermelho-claro); font-weight: 700; }
.oferta-escassez-pulse {
  width: 8px;
  height: 8px;
  background: var(--vermelho-claro);
  border-radius: 50%;
  animation: pulse-r 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* =====================================================================
   GARANTIA
   ===================================================================== */
.garantia-section { padding-top: 32px; }
.garantia-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--preto-card), var(--preto-2));
  border: 1px solid var(--preto-borda);
  border-radius: var(--raio-grande);
  padding: 28px 22px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.garantia-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradiente-verde);
}
@media (min-width: 700px) {
  .garantia-card {
    grid-template-columns: 220px 1fr;
    gap: 36px;
    padding: 40px 36px;
  }
}

/* Selo + label "RISCO ZERO" da garantia em verde */
.garantia-section .section-label {
  color: var(--verde-claro);
  background: rgba(43, 214, 114, 0.1);
  border-color: rgba(43, 214, 114, 0.4);
}
.garantia-section .section-label::before {
  background: var(--verde-claro);
}
.garantia-section .vermelho {
  color: var(--verde-claro);
  text-shadow: 0 2px 16px rgba(43, 214, 114, 0.35);
}

.garantia-selo {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--gradiente-verde);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  position: relative;
  box-shadow: 0 12px 36px rgba(24, 169, 87, 0.45);
}
.garantia-selo::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  animation: rotate-ring 25s linear infinite;
}
.garantia-selo-num {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 86px;
  line-height: 0.85;
  letter-spacing: 0.005em;
}
.garantia-selo-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-align: center;
  margin-top: 4px;
}

.garantia-texto h2 {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--branco);
}
@media (min-width: 600px) {
  .garantia-texto h2 { font-size: 38px; }
}
.garantia-texto p {
  font-size: 15px;
  color: var(--cinza);
  line-height: 1.6;
  margin-bottom: 12px;
}
.garantia-texto p strong {
  color: var(--branco);
  font-weight: 700;
}
.garantia-aviso {
  font-size: 13.5px !important;
  padding: 12px 14px;
  background: rgba(24, 169, 87, 0.08);
  border: 1px solid rgba(24, 169, 87, 0.3);
  border-radius: var(--raio-pequeno);
  color: var(--cinza) !important;
  margin-top: 8px !important;
}
.garantia-aviso strong { color: var(--verde-claro) !important; }

/* =====================================================================
   DEPOIMENTOS
   ===================================================================== */
.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) {
  .depoimentos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
.depoimento-card {
  background: var(--preto-card);
  border: 1px solid var(--preto-borda);
  border-radius: var(--raio);
  padding: 22px 20px;
  position: relative;
  transition: transform var(--t-med) var(--easing), border-color var(--t-fast) ease;
}
.depoimento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 17, 44, 0.4);
}
.depo-aspas {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 64px;
  color: var(--vermelho-claro);
  line-height: 0.5;
  margin-bottom: 10px;
  opacity: 0.5;
}
.depo-texto {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--branco);
  margin-bottom: 18px;
  font-style: italic;
}
.depo-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--cinza-borda);
}
.depo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradiente-vermelho);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 20px;
  color: var(--branco);
  font-weight: 400;
}
.depo-nome {
  font-size: 14px;
  font-weight: 700;
  color: var(--branco);
}
.depo-cargo {
  font-size: 11px;
  color: var(--vermelho-claro);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 1px;
}

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.final-cta-section {
  text-align: center;
  position: relative;
}
.final-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(225, 17, 44, 0.1), rgba(19, 59, 140, 0.06));
  border: 1px solid rgba(225, 17, 44, 0.3);
  border-radius: var(--raio-grande);
  padding: 36px 22px;
  position: relative;
  overflow: hidden;
}
.final-cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(225, 17, 44, 0.2), transparent 70%);
  pointer-events: none;
}
.final-cta-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--vermelho-claro);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(225, 17, 44, 0.4);
  background: rgba(225, 17, 44, 0.08);
  border-radius: 999px;
  position: relative;
}
.final-cta-titulo {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--branco);
  position: relative;
}
@media (min-width: 600px) {
  .final-cta-titulo { font-size: 44px; }
  .final-cta-inner { padding: 56px 36px; }
}
@media (min-width: 900px) {
  .final-cta-titulo { font-size: 56px; }
}
.final-cta-texto {
  font-size: 15.5px;
  color: var(--cinza);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.final-cta-mini {
  font-size: 13px;
  color: var(--cinza);
  margin-top: 14px;
  font-weight: 600;
}
.btn-grande {
  font-size: 22px;
  padding: 22px 36px;
}
@media (min-width: 600px) {
  .btn-grande { font-size: 26px; padding: 24px 44px; max-width: 640px; }
}
@media (min-width: 900px) {
  .btn-grande { max-width: 700px; }
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-section {
  max-width: 820px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--preto-card);
  border: 1px solid var(--preto-borda);
  border-radius: var(--raio);
  overflow: hidden;
  transition: border-color var(--t-fast) ease, background var(--t-fast) ease;
}
.faq-item:hover { background: var(--preto-card-hover); }
.faq-item.open {
  border-color: rgba(225, 17, 44, 0.4);
  background: var(--preto-card-hover);
}
.faq-pergunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--branco);
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
}
.faq-icon {
  font-size: 22px;
  color: var(--vermelho-claro);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--t-fast) ease;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(225, 17, 44, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--vermelho);
  color: var(--branco);
}
.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med) var(--easing);
}
.faq-resposta p {
  font-size: 14.5px;
  color: var(--cinza);
  line-height: 1.65;
  padding: 0 18px 18px;
}
@media (min-width: 600px) {
  .faq-pergunta { font-size: 16px; padding: 18px 22px; }
  .faq-resposta p { font-size: 15px; padding: 0 22px 20px; }
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  padding: 40px 18px 32px;
  text-align: center;
  border-top: 1px solid var(--cinza-borda);
  background: rgba(0, 0, 0, 0.4);
}
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-logo-cppem {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.footer-logo-sep {
  width: 1px;
  height: 26px;
  background: var(--preto-borda-claro);
}
.footer-logo-pmpe {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.footer-tagline {
  font-style: italic;
  color: var(--branco);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 16px;
}
.footer-links {
  margin-bottom: 16px;
}
.footer-links a {
  color: var(--vermelho-claro);
  font-size: 14px;
  font-weight: 600;
  transition: color var(--t-fast) ease;
}
.footer-links a:hover { color: var(--branco); }
.footer-bottom {
  font-size: 12px;
  color: var(--cinza-2);
  line-height: 1.5;
}

/* =====================================================================
   WHATSAPP FLOAT
   ===================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  color: var(--branco);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--t-fast) ease, box-shadow var(--t-fast) ease;
  animation: wa-bob 3s ease-in-out infinite;
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}
@keyframes wa-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (min-width: 700px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 24px;
    right: 24px;
  }
  .whatsapp-float svg { width: 32px; height: 32px; }
}

/* =====================================================================
   FADE-UP (animação no scroll)
   ===================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--easing), transform 700ms var(--easing);
  /* Failsafe: se por algum motivo o JS não disparar, depois de 3.5s
     o conteúdo aparece de qualquer jeito. Usuário nunca vê tela vazia. */
  animation: fade-up-fallback 1ms 3500ms forwards;
}
@keyframes fade-up-fallback {
  to { opacity: 1; transform: translateY(0); }
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* =====================================================================
   UTILS
   ===================================================================== */
.section + .section { padding-top: 0; }

/* Selection */
::selection {
  background: var(--vermelho);
  color: var(--branco);
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--preto); }
::-webkit-scrollbar-thumb {
  background: var(--vermelho-escuro);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--vermelho); }
