/* ============================================
   LIVRO DE ORACOES
   ============================================ */

.oracoes-page {
  background: transparent;
  min-height: 80vh;
  width: 100%;
  padding: 0;
}

.oracoes-container {
  width: 85%;
  margin: 2rem auto;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, #f8f0e3 0%, #f5ebe0 100%);
  padding: 3rem;
}

.oracoes-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 2rem;
  color: #8B1A1A;
  margin-bottom: 2rem;
}

.oracoes-title i {
  margin-right: 0.5rem;
}

/* --- Grid de Categorias --- */
.oracoes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.oracoes-category {
  margin-bottom: 1rem;
}

.oracoes-category-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.oracoes-category-title i {
  margin-right: 0.4rem;
}

.oracoes-category-divider {
  border: none;
  border-top: 1px solid;
  margin-bottom: 0.75rem;
  opacity: 0.3;
}

.oracoes-empty {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
  padding: 0.5rem 0;
}

/* --- Items de Oracao --- */
.oracoes-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: #fff;
  border-radius: 0.6rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: #3D2B1F;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.oracoes-item:hover {
  transform: translateX(4px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(197, 165, 114, 0.3);
}

.oracoes-item-title {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.oracoes-item-arrow {
  font-size: 0.7rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.oracoes-item:hover .oracoes-item-arrow {
  color: #C5A572;
}

/* ============================================
   PAGINA INDIVIDUAL DE ORACAO
   ============================================ */

.oracao-page {
  background: transparent;
  min-height: 80vh;
  width: 100%;
  padding: 0;
}

.oracao-container {
  width: 85%;
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, #f8f0e3 0%, #f5ebe0 100%);
  padding: 3rem;
}

/* Breadcrumb */
.oracao-breadcrumb {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 1.5rem;
}

.oracao-breadcrumb a {
  color: #C5A572;
  text-decoration: none;
  transition: color 0.3s ease;
}

.oracao-breadcrumb a:hover {
  color: #8B5E3C;
}

.oracao-breadcrumb-sep {
  margin: 0 0.4rem;
  color: #ccc;
}

/* Card de Conteudo */
.oracao-content-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.oracao-header {
  margin-bottom: 0.5rem;
}

.oracao-category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.oracao-category-badge i {
  margin-right: 0.3rem;
}

.oracao-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #3D2B1F;
  line-height: 1.3;
}

.oracao-divider {
  border: none;
  border-top: 2px solid rgba(197, 165, 114, 0.2);
  margin: 1.5rem 0;
}

.oracao-body {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
}

.oracao-body p {
  margin: 0 0 1.2em 0;
}

.oracao-body p:last-child {
  margin-bottom: 0;
}

/* Botao Voltar */
.oracao-back {
  margin-top: 2rem;
  text-align: center;
}

.oracao-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  background: #3D2B1F;
  color: #C5A572;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.oracao-back-btn:hover {
  background: #C5A572;
  color: #3D2B1F;
}

/* --- Responsivo --- */
@media (max-width: 768px) {
  .oracoes-page {
    padding: 2rem 0.75rem;
  }

  .oracoes-title {
    font-size: 1.5rem;
  }

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

  .oracao-content-card {
    padding: 1.5rem;
  }

  .oracao-title {
    font-size: 1.4rem;
  }

  .oracao-body {
    font-size: 0.95rem;
  }
}
