/* Formulário */
.form-oracao {
	width:100%;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	font-family: Rubik, sans-serif;
}

.form-oracao input, .form-oracao textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-oracao button {
    width: 100%;
    padding: 15px;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.form-oracao button:hover { background: #d35400; }

.alerta-sucesso {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    margin: 20px auto;
    max-width: 500px;
    border-radius: 5px;
    text-align: center;
}

/* Mural de Cards */
.mural-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

.vela-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    border-top: 5px solid #f1c40f;
}

/* Chama Animada */
.chama {
    width: 12px;
    height: 20px;
    background: #f1c40f;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    margin: 0 auto;
    box-shadow: 0 0 15px #f1c40f;
    animation: queimar 1s infinite alternate;
}

.corpo-vela {
    width: 20px;
    height: 8px;
    background: #eee;
    margin: 2px auto 15px;
}

@keyframes queimar {
    from { transform: scale(1); opacity: 0.9; }
    to { transform: scale(1.2); opacity: 1; box-shadow: 0 0 25px #f39c12; }
}

.vela-conteudo h3 { font-size: 1.1em; color: #333; margin-bottom: 10px; }
.pedido-texto { font-style: italic; color: #666; font-size: 0.95em; margin-bottom: 15px; }
.vela-footer { border-top: 1px solid #eee; padding-top: 10px; }
.dias-restantes { font-size: 0.8em; color: #999; text-transform: uppercase; letter-spacing: 1px; }