/* 🔹 Contenedor de la botonera */
.memorial-botonera {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.memorial-botonera ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
}

.memorial-botonera li {
    display: inline-block;
}

/* 🔹 Estilos uniformes para los botones y enlaces */
.boton-memorial {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s ease-in-out;
}

.boton-memorial i {
    font-size: 18px;
}

/* 🔹 Efecto hover */
.boton-memorial:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* 🔹 Ajuste especial para el botón de biografía */
#toggle-biografia {
    all: unset; /* Resetea los estilos predeterminados del botón */
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    background: #007BFF;
    color: white;
    transition: background 0.3s, transform 0.2s ease-in-out;
}

#toggle-biografia i {
    font-size: 18px;
}

/* 🔹 Efecto hover para botón de biografía */
#toggle-biografia:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* 🔹 Responsividad */
@media screen and (max-width: 768px) {
    .memorial-botonera ul {
        flex-direction: column;
        align-items: center;
    }
}
