@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');
body {
    background: linear-gradient(135deg, #f9f3e6 0%, #ffe6f0 100%);
    font-family: 'Quicksand', sans-serif;
    min-height: 100vh;
    padding: 2rem 0;
}
.oracion-card {
    max-width: 900px;
    margin: 0 auto 2rem auto;
    background-color: #ffffffdd;
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    transition: transform 0.2s ease;
    border: 2px solid #ffb347;
}
.oracion-card:hover {
    transform: scale(1.01);
}
.oracion-texto {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #2d3748;
    background: #fffef7;
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: inset 0 1px 4px #0001, 0 2px 8px #0001;
    margin-bottom: 0;
}
.palabra-editable {
    background-color: #fff0b5;
    padding: 0.1rem 0.3rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.palabra-editable:hover {
    background-color: #ffe08c;
    transform: scale(1.02);
    cursor: default;
}
.formulario-card {
    max-width: 700px;
    margin: 0 auto 2rem auto;
    background-color: #fffaf2;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid #ffd9b5;
}
.campo-grupo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.etiqueta-campo {
    font-weight: 700;
    color: #c45e2c;
    width: 180px;
    margin-right: 1rem;
    font-size: 1rem;
}
.input-estilo, .select-estilo {
    flex: 1;
    min-width: 200px;
    border: 2px solid #ffcf9a;
    border-radius: 40px;
    padding: 8px 16px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    background: white;
    transition: 0.2s;
}
.input-estilo:focus, .select-estilo:focus {
    border-color: #ff914d;
    outline: none;
    box-shadow: 0 0 0 3px #ffb34780;
    transform: scale(1.02);
}
.btn-reset {
    background-color: #ff914d;
    border: none;
    border-radius: 60px;
    padding: 10px 28px;
    font-weight: bold;
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    transition: 0.2s;
    box-shadow: 0 4px 0 #b45f2b;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
    width: auto;
}
.btn-reset:hover {
    background-color: #ff7640;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #b45f2b;
}
.btn-reset:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #b45f2b;
}
.boton-wrapper {
    text-align: center;
    margin-top: 1rem;
}
.imagen-meme {
    display: block;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 10px 15px -5px rgba(0,0,0,0.2);
    transition: transform 0.2s;
    max-width: 100%;
    height: auto;
}
.imagen-meme:hover {
    transform: rotate(1deg) scale(1.02);
}
.separador {
    border: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffb347, #ffd89b, #ffb347);
    border-radius: 5px;
    margin: 2rem auto;
    width: 80%;
}
.texto-pregunta {
    text-align: center;
    font-weight: 600;
    color: #b45f2b;
    margin-top: 1rem;
}
@media (max-width: 768px) {
    .oracion-texto {
        font-size: 1.1rem;
    }
    .campo-grupo {
        flex-direction: column;
        align-items: flex-start;
    }
    .etiqueta-campo {
        width: auto;
        margin-bottom: 0.3rem;
    }
    .input-estilo, .select-estilo {
        width: 100%;
    }
}