/* Container principal */
.content {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    font-family: 'Arial', sans-serif;
    color: #222;
}

/* Títulos */
.content h2, .content h3 {
    color: #1a237e;
    margin-top: 24px;
    margin-bottom: 12px;
    text-align: center;
}

.content h2 {
    font-size: 2rem;
    font-weight: bold;
}

.content h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Data e cor litúrgica */
#data-liturgia, #cor-liturgia {
    font-size: 1rem;
    color: #555;
    text-align: center;
    margin-bottom: 10px;
}

/* Versículos e textos bíblicos */
#primeira-leitura-referencia {
    font-weight: bold;
    color: #b71c1c;
    margin-top: 18px;
    margin-bottom: 6px;
    text-align: center;
}

#primeira-leitura-texto, #oracao-coleta {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #333;
    background: #f8f8f8;
    border-left: 4px solid #d4af37;
    padding: 14px 18px;
    margin-bottom: 18px;
    border-radius: 6px;
    white-space: pre-line; /* Mantém quebras de linha vindas da API */
}

/* Responsivo */
@media (max-width: 800px) {
    .content {
        max-width: 98vw;
        padding: 16px 6vw;
    }
    .content h2 {
        font-size: 1.4rem;
    }
    .content h3 {
        font-size: 1rem;
    }
}

/* Rodapé centralizado */
footer {
    text-align: center;
    padding: 18px 0;
    background: #0a0a23;
    color: #fff;
    font-size: 14px;
}