/* ==========================================================================
   CLUBE DE TIRO BH - TURBO MOBILE-FIRST LANDING PAGE
   Design System: Tactical Black, Crimson Red (#ff1e27), White & WhatsApp Green
   ========================================================================== */

:root {
  /* Cores Principais */
  --bg-primary: #08090c;
  --bg-surface: #0e1117;
  --bg-card: #131722;
  --bg-card-hover: #191f2d;
  --bg-glass: rgba(14, 17, 23, 0.88);

  /* Identidade Oficial: Vermelho Tático / Retículo */
  --accent-red: #ff1e27;
  --accent-red-light: #ff4d53;
  --accent-red-dark: #cc0f17;
  --accent-red-glow: rgba(255, 30, 39, 0.3);

  /* Compatibilidade com classes anteriores */
  --accent-gold: var(--accent-red);
  --accent-gold-light: var(--accent-red-light);
  --accent-gold-dark: var(--accent-red-dark);
  --accent-gold-glow: var(--accent-red-glow);

  /* Conversão / WhatsApp */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20ba59;
  --color-whatsapp-glow: rgba(37, 211, 102, 0.35);

  /* Textos & Bordas */
  --color-text-main: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-dark: #08090c;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-red: rgba(255, 30, 39, 0.4);
  --border-gold: var(--border-red);

  /* Tipografia */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Montserrat', 'Inter', sans-serif;

  /* Espaçamentos & Raios */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
  --shadow-red: 0 0 25px rgba(255, 30, 39, 0.35);
  --shadow-gold: var(--shadow-red);
  --shadow-whatsapp: 0 8px 24px -4px rgba(37, 211, 102, 0.4);

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 74px; /* Espaço para barra sticky mobile */
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.text-center { text-align: center; }
.text-red { color: var(--accent-red); }
.text-gold { color: var(--accent-red); }

/* BARRA DE AVISO SUPERIOR */
.top-announcement-bar {
  background: linear-gradient(90deg, #120507 0%, #200709 50%, #120507 100%);
  border-bottom: 1px solid rgba(255, 30, 39, 0.25);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 30, 39, 0.7);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 30, 39, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 30, 39, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 30, 39, 0); }
}

.announcement-link {
  color: var(--accent-red-light);
  font-weight: 600;
  text-decoration: underline;
  margin-left: 0.25rem;
}

/* HEADER / NAVEGAÇÃO */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 12, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.65rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--accent-red);
  box-shadow: 0 0 12px rgba(255, 30, 39, 0.35);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo-subtitle {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.nav-desktop {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #cbd5e1;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-red-light);
}

.header-action {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-whatsapp-header {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-whatsapp);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-whatsapp);
  transition: var(--transition-fast);
}

.btn-whatsapp-header:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* DRAWER MOBILE */
.mobile-drawer {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-bottom: 2px solid var(--accent-red);
  padding: 1.5rem;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 99;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.drawer-link {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* BOTOES GERAIS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  min-height: 52px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-block { width: 100%; }
.btn-sm { min-height: 40px; padding: 0.5rem 1rem; font-size: 0.88rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--color-whatsapp) 0%, #16a34a 100%);
  color: #fff;
  box-shadow: var(--shadow-whatsapp);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2ae06f 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(37, 211, 102, 0.6);
}

.btn-red, .btn-gold {
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-red-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn-red:hover, .btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-red-light) 0%, var(--accent-red) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 30, 39, 0.5);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--color-text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-red);
}

.btn-outline-red, .btn-outline-gold {
  background: transparent;
  color: var(--accent-red-light);
  border: 1px solid var(--accent-red);
}

.btn-outline-red:hover, .btn-outline-gold:hover {
  background: rgba(255, 30, 39, 0.15);
  transform: translateY(-1px);
}

.btn-pulse-effect {
  position: relative;
}
.btn-pulse-effect::after {
  content: '';
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border-radius: inherit;
  border: 2px solid var(--color-whatsapp);
  opacity: 0.8;
  animation: btn-glow 2s infinite;
  pointer-events: none;
}

@keyframes btn-glow {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.08); opacity: 0; }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 2.5rem 0 3.5rem;
  background: radial-gradient(circle at 50% 15%, rgba(255, 30, 39, 0.12) 0%, rgba(8, 9, 12, 0) 70%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 30, 39, 0.1);
  border: 1px solid var(--border-red);
  color: var(--accent-red-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
}

.highlight-red, .highlight-gold {
  background: linear-gradient(135deg, #ffffff 0%, #ff4d53 50%, #ff1e27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-checkmarks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-red);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* HERO VISUAL CARD */
.hero-visual-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.tactical-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 2;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(255, 30, 39, 0.5);
}

.visual-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.visual-card-body {
  padding: 1.5rem;
}

.card-rating {
  font-size: 0.85rem;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}
.card-rating span { color: var(--color-text-muted); }

.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.price-from { font-size: 0.85rem; color: var(--color-text-muted); }
.price-val { font-size: 1.6rem; font-weight: 800; color: var(--accent-red); }
.price-val small { font-size: 0.9rem; font-weight: 600; }

/* SEÇÃO DE AUTORIDADE */
.authority-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.authority-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.authority-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.auth-icon {
  font-size: 1.75rem;
}

.auth-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.auth-info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* SEÇÃO DE PACOTES */
.section-packages {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-red);
  box-shadow: var(--shadow-card);
}

.featured-border {
  border-color: var(--accent-red);
  background: linear-gradient(180deg, rgba(255, 30, 39, 0.08) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 30px rgba(255, 30, 39, 0.2);
}

.package-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-red-light);
  background: rgba(255, 30, 39, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.badge-featured {
  background: var(--accent-red);
  color: #fff;
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.package-target {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  min-height: 42px;
  margin-bottom: 1.25rem;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.package-price .currency { font-size: 1.1rem; font-weight: 600; color: var(--accent-red); }
.package-price .amount { font-size: 2.2rem; font-weight: 900; color: var(--accent-red); line-height: 1; }
.package-price .period { font-size: 0.85rem; color: var(--color-text-muted); }

.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.package-features .check {
  color: var(--color-whatsapp);
  font-weight: 800;
}

/* SIMULADOR INTERATIVO */
.section-simulator {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-surface) 50%, var(--bg-primary) 100%);
}

.simulator-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.8);
}

.simulator-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.simulator-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.simulator-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.sim-step {
  margin-bottom: 2rem;
}

.sim-step-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #e2e8f0;
}

.sim-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.sim-opt-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  color: var(--color-text-main);
  transition: var(--transition-fast);
}

.sim-opt-btn:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 30, 39, 0.4);
}

.sim-opt-btn.active {
  background: rgba(255, 30, 39, 0.12);
  border-color: var(--accent-red);
  box-shadow: 0 0 15px rgba(255, 30, 39, 0.25);
}

.opt-icon { font-size: 1.5rem; margin-bottom: 0.35rem; }
.opt-title { font-weight: 700; font-size: 1rem; }
.opt-sub { font-size: 0.8rem; color: var(--color-text-muted); }

.sim-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.sim-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.95rem;
}

.sim-check-item input {
  display: none;
}

.check-box-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-text-muted);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.sim-check-item input:checked + .check-box-custom {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
}

.sim-check-item input:checked + .check-box-custom::after {
  content: '✓';
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.sim-result-box {
  background: linear-gradient(135deg, #1f1115 0%, #131722 100%);
  border: 1px solid var(--accent-red);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 2rem;
}

.result-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-red-light);
  letter-spacing: 1.5px;
  margin-bottom: 0.35rem;
}

.result-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.result-summary {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.result-action-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.result-estimate {
  display: flex;
  flex-direction: column;
}

.est-label { font-size: 0.8rem; color: var(--color-text-muted); }
.est-price { font-size: 1.8rem; font-weight: 900; color: var(--accent-red); }

.btn-whatsapp-large {
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 1.5rem;
  min-height: 56px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-whatsapp);
  transition: var(--transition-normal);
}

.btn-whatsapp-large:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-2px);
}

/* PASSO A PASSO */
.section-steps {
  padding: 4rem 0;
  background: var(--bg-surface);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 30, 39, 0.35);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* CURSOS TÁTICOS */
.section-courses {
  padding: 4rem 0;
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.course-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.course-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 30, 39, 0.15);
  color: var(--accent-red-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.course-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.course-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.course-topics {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.course-topics li {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.25rem;
}

.course-topics li::before {
  content: '•';
  color: var(--accent-red);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* FILIAÇÃO */
.section-membership {
  padding: 4rem 0;
}

.membership-box {
  background: radial-gradient(circle at 80% 50%, rgba(255, 30, 39, 0.15) 0%, var(--bg-card) 70%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.membership-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.membership-desc {
  font-size: 0.98rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.membership-perks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
}

.perk-icon { font-size: 1.25rem; }

.membership-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.membership-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* DEPOIMENTOS */
.section-testimonials {
  padding: 4rem 0;
  background: var(--bg-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.test-stars { margin-bottom: 0.75rem; }
.test-text {
  font-size: 0.95rem;
  color: #cbd5e1;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-red);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* FAQ ACCORDION */
.section-faq {
  padding: 4rem 0;
}

.faq-accordion-wrapper {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-red);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-text-main);
  font-weight: 700;
  font-size: 1.02rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent-red);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 1.25rem;
}

.faq-footer-cta p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

/* LOCALIZAÇÃO */
.section-location {
  padding: 4rem 0;
  background: var(--bg-surface);
}

.location-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
}

.location-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.location-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.loc-icon { font-size: 1.3rem; }

.loc-item strong { display: block; color: var(--color-text-main); }
.loc-item span { color: var(--color-text-muted); }

.location-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-map-mockup {
  position: relative;
}

.map-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(8, 9, 12, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-red);
  color: var(--accent-red-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 2;
}

/* FOOTER */
.main-footer {
  background: #050608;
  border-top: 1px solid var(--border-color);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent-red);
}

.footer-about {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin: 1rem 0;
  line-height: 1.6;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-red-light);
  font-weight: 600;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-text-muted);
}
.footer-links a:hover {
  color: var(--accent-red-light);
}

.footer-contact-item {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.safe-badge {
  margin-top: 1rem;
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  color: #64748b;
  font-size: 0.8rem;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

/* BARRA STICKY MOBILE */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 9, 12, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-red);
  padding: 0.65rem 1rem;
  z-index: 999;
  display: block;
}

.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-bar-info {
  display: flex;
  flex-direction: column;
}

.sticky-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-red-light);
}

.sticky-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.btn-whatsapp-sticky {
  background: var(--color-whatsapp);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  box-shadow: var(--shadow-whatsapp);
}

@media (min-width: 1024px) {
  .sticky-mobile-bar {
    display: none;
  }
}

/* MODAL DE AGENDAMENTO */
.lead-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lead-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--accent-red);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--color-text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-red-light);
  letter-spacing: 1.5px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0.25rem 0 0.5rem;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.modal-form .form-group {
  margin-bottom: 1.25rem;
}

.modal-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.35rem;
}

.modal-form input,
.modal-form select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--color-text-main);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  min-height: 48px;
}

.modal-form input:focus,
.modal-form select:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px var(--accent-red-glow);
}

.modal-secure-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* ==========================================================================
   BREAKPOINTS RESPONSIVOS (TABLET & DESKTOP)
   ========================================================================== */

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .sim-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sim-options-grid.options-3col {
    grid-template-columns: repeat(3, 1fr);
  }
  .sim-checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .membership-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .location-actions {
    flex-direction: row;
  }
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .authority-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .location-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .result-action-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }
  .btn-whatsapp-header {
    display: inline-flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
  .hero-title {
    font-size: 3rem;
  }
  .authority-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .simulator-wrapper {
    padding: 3rem;
  }
}
