.elementor-26 .elementor-element.elementor-element-672cc33{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-2104619 *//* =========================================
   VARIABLES & DESIGN SYSTEM
   ========================================= */
:root {
  --bg-primary: #000000;
  --bg-secondary: #000000;
  --bg-card: rgba(255, 255, 255, 0.045);

  --text-primary: #FFFFFF;
  --text-secondary: #B8C0CC;
  --text-muted: #7E8794;

  --accent-red: #FF1E1E;
  --accent-red-dark: #9B0808;
  --accent-blue: #1E8BFF;
  --accent-blue-dark: #06244A;

  --border-soft: rgba(255, 255, 255, 0.10);

  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-red: 0 0 28px rgba(255, 30, 30, 0.42);
  --shadow-blue: 0 0 28px rgba(30, 139, 255, 0.28);
}

/* =========================================
   GLOBAL RESET
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 30, 30, 0.03), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(255, 30, 30, 0.02), transparent 30%),
    radial-gradient(circle at 30% 75%, rgba(255, 30, 30, 0.02), transparent 26%),
    #000000;
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.rounded-image {
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-soft);
}

.book-mockup {
  border-radius: var(--radius-md);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  /* Sombra natural escura ao invés de neon vermelho */
  transform: scale(1.05);
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.book-mockup:hover {
  transform: scale(1.08) translateY(-5px);
}

/* =========================================
   COMPONENTES INTERATIVOS (GLASSMORPHISM & SVG)
   ========================================= */
.relative-box {
  position: relative;
  display: inline-block;
}

.glass-icon-tooltip {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.glass-icon-tooltip i {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.glass-icon-tooltip:hover {
  width: 140px;
  background: rgba(255, 30, 30, 0.15);
  border-color: var(--accent-red);
}

.glass-icon-tooltip:hover i {
  color: var(--accent-red);
}

.glass-icon-tooltip .tooltip-text {
  opacity: 0;
  max-width: 0;
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 0;
  white-space: nowrap;
  transition: all 0.4s ease;
  transform: translateX(-10px);
}

.glass-icon-tooltip:hover .tooltip-text {
  opacity: 1;
  max-width: 100px;
  margin-left: 10px;
  transform: translateX(0);
}

/* Posições dos Tooltips */
.glass-icon-tooltip.top-left {
  top: 15%;
  left: 5%;
}

.glass-icon-tooltip.top-right {
  top: 35%;
  right: -5%;
}

.glass-icon-tooltip.bottom-right {
  bottom: 20%;
  right: 5%;
}

/* Spinning SVG Badge */
.spinning-badge {
  position: absolute;
  top: auto;
  bottom: -20px;
  right: auto;
  left: -20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  animation: spin 15s linear infinite;
}

.badge-blur-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 30, 30, 0.3);
}

.spinning-badge svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  transform: scale(0.9);
  /* Recuo interno para criar o 'padding' entre o texto e a borda do vidro */
}

.spinning-badge text {
  font-size: 13px;
  font-weight: 700;
  fill: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* =========================================
   CONTAINER & LAYOUT
   ========================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 6em 2em;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 30, 30, 0.05), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.section>.container {
  position: relative;
  z-index: 1;
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

.text-center {
  text-align: center;
}

.max-w {
  max-width: 800px;
  margin-inline: auto;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.align-center {
  align-items: center;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1 {
  font-size: clamp(2rem, 3vw, 4.5rem);
  line-height: 1.03;
  font-weight: 400;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text-primary);
}

h4 {
  font-size: clamp(1.05rem, 1.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 12px;
}

h6,
.badge {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.subtitle {
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

p,
.body-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.microcopy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Destaques em Títulos */
strong.red-neon {
  font-weight: 800;
  color: var(--accent-red);
  text-shadow: var(--shadow-red);
}

strong.blue-neon {
  font-weight: 800;
  color: var(--accent-blue);
  text-shadow: var(--shadow-blue);
}

.icon-red {
  color: var(--accent-red);
  text-shadow: var(--shadow-red);
}

.icon-blue {
  color: var(--accent-blue);
  text-shadow: var(--shadow-blue);
}

/* =========================================
   BUTTONS (CTAs)
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(255, 30, 30, 0.6);
  background: linear-gradient(135deg, #ff3333, var(--accent-red));
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-soft);
}

.btn-secondary:hover {
  border-color: var(--accent-red);
  box-shadow: var(--shadow-red);
  background: rgba(255, 30, 30, 0.05);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* =========================================
   COMPONENTS
   ========================================= */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--accent-red-dark);
  background: rgba(155, 8, 8, 0.2);
  color: var(--accent-red);
  border-radius: 999px;
  margin-bottom: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card h3,
.card h4 {
  letter-spacing: -0.02em;
  line-height: 37px;
}

.card p {
  line-height: 1.55;
}

.card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(255, 255, 255, 0.2);
}

.section-header {
  margin-bottom: 48px;
}

.section-header.text-center {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   1. HEADER
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.logo span {
  color: var(--accent-red);
  text-shadow: var(--shadow-red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  gap: 24px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* =========================================
   2. HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 880px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  /* Offset do header */
  background-image: url('https://paulohenriqueph.com.br/wp-content/uploads/2026/05/Banner-Livro-Guerra-Assimetrica-2-scaled.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Overlay gradient (Esquerda escura -> Direita Transparente) + Fade out Bottom para preto absoluto */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.85) -11%, transparent 100%), linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.9) 1%, transparent 19%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-content {
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin: 32px 0 16px 0;
}

/* =========================================
   2.5 FAIXAS CRUZADAS (MARQUEE)
   ========================================= */
.marquee-wrapper {
  position: relative;
  width: 100%;
  padding: 140px 0;
  /* Padding extra para as pontas rotacionadas não cortarem */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Mantém escondido o que passar lateralmente */
  background-color: var(--bg-primary);
  z-index: 5;
}

.marquee-container {
  position: absolute;
  width: 130%;
  /* Estica muito além da tela para evitar cortes nas bordas pela rotação */
  left: -15%;
  /* Centraliza o excesso de fita */
  white-space: nowrap;
  display: flex;
  padding: 24px 0;
  /* Fita um pouco mais larga */
}

/* Fita Vermelha por trás */
.marquee-container.ribbon-1 {
  background: linear-gradient(90deg, #5c0000, var(--accent-red), #5c0000);
  transform: rotate(-4deg);
  z-index: 1;
  /* Atrás da transparente */
  box-shadow: 0 15px 40px rgba(255, 30, 30, 0.4);
  border-top: 1px solid rgba(255, 100, 100, 0.2);
  border-bottom: 1px solid rgba(255, 100, 100, 0.2);
}

.marquee-container.ribbon-1 .marquee-item {
  color: #fff;
}

.marquee-container.ribbon-1 .marquee-item strong {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.marquee-container.ribbon-1 .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Fita Transparente Blur na frente */
.marquee-container.ribbon-2 {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(4deg);
  z-index: 2;
  /* Fica por cima da fita vermelha criando o blur nela */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.marquee-container.ribbon-2 .marquee-item {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.marquee-container.ribbon-2 .marquee-item strong {
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.marquee-container.ribbon-2 .separator {
  color: rgba(255, 255, 255, 0.2);
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: marquee 50s linear infinite;
}

.marquee-content.reverse {
  animation: marquee-reverse 50s linear infinite;
}

.marquee-item {
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 32px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

/* =========================================
   3. BENEFÍCIOS RÁPIDOS
   ========================================= */
.quick-benefits {
  padding-top: 60px;
  position: relative;
  z-index: 5;
}

.card-benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.card-benefit i {
  font-size: 1.8rem;
}

.card-benefit h4 {
  margin: 0;
  font-size: 1rem;
}

/* =========================================
   4. PROBLEMA
   ========================================= */
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.problem-left .section-header {
  margin-bottom: 24px;
}

.problem-left .section-header h2 {
  text-align: left;
  max-width: 100%;
}

.problem-left .section-header .subtitle {
  text-align: left;
  max-width: 100%;
}

.problem-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-cards-stack .problem-card {
  padding: 20px 24px;
}

.problem-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Centralização específica de título */
.content-timeline .section-header h2 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.problem-card .card-icon {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 9px;
}

/* =========================================
   5. O QUE É
   ========================================= */
.concept-quote blockquote {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.2;
  font-weight: 500;
  padding-left: 24px;
  border-left: 4px solid var(--accent-red);
}

/* =========================================
   6. PUBLICO ALVO
   ========================================= */
.audience-card {
  text-align: center;
  padding: 32px 20px;
}

/* Ziguezague nos cards de público */
.audience-grid .audience-card:nth-child(even) {
  transform: translateY(16px);
}

.audience-card i {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.audience-card h4 {
  margin: 0;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  /* O gap agora é preenchido perfeitamente pela path-box de 80px */
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  width: 65%;
  position: relative;
  background: linear-gradient(135deg, rgba(20, 5, 10, 0.8), rgba(0, 0, 0, 0.95));
  border: 1px solid rgba(255, 30, 30, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
  /* Fica acima das linhas */
  /* Largura matemática do degrau: calcula exatamente os 50% de eixo central da tela */
  --line-w: calc(41.176% - 40px);
}

.timeline-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 30, 30, 0.4);
  box-shadow: 0 10px 30px rgba(255, 30, 30, 0.1);
}

/* Ziguezague Alignment (Corrigido para considerar os path-box intercalados) */
.timeline-item:nth-child(4n + 1) {
  margin-right: auto;
  margin-left: 0;
}

.timeline-item:nth-child(4n + 3) {
  margin-left: auto;
  margin-right: 0;
}

/* -----------------------------------------------------
   O CAMINHO DA COBRA (SNAKE PATH) Lógica Bug-Free
------------------------------------------------------*/
/* O Box do Caminho, fica inserido entre os cards no HTML */
.path-box {
  width: calc(30% - 60px);
  /* Recálculo exato da sobreposição p/ cards de 65%, recuando 30px das bordas */
  height: 80px;
  margin: 0 auto;
  position: relative;
  /* Usa filter para que o glow aplique somente no traço sólido vermelho, evitando caixas invisíveis ou bordas fantasmas */
  filter: drop-shadow(0 0 6px rgba(255, 30, 30, 0.6));
  z-index: 1;
}

/* Bolinha Central - Nó de energia perfeito e independente */
.path-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 20px 4px rgba(255, 30, 30, 0.8), inset 0 0 4px #fff;
  z-index: 5;
  /* Sempre sobre a linha */
}

/* Quadrantes de desenho da linha (L's) para não ter duplicação */
.line-part {
  position: absolute;
  width: 50%;
  height: 50%;
}

/* ODD: Da Direita pra Esquerda (Ímpar -> Par) */
.path-odd .start {
  top: 0;
  right: 0;
  border-right: 2px solid var(--accent-red);
  border-bottom: 2px solid var(--accent-red);
  border-bottom-right-radius: 12px;
}

.path-odd .end {
  bottom: 0;
  left: 0;
  border-left: 2px solid var(--accent-red);
  border-top: 2px solid var(--accent-red);
  border-top-left-radius: 12px;
}

/* EVEN: Da Esquerda pra Direita (Par -> Ímpar) */
.path-even .start {
  top: 0;
  left: 0;
  border-left: 2px solid var(--accent-red);
  border-bottom: 2px solid var(--accent-red);
  border-bottom-left-radius: 12px;
}

.path-even .end {
  bottom: 0;
  right: 0;
  border-right: 2px solid var(--accent-red);
  border-top: 2px solid var(--accent-red);
  border-top-right-radius: 12px;
}

/* O Número Gigante Neon do lado */
.step-num {
  font-family: var(--font-main);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #ff4d4d 0%, #3a0000 100%);
  -webkit-background-clip: text;
  color: transparent;
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline-item h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.timeline-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* =========================================
   8. TRANSFORMAÇÃO
   ========================================= */
.benefit-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.benefit-bullets i {
  margin-top: 4px;
}

.huge-icon {
  font-size: 15rem;
  color: var(--bg-card);
  text-shadow: var(--shadow-blue);
  opacity: 0.5;
}

/* =========================================
   9. AUTOR
   ========================================= */
.ph-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  font-size: 5rem;
  font-weight: 800;
  color: var(--text-primary);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* =========================================
   10. OFERTA / CHECKOUT DUPLO
   ========================================= */
.checkout-layout {
  padding: 40px 0;
}

.checkout-card-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.checkout-main {
  background: linear-gradient(180deg, rgba(15, 15, 20, 1) 0%, rgba(5, 5, 8, 1) 100%);
  border: 1px solid rgba(255, 30, 30, 0.4);
  /* Efeito de box offset atrás - igual à imagem */
  box-shadow: -12px 12px 0 rgba(255, 30, 30, 0.4), 0 30px 60px rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  padding: 48px;
  width: 55%;
  z-index: 2;
  position: relative;
  text-align: center;
}

.checkout-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.checkout-logo i {
  font-size: 2rem;
}

.checkout-logo h3 {
  font-size: 2rem;
  margin-bottom: 0;
}

.checkout-main .price-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.checkout-main h2 {
  font-size: 3.5rem;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.checkout-main .subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
}

.checkout-main .btn-primary {
  width: 100%;
  font-size: 1.2rem;
  padding: 20px;
  border-radius: 50px;
  /* Laranja da imagem */
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  box-shadow: var(--shadow-red);
  color: #fff;
  font-weight: 700;
  border: none;
}

.checkout-main .btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(255, 30, 30, 0.6);
}

.checkout-secure {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.checkout-secure i {
  margin-right: 8px;
}

.checkout-sidebar {
  background: rgba(20, 15, 18, 0.95);
  border: 1px solid rgba(255, 30, 30, 0.3);
  border-left: none;
  border-radius: 0 20px 20px 0;
  padding: 40px 40px 40px 60px;
  width: 45%;
  z-index: 1;
  position: relative;
  margin-left: -20px;
}

.checkout-sidebar h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #fff;
}

.checkout-bullets {
  list-style: none;
  padding: 0;
}

.checkout-bullets li {
  margin-bottom: 20px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-bullets i {
  color: #fff;
}

/* =========================================
   11. COMPRA SEGURA
   ========================================= */
.secure-box {
  background: linear-gradient(135deg, rgba(255, 30, 30, 0.05), rgba(0, 0, 0, 0.6));
  border: 1px solid rgba(255, 30, 30, 0.2);
  border-radius: var(--radius-md);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.secure-icon-wrapper {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255, 30, 30, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.secure-icon-wrapper i {
  font-size: 3.5rem;
  color: var(--accent-red);
  text-shadow: var(--shadow-red);
}

.secure-title {
  flex-shrink: 0;
  padding-right: 40px;
  border-right: 1px solid var(--border-soft);
}

.secure-title h2 {
  font-size: 1.8rem;
  margin-bottom: 0;
  line-height: 1.3;
}

.secure-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================================
   12. FAQ
   ========================================= */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-item summary {
  padding: 24px;
  font-size: 1.15rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\f067';
  /* fa-plus */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 24px;
  color: var(--accent-red);
}

.faq-item[open] summary::after {
  content: '\f068';
  /* fa-minus */
}

.faq-content {
  padding: 0 24px 24px 24px;
}

.faq-content p {
  margin: 0;
}

/* =========================================
   13. FINAL CTA
   ========================================= */
.final-cta {
  border-top: 1px solid var(--border-soft);
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  margin-bottom: 40px;
}

/* =========================================
   14. FOOTER
   ========================================= */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-soft);
  padding: 40px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-info {
  display: flex;
  flex-direction: column;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* =========================================
   6. PÚBLICO ALVO (MARQUEE VERTICAL ADVANCED)
   ========================================= */
.advanced-target {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.advanced-audience-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 64px;
  align-items: center;
}

.audience-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audience-text-col h2 {
  margin-bottom: 24px;
  max-width: 500px;
}

.audience-text-col .subtitle {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 16px;
}

.audience-cta {
  align-self: flex-start;
  margin-top: 24px;
  box-shadow: var(--shadow-red);
}

.audience-marquee-container {
  height: 600px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.cards-marquee {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-block: 24px;
  animation: verticalScroll 35s linear infinite;
}

.audience-marquee-container:hover .cards-marquee {
  animation-play-state: paused;
}

.cards-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vertical-audience-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: perspective(1000px) rotateX(2deg);
}

.vertical-audience-card .card-icon {
  font-size: 2rem;
  color: var(--text-muted);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.vertical-audience-card .card-content h4 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.vertical-audience-card .card-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.vertical-audience-card:hover {
  transform: translateY(-6px) perspective(1000px) rotateX(0deg);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 30, 30, 0.55);
  box-shadow: 0 0 30px rgba(255, 30, 30, 0.25);
}

.vertical-audience-card:hover .card-icon {
  color: var(--accent-red);
  text-shadow: var(--shadow-red);
}

@keyframes verticalScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-50% - 12px));
  }
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVIDADE (Mobile First / Queries)
   ========================================= */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .advanced-audience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .audience-marquee-container {
    height: 500px;
  }

  .audience-cta {
    align-self: center;
    width: 100%;
  }

  .hero-empty {
    display: none;
  }

  .hero::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.55) 45%, #000000 100%);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1em;
  }

  .section {
    padding: 3em 1em;
    text-align: center;
  }

  .section.author {
    padding: 3em 1em;
  }

  .section h1,
  .section h2,
  .section h3,
  .section h4,
  .section p,
  .section .subtitle,
  .section .body-text,
  .section .microcopy {
    text-align: center;
  }

  .section .btn,
  .section .hero-ctas,
  .section .audience-cta {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .benefit-bullets {
    text-align: left;
  }

  /* Menu Mobile */
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
    gap: 24px;
    border-bottom: 1px solid var(--border-soft);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  /* Grids Mobile */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .problem-layout {
    grid-template-columns: 1fr;
  }

  .problem-right {
    order: -1;
  }

  /* Oferta Responsiva */
  .checkout-card-wrapper {
    flex-direction: column;
    box-shadow: -8px 8px 0 rgba(255, 30, 30, 0.4);
  }

  .checkout-main,
  .checkout-sidebar {
    width: 100%;
    margin-left: 0;
    border-radius: 16px;
  }

  .checkout-main {
    border-radius: 16px 16px 0 0;
    padding: 32px 24px;
  }

  .checkout-sidebar {
    border-radius: 0 0 16px 16px;
    border-left: 1px solid rgba(255, 30, 30, 0.3);
    border-top: none;
    padding: 32px 24px;
  }

  /* Compra Segura Responsiva */
  .secure-box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }

  .secure-title {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 24px;
  }

  .hero {
    text-align: center;
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
    background-position: left top;
  }

  .hero-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .concept-quote {
    margin-top: 24px;
  }

  .offer-box {
    padding: 32px 24px;
  }

  .offer-bullets {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .huge-icon {
    display: none;
  }

  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 24px;
    margin-bottom: 24px;
  }

  .path-box {
    display: none !important;
    /* Desativa a cobra no mobile */
  }

  .step-num {
    font-size: 3rem;
  }
}

/* =========================================
   CUSTOM WIDTHS PARA H2 (DESKTOP)
   ========================================= */
@media (min-width: 1025px) {
  .problem-section h2 {
    width: auto;
    margin-inline: 0;
  }

  .asymmetric-concept h2 {
    width: 600px;
  }

  .target-audience h2 {
    width: 700px;
    margin-inline: auto;
  }

  .content-timeline h2 {
    width: 600px;
    margin-inline: auto;
  }

  .transformation h2 {
    width: 550px;
  }

  .final-cta h2 {
    width: 800px;
    margin-inline: auto;
  }
}

/* =========================================
   SEÇÃO AUTOR — AJUSTES ESPECÍFICOS
   ========================================= */
.section.author {
  padding: 9em 2em;
}

.author-photo {
  border-radius: 30px 30px 150px 150px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
  max-width: 500px;
  margin: 0 auto;
}

.author-photo:hover {
  transform: none;
}

/* Ordem mobile: texto primeiro, imagem depois */
@media (max-width: 768px) {
  .author-mark  { order: 2; }
  .author-content { order: 1; }
}

/* Posições dos ícones flutuantes do autor */
.glass-icon-tooltip.author-icon-tl {
  top: 8%;
  left: -6%;
}

.glass-icon-tooltip.author-icon-tr {
  top: 8%;
  right: -6%;
}

.glass-icon-tooltip.author-icon-br {
  bottom: 12%;
  right: -6%;
}
}/* End custom CSS */