/* ==========================================================================
   SIMULADO TÉCNICO DE ENFERMAGEM — PREFEITURA DE QUEIMADOS/RJ 2026
   Design System: "Modo Prova" (Dark Clínico & Tecnológico de Alta Conversão)
   Banca IAN | Edital 01/2026
   ========================================================================== */

:root {
  /* Paleta Cromática "Modo Prova" */
  --bg-main: #031317;
  --bg-surface: #061e24;
  --bg-surface-elevated: #092c34;
  --bg-surface-glass: rgba(7, 33, 39, 0.75);
  
  --border-subtle: rgba(20, 184, 166, 0.15);
  --border-highlight: rgba(20, 184, 166, 0.4);
  --border-glow: rgba(16, 185, 129, 0.5);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.35);
  --accent-emerald-dark: #059669;

  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.25);

  --accent-amber: #f59e0b;
  --accent-amber-glow: rgba(245, 158, 11, 0.3);

  --accent-danger: #ef4444;
  --accent-danger-glow: rgba(239, 68, 68, 0.3);

  /* Tipografia */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Layout & Espaçamento */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Sombras e Transições */
  --shadow-card: 0 16px 36px -8px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--border-subtle);
  --shadow-glow: 0 0 35px var(--accent-emerald-glow);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(6, 182, 212, 0.12) 0%, transparent 65%),
    radial-gradient(circle at 90% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    linear-gradient(to bottom, #031317, #020c0f);
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   HEADER FIXO (Sticky Header)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 19, 23, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-emerald), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-family: var(--font-heading);
  font-size: 20px;
  box-shadow: 0 0 16px var(--accent-emerald-glow);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--text-main);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 11px;
  color: var(--accent-cyan);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-emerald);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-price-tag {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-header-cta {
  background: linear-gradient(135deg, var(--accent-emerald), var(--accent-emerald-dark));
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px var(--accent-emerald-glow);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-emerald-glow);
}

.header-btn-short {
  display: none;
}

/* ==========================================================================
   HERO SECTION (Técnica Profissional: Imagem Imersiva com Overlay & Degradê)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 70px;
  background-color: #031317;
  background-image: url('assets/hero-nurse-wide.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, 
      #031317 0%, 
      #031317 38%, 
      rgba(3, 19, 23, 0.92) 52%, 
      rgba(3, 19, 23, 0.40) 72%, 
      rgba(3, 19, 23, 0.10) 100%
    ),
    linear-gradient(to top, #031317 0%, transparent 18%);
  pointer-events: none;
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 46px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  color: var(--accent-emerald);
  text-shadow: 0 0 25px rgba(16, 185, 129, 0.35);
}

.hero-title .badge-sub {
  display: block;
  font-size: 28px;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 6px;
}

.hero-description {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 34px;
}

.hero-badge-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-subtle);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.badge-icon-box {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(6, 182, 212, 0.12);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-badge-card.highlight-amber {
  border-color: rgba(245, 158, 11, 0.35);
}

.hero-badge-card.highlight-amber .badge-icon-box {
  background: rgba(245, 158, 11, 0.14);
  color: var(--accent-amber);
}

.hero-badge-card.highlight-emerald {
  border-color: rgba(16, 185, 129, 0.35);
}

.hero-badge-card.highlight-emerald .badge-icon-box {
  background: rgba(16, 185, 129, 0.14);
  color: var(--accent-emerald);
}

.badge-texts strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.badge-texts span {
  font-size: 11px;
  color: var(--text-muted);
}

/* Oferta no Hero */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-price-box {
  display: flex;
  flex-direction: column;
}

.price-small-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  font-weight: 600;
}

.price-main-tag {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 34px;
  color: #fff;
  line-height: 1;
}

.price-main-tag span {
  font-size: 18px;
  color: var(--accent-emerald);
}

.btn-hero-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  padding: 18px 34px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px -4px rgba(16, 185, 129, 0.45);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px -4px rgba(16, 185, 129, 0.6);
  background: linear-gradient(135deg, #34d399 0%, #059669 100%);
}

.hero-security-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
}

.hero-security-note svg {
  color: var(--accent-emerald);
}

.hud-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.hud-chip.top-right .hud-icon-circle {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-amber);
}

.hud-chip.bottom-left .hud-icon-circle {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
}

.hud-content span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-dim);
}

.hud-content strong {
  display: block;
  font-size: 13px;
  color: #fff;
  font-family: var(--font-heading);
}

/* ==========================================================================
   RÉGUA DE DADOS DO CONCURSO (Barra de Destaques)
   ========================================================================== */
.stats-strip-section {
  padding-top: 10px;
  padding-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-highlight);
  background: var(--bg-surface-elevated);
}

.stat-card .stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-card .stat-desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   SEÇÃO ANATOMIA DA PROVA (Os 100 Pontos & Estudo Estratégico)
   ========================================================================== */
.section-pad {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 34px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Banner Integrado de Estudo Estratégico (Humano 2 + Gradient Mask) */
.exam-study-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background-color: #031317;
  background-image: url('assets/nurse-study-focus.webp');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 440px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.7), 0 0 35px rgba(6, 182, 212, 0.12);
}

.exam-study-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, 
      #031317 0%, 
      #031317 38%, 
      rgba(3, 19, 23, 0.94) 55%, 
      rgba(3, 19, 23, 0.45) 75%, 
      rgba(3, 19, 23, 0.10) 100%
    ),
    linear-gradient(to top, #031317 0%, transparent 20%),
    linear-gradient(to bottom, #031317 0%, transparent 15%);
  pointer-events: none;
}

.exam-study-content {
  position: relative;
  z-index: 5;
  max-width: 650px;
  padding: 44px 40px;
}

.exam-study-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 34px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.exam-study-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.exam-study-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exam-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(6, 30, 36, 0.75);
  border: 1px solid rgba(20, 184, 166, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-main);
  width: fit-content;
}

.exam-pill-item strong {
  color: var(--accent-emerald);
}

.exam-pill-item.is-alert {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.08);
}

.exam-pill-item.is-alert strong {
  color: var(--accent-amber);
}

.pill-icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-cyan);
}

.exam-pill-item.is-alert .pill-icon-svg {
  color: var(--accent-amber);
}

.exam-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.subject-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.subject-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -10px rgba(0, 0, 0, 0.5);
  border-color: var(--border-highlight);
}

.subject-card.is-featured {
  border-color: var(--accent-emerald);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, var(--bg-surface) 100%);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.15);
}

.featured-ribbon {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--accent-emerald);
  color: #031317;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.subject-header {
  margin-bottom: 16px;
}

.subject-header h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.subject-meta {
  font-size: 12px;
  color: var(--accent-cyan);
  font-weight: 600;
}

.subject-score-pill {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.score-huge {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 38px;
  color: #fff;
  line-height: 1;
}

.is-featured .score-huge {
  color: var(--accent-emerald);
}

.score-unit {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

.subject-formula {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.subject-topics-list {
  list-style: none;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: auto;
}

.subject-topics-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
}

.subject-topics-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}

/* Alerta de Regra Eliminatória */
.elimination-alert-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(6, 30, 36, 0.8) 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.alert-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.18);
  color: var(--accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.alert-text h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  margin-bottom: 6px;
}

.alert-text p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.5;
}

.alert-text strong {
  color: var(--accent-amber);
}

/* ==========================================================================
   SIMULADOR DEMONSTRATIVO (Widget Interativo na Página)
   ========================================================================== */
.simulator-section {
  background: linear-gradient(180deg, rgba(4, 27, 31, 0.6) 0%, rgba(3, 19, 23, 0.9) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.simulator-box {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.sim-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface-elevated);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.sim-badge-mode {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
}

.sim-timer-display {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.sim-body {
  padding: 30px;
}

.sim-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sim-category-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-emerald);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sim-question-number {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.sim-question-text {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 24px;
}

.sim-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.sim-option-btn {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.45;
  transition: var(--transition);
}

.sim-option-btn:hover:not(:disabled) {
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.08);
  transform: translateX(4px);
}

.sim-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.sim-option-btn.is-correct {
  border-color: var(--accent-emerald) !important;
  background: rgba(16, 185, 129, 0.15) !important;
}

.sim-option-btn.is-correct .sim-letter {
  background: var(--accent-emerald);
  color: #031317;
}

.sim-option-btn.is-incorrect {
  border-color: var(--accent-danger) !important;
  background: rgba(239, 68, 68, 0.15) !important;
}

.sim-option-btn.is-incorrect .sim-letter {
  background: var(--accent-danger);
  color: #fff;
}

/* Feedback do Simulado */
.sim-feedback-card {
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: 20px;
  border: 1px solid var(--border-subtle);
  font-size: 14px;
  line-height: 1.6;
}

.sim-feedback-card.is-correct {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
}

.sim-feedback-card.is-incorrect {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
}

.sim-feedback-header {
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sim-feedback-card.is-correct .sim-feedback-header {
  color: var(--accent-emerald);
}

.sim-feedback-card.is-incorrect .sim-feedback-header {
  color: #f87171;
}

.sim-feedback-footer {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
}

.sim-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.btn-sim-next {
  background: var(--accent-cyan);
  color: #031317;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-sim-next:hover {
  background: #38bdf8;
  transform: translateY(-2px);
}

/* ==========================================================================
   CONTEÚDO PROGRAMÁTICO (Os 13 Blocos do Edital)
   ========================================================================== */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.program-card {
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition);
}

.program-card:hover {
  border-color: var(--border-highlight);
  background: var(--bg-surface-elevated);
  transform: translateY(-2px);
}

.program-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-emerald);
  font-weight: 700;
  margin-bottom: 6px;
}

.program-card h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
}

.program-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   SEÇÃO DE OFERTA DIRETA (Card de Conversão)
   ========================================================================== */
.offer-section {
  position: relative;
}

.offer-card {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(180deg, #072a32 0%, #041b21 100%);
  border: 2px solid var(--accent-emerald);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.25);
  text-align: center;
  position: relative;
}

.offer-tag-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-emerald), var(--accent-cyan));
  color: #031317;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  white-space: nowrap;
}

.offer-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}

.offer-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.offer-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
  margin-bottom: 34px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #e2e8f0;
}

.feature-check-svg {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.16);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--accent-emerald);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-price-area {
  margin-bottom: 28px;
}

.offer-price-area .price-legend {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.offer-big-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 52px;
  color: #fff;
  line-height: 1;
}

.offer-big-price span {
  font-size: 24px;
  color: var(--accent-emerald);
}

.offer-price-note {
  font-size: 12px;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-top: 6px;
}

.btn-offer-cta {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  padding: 20px 48px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.45);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 440px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.btn-offer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.65);
}

.offer-guarantee-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================================
   CONTADOR REGRESSIVO DINÂMICO
   ========================================================================== */
.countdown-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 50px 0;
}

.countdown-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.countdown-info h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}

.countdown-info p {
  font-size: 14px;
  color: var(--text-muted);
}

.countdown-digits {
  display: flex;
  align-items: center;
  gap: 14px;
}

.digit-card {
  background: var(--bg-main);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.digit-value {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 32px;
  color: var(--accent-amber);
  line-height: 1;
  display: block;
}

.digit-label {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
  display: block;
}

/* ==========================================================================
   FAQ (Accordion Acessível)
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border-highlight);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.faq-icon svg {
  display: block;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--accent-amber);
}

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

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px 22px;
}

/* ==========================================================================
   BANNER DE ATENDIMENTO HUMANIZADO (Prática Clínica no SUS)
   ========================================================================== */
.clinical-banner-section {
  padding: 80px 0;
  position: relative;
}

.clinical-banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background-color: #04171c;
  background-image: url('assets/nurse-patient-care.webp');
  background-size: cover;
  background-position: center right;
  min-height: 480px;
  display: flex;
  align-items: center;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(6, 182, 212, 0.15);
}

.clinical-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(3, 19, 23, 0.96) 0%, 
    rgba(3, 19, 23, 0.90) 45%, 
    rgba(3, 19, 23, 0.55) 75%, 
    rgba(3, 19, 23, 0.25) 100%
  );
  pointer-events: none;
}

.clinical-banner-content {
  position: relative;
  z-index: 5;
  max-width: 620px;
  padding: 50px 48px;
}

.clinical-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  background: rgba(6, 182, 212, 0.12);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(6, 182, 212, 0.25);
  margin-bottom: 16px;
}

.clinical-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 16px;
}

.clinical-title .text-emerald {
  color: var(--accent-emerald);
}

.clinical-desc {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 24px;
}

.clinical-pills-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.clinical-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(6, 30, 36, 0.65);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(20, 184, 166, 0.2);
  backdrop-filter: blur(8px);
}

.clinical-pill-item .icon-svg-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* ==========================================================================
   FECHAMENTO / CTA FINAL COM FUNDO IMERSIVO (Equipe de Saúde de Queimados)
   ========================================================================== */
.final-cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background-color: #020a0d;
  background-image: url('assets/nurse-team-closing.webp');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, 
      #031317 0%, 
      rgba(3, 19, 23, 0.65) 20%, 
      rgba(2, 10, 13, 0.40) 50%, 
      rgba(2, 10, 13, 0.75) 80%, 
      #010709 100%
    ),
    radial-gradient(ellipse at 50% 50%, rgba(3, 19, 23, 0.45) 0%, rgba(2, 10, 13, 0.25) 60%, rgba(1, 7, 9, 0.65) 100%);
  pointer-events: none;
}

.final-cta-box {
  position: relative;
  z-index: 5;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(3, 19, 23, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
}

.final-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--accent-emerald);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.final-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 40px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.final-desc {
  font-size: 17px;
  color: #cbd5e1;
  margin-bottom: 34px;
  line-height: 1.6;
}

/* Botão de Fechamento com Preço Protegido contra quebra */
.btn-offer-cta.btn-final-cta {
  max-width: 520px;
  padding: 20px 36px;
  font-size: 17px;
  letter-spacing: 0.5px;
}

.btn-final-cta .btn-cta-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-final-cta .btn-cta-price {
  white-space: nowrap;
  font-weight: 800;
  display: inline-block;
}

.btn-final-cta .btn-cta-arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.btn-final-cta:hover .btn-cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 560px) {
  .btn-offer-cta.btn-final-cta {
    padding: 16px 20px;
    font-size: 15px;
    width: 100%;
  }

  .btn-final-cta .btn-cta-group {
    flex-direction: column;
    gap: 4px;
    white-space: normal;
  }

  .btn-final-cta .btn-cta-price {
    font-size: 15px;
    color: #e6fffa;
  }
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  background: #010709;
}

.footer-disclaimer {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ==========================================================================
   RESPONSIVIDADE (Recomposição Mobile Estrita)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 60px;
    background-position: 75% center;
  }

  .hero-overlay-gradient {
    background: linear-gradient(180deg, 
      rgba(3, 19, 23, 0.82) 0%, 
      rgba(3, 19, 23, 0.94) 65%, 
      #031317 100%
    );
  }

  .hero-content-wrapper {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 38px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exam-breakdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-nav {
    display: none;
  }

  .clinical-banner-card {
    min-height: auto;
    background-position: center;
  }

  .clinical-banner-content {
    padding: 40px 24px;
    max-width: 100%;
  }

  .clinical-banner-overlay {
    background: linear-gradient(180deg, 
      rgba(3, 19, 23, 0.88) 0%, 
      rgba(3, 19, 23, 0.96) 65%, 
      #031317 100%
    );
  }

  .exam-study-banner {
    min-height: auto;
    background-position: 80% center;
  }

  .exam-study-overlay {
    background: linear-gradient(180deg, 
      rgba(3, 19, 23, 0.88) 0%, 
      rgba(3, 19, 23, 0.95) 65%, 
      #031317 100%
    );
  }

  .exam-study-content {
    padding: 36px 24px;
    max-width: 100%;
  }

  .exam-study-title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .site-header .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-inner {
    height: 56px;
    gap: 8px;
  }

  .header-price-tag {
    display: none;
  }

  .header-brand {
    gap: 8px;
    min-width: 0;
    flex-shrink: 1;
  }

  .brand-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
    flex-shrink: 0;
  }

  .brand-info {
    min-width: 0;
    max-width: 155px;
  }

  .brand-title {
    font-size: 11.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-subtitle {
    font-size: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-btn-full {
    display: none;
  }

  .header-btn-short {
    display: inline;
  }

  .btn-header-cta {
    padding: 6px 11px;
    font-size: 11px;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: var(--radius-full);
  }

  .btn-header-cta svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
  }

  .hero-section {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-title .badge-sub {
    font-size: 19px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-badges-grid {
    grid-template-columns: 1fr;
  }

  .hero-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-price-box {
    text-align: center;
    margin-bottom: 4px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .exam-breakdown-grid {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .exam-study-title {
    font-size: 22px;
  }

  .exam-study-content {
    padding: 28px 16px;
  }

  .exam-pill-item {
    font-size: 12px;
    width: 100%;
  }

  .clinical-title {
    font-size: 23px;
  }

  .final-title {
    font-size: 26px;
  }

  .final-cta-box {
    padding: 32px 18px;
  }

  .offer-features-grid {
    grid-template-columns: 1fr;
  }

  .elimination-alert-box {
    flex-direction: column;
    text-align: center;
  }

  .countdown-box {
    flex-direction: column;
    text-align: center;
  }

  .countdown-digits {
    width: 100%;
    justify-content: space-between;
  }

  .digit-card {
    min-width: 65px;
    padding: 10px 8px;
  }

  .digit-value {
    font-size: 24px;
  }

  .offer-tag-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: inline-flex;
    margin: 0 auto 16px auto;
    font-size: 11px;
    padding: 5px 16px;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }

  .offer-card {
    padding: 28px 18px 34px 18px;
  }

  .offer-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .btn-offer-cta, .btn-hero-primary {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
  }
}
