/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
    background-color: #fffaf0; /* Crema suave */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Georgia', serif;
}

/* 2. EL CONTENEDOR QUE ORDENA TODO */
.base-angelcore {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 90%;
    max-width: 700px;
}

/* 3. ESTILO DE TEXTOS */
.titulo-principal {
    color: #b89550; /* Dorado */
    font-size: 2.2em;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.frase-poetica {
    color: #8c7b50;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* 4. ESTILO DE LA IMAGEN (TAMAÑO Y POSICIÓN) */
.contenedor-angel {
    margin-bottom: 30px;
    border: 1px solid #b89550;
    padding: 8px;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.angel-imagen {
    width: 320px; /* AQUÍ CAMBIAS EL TAMAÑO */
    height: auto;
    display: block;
}

/* 5. ESTILO DE LOS BOTONES */
.menu-navegacion {
    display: flex;
    gap: 20px;
}

.boton-celestial {
    text-decoration: none;
    color: #b89550;
    border: 1px solid #b89550;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.9em;
    transition: 0.3s;
}/* Cambia el cursor para toda la página */
html, body {
    /* Aquí especificas el nombre de tu archivo y un cursor por defecto (auto) */
    cursor: url("cursor-hueso.png"), auto;
}/* Esto va al puro inicio de tu style.css */
* {
    cursor: url("cursor-hueso.png"), auto !important;
}

/* Forzamos que en los links también se vea */
a, button, .boton-celestial {
    cursor: url("cursor-hueso".png"), pointer !important;
}.tarjeta-pensamiento {
    background-color: #fffaf0; /* Un blanco crema muy suave */
    border: 1px solid #e8dcc4;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 2px 2px 10px rgba(184, 149, 80, 0.1); /* Sombra dorada suave */
    transition: transform 0.3s ease;
}

.tarjeta-pensamiento:hover {
    transform: translateY(-5px); /* Pequeño efecto de flotado al pasar el mouse */
}

.tarjeta-pensamiento .fecha {
    display: block;
    font-size: 0.85em;
    color: #b89550;
    font-style: italic;
    margin-bottom: 10px;
    border-bottom: 1px dashed #b89550;
    padding-bottom: 5px;
}

.tarjeta-pensamiento p {
    color: #5a4a32;
    line-height: 1.6;
    margin: 0;
}














