/* Contenedor principal */
.oraculo-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Títulos */
.oraculo-inicio {
    color: #6e3d7c;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 800;
}

.oraculo-container h4 {
    color: #6e3d7c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Instrucciones y textos */
.oraculo-instruccion,
.oraculo-oracion,
.oraculo-consulta {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: justify;
    line-height: 1.6;
}

.oraculo-oracion {
    background-color: #dbd8f8;
    border-left: 4px solid #6e3d7c;
}

.oraculo-instruccion ul {
    padding-left: 20px;
}

.oraculo-instruccion li {
    margin-bottom: 8px;
}

/* Contenedor de imagen */
.oraculo-imagen-container {
    margin: 20px auto;
    width: 340px;
    height: 490px;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.oraculo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
}

/* Mensaje de la carta */
.oraculo-message {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    border-left: 4px solid #ffcc00;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #6e3d7c;
    max-width: 600px;
}

/* Botones */
.oraculo-botones {
    text-align: center;
    margin: 30px 0;
}

.oraculo-button {
    padding: 15px 40px;
    background-color: #6e3d7c;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin: 0 10px;
}

.oraculo-button:hover {
    background-color: #8a4d9b;
}

.oraculo-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Sección de aceites */
.oraculo-aceites {
    background-color: #c8c2ce;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.oraculo-aceites ul {
    columns: 2;
    column-gap: 40px;
    padding-left: 20px;
}

.oraculo-aceites li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.oraculo-aceites strong {
    color: #6e3d7c;
}

/* Consulta */
.oraculo-consulta {
    text-align: center;
    background-color: #e8f4f8;
    border-left: 4px solid #4a90e2;
}

.oraculo-consulta a {
    color: #6e3d7c;
    font-weight: bold;
    text-decoration: none;
}

.oraculo-consulta a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .oraculo-container {
        padding: 15px;
        margin: 10px;
    }
    
    .oraculo-imagen-container {
        width: 280px;
        height: 400px;
    }
    
    .oraculo-inicio {
        font-size: 2rem;
    }
    
    .oraculo-aceites ul {
        columns: 1;
    }
    
    .oraculo-button {
        padding: 12px 30px;
        margin: 5px;
        display: block;
        width: 80%;
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    .oraculo-imagen-container {
        width: 250px;
        height: 360px;
    }
}