/* ============================================
   JEJUM E ASCESE
   ============================================ */

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

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

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

/* --- Grid de Cards --- */
.jejum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.jejum-card {
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
}

.jejum-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.jejum-card-content {
  width: 100%;
}

.jejum-card-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.jejum-card-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.jejum-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.25);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}

.jejum-countdown.active {
  background: rgba(255, 255, 255, 0.25);
}

.jejum-countdown.ended {
  background: rgba(0, 0, 0, 0.15);
  opacity: 0.7;
}

/* --- Detalhes --- */
.jejum-details {
  margin-top: 2rem;
}

.jejum-details-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #3D2B1F;
  margin-bottom: 1.5rem;
}

.jejum-detail-card {
  display: flex;
  gap: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.jejum-detail-card:hover {
  transform: translateX(4px);
}

.jejum-detail-color {
  width: 5px;
  border-radius: 3px;
  flex-shrink: 0;
}

.jejum-detail-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: #3D2B1F;
  margin-bottom: 0.3rem;
}

.jejum-detail-dates {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #8B5E3C;
  margin-bottom: 0.3rem;
}

.jejum-detail-dates i {
  margin-right: 0.3rem;
}

.jejum-detail-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* --- Regras Gerais --- */
.jejum-rules {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.jejum-rules-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: #3D2B1F;
  margin-bottom: 1rem;
}

.jejum-rules-title i {
  color: #C5A572;
  margin-right: 0.5rem;
}

.jejum-rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.jejum-rule-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.jejum-rule-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.jejum-rule-item strong {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: #3D2B1F;
  display: block;
  margin-bottom: 0.1rem;
}

.jejum-rule-item p {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

.jejum-rules-note {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #8B5E3C;
  padding: 0.75rem;
  background: rgba(197, 165, 114, 0.1);
  border-radius: 0.5rem;
  border-left: 3px solid #C5A572;
}

.jejum-rules-note i {
  margin-right: 0.3rem;
}

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

  .jejum-title {
    font-size: 1.6rem;
  }

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

  .jejum-card {
    min-height: 140px;
    padding: 1.5rem;
  }

  .jejum-card-title {
    font-size: 1.3rem;
  }

  .jejum-rules-grid {
    grid-template-columns: 1fr;
  }
}
