/* ============================================================
   PÁGINA — OS SETE CONTÍNUOS
   Estilo consistente com Casa Fantasma
============================================================ */

/* Hero mínimo (sem névoa) */
.continuos-hero {
  height: 35vh;
  background: url('/assets/img/continuos-hero.webp')
    no-repeat center center / cover;
  margin-top: 90px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.continuos-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.continuos-hero h2 {
  position: relative;
  z-index: 2;
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  letter-spacing: 2px;
  text-shadow: 0 0 20px #00ff99;
}

/* Corrigir sobreposição do header */
main {
  padding-top: 120px;
}


/* ============================================================
   CONTENT CENTRAL — igual ao padrão do site
============================================================ */

.continuos-content {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Bloco que contém o texto */
.continuos-box {
  background: #0a0a0a;
  border: 1px solid rgba(0, 255, 153, 0.25);
  padding: 40px 50px;
  border-radius: 10px;

  box-shadow: 0 0 25px rgba(0, 255, 153, 0.08);
  text-align: left; /* Para formatar parágrafos */
}

.continuos-box p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 22px;
  color: #e0e0e0;
}

.continuos-box strong {
  color: #00ff99;
  text-shadow: 0 0 6px rgba(0, 255, 153, 0.4);
}

/* Listas dentro do box */
.continuos-box ul {
  list-style: none;
  margin: 15px 0 25px;
  padding-left: 0;
}

.continuos-box ul li {
  margin: 6px 0;
  padding-left: 14px;
  border-left: 2px solid rgba(0, 255, 153, 0.35);
  color: #cfcfcf;
  transition: 0.25s ease;
}

.continuos-box ul li:hover {
  color: #fff;
  border-left-color: #00ff99;
}

/* ============================================================
   DIVISOR DECORATIVO (igual ao padrão)
============================================================ */

.continuos-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 255, 153, 0.4),
    transparent
  );
  margin: 60px 0;
  opacity: 0.7;
}
