* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Libre Baskerville', serif;
  background-color: #2f4f4f;
  color: white;
  line-height: 1.7;
}

header {
  position: relative;
  padding: 18px 16px 10px;
  text-align: center;
}

h1 {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  letter-spacing: 3px;
}

h2 {
  font-size: 13px;
  font-style: italic;
  opacity: 0.85;
  margin-top: -4px;
}

/* En portada: ocultar solo los textos del header, NO la hamburguesa */
body.inicio header h1,
body.inicio header h2 {
display: none;
}



#menuBtn {
  position: absolute;
  left: 12px;
  top: 16px;
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

body.menu-open #menuBtn {
color: #2f4f4f;
}

#sideMenu {
  position: fixed;
  top: 0;
  left: -240px;
  width: 240px;
  height: 100%;
  background: #f8f6f2;
  padding: 80px 20px 20px;
  transition: left 0.3s ease;
  z-index: 1000;
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);

  display: flex;
flex-direction: column;
}

#sideMenu.open { left: 0; }

#sideMenu h3 {
font-family: 'Cinzel', serif;
color: #2f4f4f;
font-size: 16px;
letter-spacing: 3px;
margin-bottom: 24px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(201,162,77,0.3);
}

#sideMenu ul { list-style: none; }

#sideMenu li {
padding: 16px 10px;
border-bottom: 1px solid rgba(0,0,0,0.06);
cursor: pointer;
font-size: 15px;
color: #2f4f4f;
letter-spacing: 0.5px;
border-radius: 8px;
transition: all 0.2s ease;
-webkit-tap-highlight-color: transparent;
}

#sideMenu li:active {
background: rgba(201,162,77,0.18);
transform: scale(0.97);
}

#sideMenu li:hover {
background: rgba(201,162,77,0.12);
transform: translateX(6px);
}

#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  z-index: 900;
}

#overlay.show { display: block; }

main {
padding: 24px 20px 90px;
position: relative;
overflow: hidden;
}

.view {
position: absolute;
width: 100%;
top: 0;
left: 0;
opacity: 0;
transform: translateY(6px);
transition: opacity 0.20s ease, transform 0.20s ease;
pointer-events: none;
}

.view.active {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
position: relative;
}

.virgen {
  width: 82%;
  max-width: 340px;
  margin: 20px auto 18px;
}

.virgen img { width: 100%; display: block; }

.portada-titulo {
  text-align: center;
  margin-bottom: 22px;
}

.portada-titulo h1 {
font-size: 28px;
letter-spacing: 4px;
margin-bottom: 6px;
}

.portada-titulo h2:first-of-type {
font-size: 14px;
letter-spacing: 2px;
opacity: 0.85;
}

.portada-titulo h2:last-of-type {
font-size: 13px;
opacity: 0.75;
margin-top: 8px;
line-height: 1.6;
padding: 0 10px;
}

.titulo-dorado {
  color: #c9a24d;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}


.home-buttons{
margin-top:26px;
display:flex;
flex-direction:column;
align-items:center;
gap:18px;
}

.home-btn{
width:72%;
text-align:center;
padding:14px 10px;
border-top:1px solid rgba(255,255,255,0.25);
border-bottom:1px solid rgba(255,255,255,0.25);
font-size:17px;
letter-spacing:3px;
cursor:pointer;
transition: all 0.25s ease;
}

.home-btn:hover{
opacity:0.7;
transform: scale(0.98);
}

.chapter {
  max-width: 720px;
  margin: 0 auto;
}

.chapter h3 {
  font-family: 'Cinzel', serif;
  text-align: center;
  margin-bottom: 10px;
  font-size: 22px;
}

.chapter p {
  margin-bottom: 16px;
  font-size: 15px;
  opacity: 0.95;
}

.firma {
  margin-top: 30px;
  text-align: right;
  font-style: italic;
}

.cargo {
  font-size: 13px;
  opacity: 0.85;
}

nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2f2f;
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
}

.oracion-dia{
text-align:center;
margin: 12px 0 24px;
padding: 14px 18px;
border-radius: 12px;
cursor: pointer;
transition: all 0.25s ease;
}

/* ===== LISTA NOVENA (ELEGANTE PREMIUM) ===== */

.novena-item {
text-align: center;
padding: 18px 0;
font-family: 'Cinzel', serif;
letter-spacing: 2px;
font-size: 15px;
cursor: pointer;
transition: all 0.25s ease;
position: relative;
opacity: 0.85;
margin-bottom: 8px;
}

/* Línea elegante */
.novena-item::after {
content: "";
display: block;
height: 1px;
width: 40%;
margin: 12px auto 0;
background: linear-gradient(
to right,
transparent,
rgba(201,162,77,0.35),
transparent
);
}

/* Interacción */
.novena-item:hover {
opacity: 1;
transform: scale(0.98);
}

.novena-item:active {
transform: scale(0.96);
}

/* Activo */
.novena-item.activo {
color: #c9a24d;
font-weight: bold;
opacity: 1;
transform: scale(1.02);
text-shadow: 0 0 6px rgba(201,162,77,0.35);
}

/* Completado */
.novena-item.completado {
opacity: 0.4;
}

/* Check */
.novena-check {
margin-left: 8px;
font-size: 12px;
color: #c9a24d;
opacity: 0.9;
}

/* ===== NOVENA GRID ===== */

/* ===== NOVENA DÍA (ESTILO PREMIUM) ===== */

/* ===== HEADER NOVENA ===== */

.novena-header {
text-align: center;
margin-bottom: 10px;
}

.novena-header img {
width: 100%;
max-width: 320px;
margin: 0 auto 18px;
border-radius: 14px;
border: 4px solid #c9a24d;
display: block;
}

.novena-header h3 {
font-family: 'Cinzel', serif;
font-size: 20px;
letter-spacing: 3px;
margin-bottom: 6px;
}

.novena-subtitulo {
font-size: 12px;
opacity: 0.75;
font-style: italic;
}

.novena-divider-top {
height: 1px;
width: 60%;
margin: 20px auto 10px;
background: linear-gradient(
to right,
transparent,
rgba(201,162,77,0.6),
transparent
);
}

.novena-seccion {
margin-top: 26px;
padding: 18px 16px;
background: rgba(255,255,255,0.06);
border-radius: 14px;
border: 1px solid rgba(201,162,77,0.25);
}

.novena-seccion h4 {
font-family: 'Cinzel', serif;
font-size: 17px;
letter-spacing: 2.5px;
margin: 28px 0 10px;
text-align: center;
color: #c9a24d;
position: relative;
}

.novena-seccion h4::after {
content: "";
display: block;
width: 30px;
height: 2px;
background: #c9a24d;
margin: 8px auto 0;
opacity: 0.6;
}

.novena-seccion p {
font-size: 15.5px;
line-height: 2;
opacity: 0.95;
text-align: justify;
text-justify: inter-word;
margin-bottom: 16px;
letter-spacing: 0.3px;

max-width: 92%;
margin-left: auto;
margin-right: auto;
}

.novena-seccion p::first-letter {
font-size: 1.3em;
color: #c9a24d;
font-weight: bold;
}

.novena-seccion p:last-child {
margin-bottom: 0;
}

.novena-separador {
height: 1px;
width: 50%;
margin: 28px auto;
background: linear-gradient(
to right,
transparent,
rgba(201,162,77,0.5),
transparent
);
}

.novena-grid{
display:grid;
grid-template-columns: repeat(2, 1fr);
gap:16px;
margin-top:20px;
}

.novena-card{
background: rgba(255,255,255,0.08);
border-radius:16px;
overflow:hidden;
cursor:pointer;
transition: all 0.25s ease;
}

.novena-card:hover{
transform: scale(0.97);
opacity:0.9;
}

.novena-card img{
width:100%;
height:140px;
object-fit:cover;
display:block;
}

.novena-card-title{
text-align:center;
padding:10px;
font-family:'Cinzel', serif;
letter-spacing:1px;
}

.btn-reset-novena {
background: transparent;
border: 1px solid rgba(201,162,77,0.35);
color: rgba(255,255,255,0.6);
font-size: 12px;
letter-spacing: 1px;
padding: 6px 14px;
border-radius: 999px;
cursor: pointer;
transition: all 0.25s ease;
}

.btn-reset-novena:hover {
color: #c9a24d;
border-color: #c9a24d;
background: rgba(201,162,77,0.08);
}

.btn-reset-novena:active {
transform: scale(0.96);
}

.oracion-dia:hover{
background: rgba(255,255,255,0.06);
transform: scale(0.98);
}

.oracion-dia-hint{
font-size:11px;
opacity:0.6;
margin-top:6px;
letter-spacing:1px;
}

.oracion-dia-hint::after{
content: " →";
}

.oracion-dia-titulo{
text-align:center;
font-size:12px;
letter-spacing:2px;
opacity:0.7;
margin-bottom:6px;

display:flex;
justify-content:center;
align-items:center;
} 

#oracion-dia-texto{
font-size:13px;
line-height:1.7;
font-style:italic;
opacity:0.75;
max-width: 280px;
margin: 0 auto;
}

/* espacio patrocinador */

.sponsor-slot{
text-align:center;
padding:4px 0;
border-top:1px solid rgba(255,255,255,0.12);
font-size:10px;
}

.sponsor-label{
display:none;
}

.sponsor-content{
display:flex;
align-items:center;
justify-content:center;
gap:6px;
}

.sponsor-content img{
max-height:16px;
opacity:0.8;
}

.sponsor-name{
font-size:10px;
opacity:0.5;
letter-spacing:0.5px;
}

nav button {
  background: none;
  border: none;
  color: white;
  font-size: 13px;
}

/* ===== ORACIONES (tipo Linktree) ===== */

.oracion-link {
display: flex;
align-items: center;
gap: 14px;
background: rgba(255,255,255,0.12);
border-radius: 999px;
padding: 12px 16px;
margin-bottom: 14px;
cursor: pointer;
}

.oracion-link img {
width: 48px;
height: 48px;
border-radius: 50%;
object-fit: cover;
border: 2px solid #c9a24d;
}

.oracion-link span {
font-size: 15px;
}

@media (min-width: 768px) {
body {
max-width: 480px;
margin: auto;
}
}

/* ===== HISTORIA ESTILO LIBRO ELEGANTE ===== */

.historia-index {
padding-top: 10px;
}

.chapter-item:hover {
transform: translateY(-3px);
opacity: 0.85;
}

.chapter-number {
font-family: 'Cinzel', serif;
font-size: 26px;
color: #d4af37;
margin-bottom: 6px;
letter-spacing: 2px;
}

.chapter-item h4 {
font-family: 'Cinzel', serif;
font-size: 18px;
margin: 4px 0;
font-weight: 600;
}

.chapter-item p {
font-size: 14px;
color: rgba(255,255,255,0.75);
margin-top: 6px;
max-width: 320px;
margin-left: auto;
margin-right: auto;
}

.chapter-divider {
height: 1px;
width: 60%;
margin: 0 auto;
background: linear-gradient(
to right,
transparent,
rgba(212,175,55,0.6),
transparent
);
}

/* ===== ANIMACIÓN HISTORIA ===== */

.chapter-item {
text-align: center;
padding: 22px 10px;
cursor: pointer;
transition: all 0.35s ease;
opacity: 0;
transform: translateY(15px);
animation: fadeUp 0.8s ease forwards;
}

.chapter-item:nth-child(1) { animation-delay: 0.1s; }
.chapter-item:nth-child(3) { animation-delay: 0.2s; }
.chapter-item:nth-child(5) { animation-delay: 0.3s; }
.chapter-item:nth-child(7) { animation-delay: 0.4s; }
.chapter-item:nth-child(9) { animation-delay: 0.5s; }
.chapter-item:nth-child(11) { animation-delay: 0.6s; }

@keyframes fadeUp {
to {
opacity: 1;
transform: translateY(0);
}
}

/* ===== MODAL PREMIUM ===== */

.modal-overlay {
position: fixed;
inset: 0;
background: rgba(0,0,0,0.55);
display: none;
align-items: center;
justify-content: center;
z-index: 2000;
}

.modal-overlay.show {
display: flex;
}

.modal-box {
width: 85%;
max-width: 320px;
max-height: 80vh;
overflow-y: auto;
background: #1f2f2f;
border-radius: 16px;
padding: 22px 18px;
text-align: center;
border: 1px solid rgba(201,162,77,0.3);
animation: fadeIn 0.25s ease;
}

#modal-oracion-titulo {
  margin-bottom: 18px;
  color: #c9a24d;
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 600;
  }

.modal-text {
font-family: 'Cinzel', serif;
font-size: 16px;
letter-spacing: 2px;
margin-bottom: 10px;
}

.modal-subtext {
font-size: 13px;
opacity: 0.75;
margin-bottom: 18px;
}

.modal-actions {
display: flex;
justify-content: space-between;
gap: 10px;
}

.modal-btn {
flex: 1;
padding: 10px;
border-radius: 999px;
border: none;
font-size: 13px;
cursor: pointer;
}

/* Cancelar */
.modal-btn.cancel {
background: rgba(255,255,255,0.1);
color: white;
}

/* Confirmar */
.modal-btn.confirm {
background: #c9a24d;
color: #1f2f2f;
}

/* Tap */
.modal-btn:active {
transform: scale(0.96);
}

/* Animación */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* ===== BOTÓN VOLVER PREMIUM ===== */

.btn-volver {
display: inline-flex;
align-items: center;
gap: 6px;
background: transparent;
border: none;
color: rgba(201,162,77,0.85);
font-size: 13px;
letter-spacing: 1px;
cursor: pointer;
padding: 4px 0;
transition: all 0.2s ease;
}

.btn-volver:hover {
opacity: 0.7;
transform: translateX(-2px);
}

.btn-volver:active {
transform: scale(0.96);
}

@keyframes pulse {  
0% { transform: scale(1); opacity: 0.9; }  
50% { transform: scale(1.05); opacity: 1; }  
100% { transform: scale(1); opacity: 0.9; }  
}

@keyframes glowBar {
0% { box-shadow: 0 0 4px rgba(201,162,77,0.4); }
50% { box-shadow: 0 0 12px rgba(201,162,77,0.8); }
100% { box-shadow: 0 0 4px rgba(201,162,77,0.4); }
}

/* ===== TOAST ===== */
#toast {
position: fixed;
bottom: 24px;
left: 50%;
transform: translateX(-50%) translateY(40px);
background: rgba(201,162,77,0.95);
color: #1f2f2f;
padding: 12px 24px;
border-radius: 999px;
font-family: 'Cinzel', serif;
letter-spacing: 1px;
font-size: 14px;
opacity: 0;
pointer-events: none;
transition: opacity 0.4s ease, transform 0.4s ease;
z-index: 3000;
}

/* Clase activa para mostrar el toast */
#toast.show {
opacity: 1;
transform: translateX(-50%) translateY(0);
}

/* ===== LIBRO PREMIUM ===== */

.titulo-libro {
font-family: 'Cinzel', serif;
font-size: 34px;
text-align: center;
margin-top: 30px;
margin-bottom: 10px;
letter-spacing: 2px;
}

.subtitulo-libro {
text-align: center;
font-size: 18px;
opacity: 0.85;
margin-bottom: 8px;
}

.subtitulo-interno {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #c9a24d;
  text-align: center;
  margin: 1.8rem 0 0.8rem;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.frase-libro {
text-align: center;
font-style: italic;
color: #d8c18a;
margin-bottom: 40px;
font-size: 15px;
}

.cita-poetica {
text-align: right;
font-style: italic;
line-height: 1.6;
opacity: 0.92;
margin: 34px auto 60px;
max-width: 88%;
font-size: 15px;
}

.cita-autor {
margin-top: 14px;
font-size: 16px;
opacity: 0.75;
}

.texto-libro p {
margin-bottom: 24px;
line-height: 2;
font-size: 16px;
opacity: 0.96;
}

.frase-central {
text-align: center;
font-family: 'Cinzel', serif;
font-size: 18px;
line-height: 1.8;
color: #d8c18a;
margin: 60px 0;
}

.subtitulo-seccion {
  text-align: left;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 600;
  color: #c9a24d;
  margin: 45px 0 25px;
  line-height: 1.5;
  }


  .titulo-oracion {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #d8c18a;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
    }

.cierre-libro {
text-align: center;
font-style: italic;
opacity: 0.8;
margin-top: 60px;
margin-bottom: 40px;
}

.img-libro {
width: 100%;
max-width: 420px;
display: block;
margin: 40px auto;
border-radius: 16px;
border: 3px solid #c9a24d;
}

/* ===== ORACIÓN INDIVIDUAL ===== */

.oracion-texto {
text-align: left;
line-height: 2;
font-size: 16px;
opacity: 0.96;
}

/* ===== BOTÓN DORADO GLOBAL ===== */

.btn-dorado {
  background:#c9a24d;
  border:none;
  padding:12px 18px;
  border-radius:999px;
  cursor:pointer;
  font-size:14px;
  color:#1f2f2f;
  transition: all 0.2s ease;
  }
  
  .btn-dorado:hover {
  opacity:0.92;
  transform: scale(0.98);
  }
  
  .btn-dorado:active {
  transform: scale(0.96);
  }

  .agradecimiento-colaborador {
    text-align: center;
  }
  
  .colaborador-card {
    margin: 28px 0;
    padding: 28px 20px;
    border: 1px solid rgba(201, 162, 77, 0.55);
    border-radius: 20px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.78),
      rgba(248, 246, 242, 0.92)
    );
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  
  .logo-colaborador {
    max-width: 220px;
    width: 80%;
    margin: 10px auto 18px;
    display: block;
  }
  
  .colaborador-card h4 {
    font-family: 'Cinzel', serif;
    color: #2f4f4f;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .datos-colaborador {
    font-size: 0.95rem;
    color: #2f4f4f;
    margin-top: 16px;
  }
  
  .botones-descarga {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
  }
  
  .store-button {
    padding: 14px 18px;
    border: 1px solid #c9a24d;
    border-radius: 12px;
    background: #f8f6f2;
    color: #2f4f4f;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.75;
  }
  
  .store-button span {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.8rem;
    font-weight: 400;
  }
  
  .primary-button {
    width: 100%;
    padding: 17px 22px;
    border: 2px solid #c9a24d;
    border-radius: 999px;
    background: #c9a24d;
    color: #1f2f2f;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    margin-top: 10px;
  }
  
  .primary-button:hover {
    opacity: 0.92;
    transform: scale(0.99);
  }
  
  .primary-button:active {
    transform: scale(0.97);
  }

  /* ===== CORRECCIÓN TEXTO TARJETA COLABORADOR ===== */

.colaborador-card,
.colaborador-card p,
.colaborador-card h4,
.colaborador-card a {
  color: #2f4f4f;
}

.colaborador-card a {
  font-weight: 600;
  text-decoration: underline;
}

.intro-colaborador {
  color: #f8f6f2;
  text-align: center;
  line-height: 1.8;
  margin-top: 18px;
}

.info-colaborador {
  text-align: center;
  margin-top: 28px;
}

.info-colaborador h4 {
  font-family: 'Cinzel', serif;
  color: #c9a24d;
  font-size: 1rem;
  margin-bottom: 8px;
}

.info-colaborador .datos-colaborador {
  text-align: center;
  margin: 0 auto;
}

.info-colaborador a {
  color: #c9a24d;
  font-weight: 600;
  text-decoration: none;
}

.store-badge {
  height: 44px;
  width: auto;
  max-width: 46%;
  display: block;
  object-fit: contain;
}

.botones-descarga {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 20px 0 25px;
  flex-wrap: wrap;
}

.app-store-badge {
  height: 44px !important;
}

.texto-descarga-app {
  text-align: center;
  color: #f8f6f2;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* ===== TESTIMONIOS Y PETICIONES ===== */

.mensajes-comunidad {
  margin-top: 36px;
}

.mensajes-comunidad h4 {
  font-family: 'Cinzel', serif;
  color: #c9a24d;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.mensaje-comunidad {
  margin-bottom: 26px;
  padding: 20px 18px;
  border: 1px solid rgba(201, 162, 77, 0.45);
  border-radius: 18px;
  background: rgba(248, 246, 242, 0.08);
}

.etiqueta-mensaje {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 77, 0.22);
  color: #c9a24d;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.mensaje-comunidad p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.mensaje-comunidad small {
  display: block;
  text-align: right;
  color: #c9a24d;
  opacity: 0.9;
}

.testimonios-botones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 10px;
  align-items: center;
}

.testimonios-botones .primary-button {
  width: 75%;
  padding: 13px 18px;
  font-size: 0.9rem;
}

/* ===== FORMULARIO DE CONTACTO ===== */

.form-contacto {
  margin-top: 26px;
}

.form-contacto label {
  display: block;
  margin-top: 18px;
  margin-bottom: 7px;
  font-family: 'Cinzel', serif;
  color: #c9a24d;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-contacto input,
.form-contacto textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 77, 0.45);
  background: rgba(248, 246, 242, 0.95);
  color: #1f2f2f;
  font-family: 'Libre Baskerville', serif;
  font-size: 15px;
}

.form-contacto textarea {
  resize: vertical;
  line-height: 1.6;
}

.checkbox-contacto {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px !important;
  margin-bottom: 22px !important;
  color: #f8f6f2 !important;
  font-family: 'Libre Baskerville', serif !important;
  font-size: 0.9rem !important;
  line-height: 1.6;
}

.checkbox-contacto input {
  width: auto;
  margin-top: 5px;
}

.checkbox-contacto span {
  color: #f8f6f2;
}

/* ===== TÍTULOS INTERNOS ORACIONES NUEVA ===== */

.titulo-seccion-oraciones {
  font-family: 'Cinzel', serif;
  color: #c9a24d;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 34px 0 14px;
}

.oracion-dia-nueva {
  margin-bottom: 14px;
}