/* ============================================================
   opcoes.css — Página: Onde Vai Assistir?
   ============================================================ */

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

:root {
  --purple:      #7c3aed;
  --purple-light:#9b5cf6;
  --bg:          #080b18;
  --card-bg:     rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.07);
  --card-hover:  rgba(255, 255, 255, 0.07);
  --text-primary:#eef0f8;
  --text-muted:  #6b7499;
  --text-accent: #a78bfa;
  --footer-bg:   rgba(8, 11, 24, 0.96);
  --border:      rgba(255, 255, 255, 0.07);
  --progress:    #4d7cfe;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 55% 40% at 50% 20%,
      rgba(60, 20, 110, 0.18) 0%,
      transparent 100%);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 60px;
  position: relative;
  overflow-x: hidden;
}

/* Grade de pontos discreta */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.022) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ─── HEADER ─── */
.header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px 0;
}

.btn-back {
  position: absolute;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.btn-back:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-back svg {
  width: 18px;
  height: 18px;
}

.header-logo img {
  max-width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(140, 60, 230, 0.28));
}

/* ─── BARRA DE PROGRESSO ─── */
.progress-bar-wrapper {
  position: relative;
  z-index: 2;
  padding: 18px 20px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.progress-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--progress), #6a9fff);
  border-radius: 99px;
  transition: width 0.4s ease;
}

.progress-dots {
  display: flex;
  gap: 5px;
}

.progress-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.progress-dots span.active {
  background: var(--progress);
}

/* ─── CONTEÚDO PRINCIPAL ─── */
.main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 20px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── TÍTULO ─── */
.main h1 {
  font-size: clamp(19px, 5vw, 26px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 32px;
  animation: fadeDown 0.5s ease both;
}

/* ─── LISTA DE OPÇÕES ─── */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  list-style: none;   /* remove bolinhas */
  padding: 0;
  margin: 0;
}

.options-list li {
  list-style: none;   /* garante remoção em todos os browsers */
}

/* ─── CARD DE OPÇÃO ─── */
.option-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.22s ease, border-color 0.22s ease,
              transform 0.18s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.45s ease both;
}

/* Linha de destaque à esquerda no hover */
.option-card::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 3px;
  background: linear-gradient(180deg, var(--purple-light), var(--purple));
  border-radius: 99px;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.options-list li:nth-child(1) .option-card { animation-delay: 0.05s; }
.options-list li:nth-child(2) .option-card { animation-delay: 0.10s; }
.options-list li:nth-child(3) .option-card { animation-delay: 0.15s; }
.options-list li:nth-child(4) .option-card { animation-delay: 0.20s; }
.options-list li:nth-child(5) .option-card { animation-delay: 0.25s; }

.option-card:hover {
  background: rgba(124, 58, 237, 0.09);
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 4px 24px rgba(100, 40, 200, 0.12);
  transform: translateX(4px);
}

.option-card:hover::before {
  opacity: 1;
}

.option-card:active {
  transform: scale(0.98);
}

/* Ícone do card */
.card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(90, 30, 180, 0.12));
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 13px;
  flex-shrink: 0;
  color: var(--purple-light);
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.18);
  transition: box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.option-card:hover .card-icon {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(90, 30, 180, 0.2));
  border-color: rgba(155, 92, 246, 0.55);
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.38);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

/* Texto do card */
.card-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-title {
  font-size: clamp(15px, 4vw, 18px);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.card-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Chevron */
.card-arrow {
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: color 0.22s ease, transform 0.22s ease;
}

.option-card:hover .card-arrow {
  color: var(--purple-light);
  transform: translateX(4px);
}

.card-arrow svg {
  width: 18px;
  height: 18px;
}

/* ─── FOOTER ─── */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  background: var(--footer-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 10;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #a8aecf;
  text-transform: uppercase;
}

.dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
  animation: blink 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

.footer-status {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding-left: 14px;
  font-weight: 500;
}

.footer-support {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.footer-support:hover {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.06);
}

.footer-support svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ─── ANIMAÇÕES ─── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}
