menu {
    width: 240px;
    height: 100vh;
    background-color: #e8e8e8;
    padding: 30px 20px;
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 4px 0 15px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

menu h1 {
    color: #fbfbfb;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.boton {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    margin: 6px 0;
    background-color: #ffffff;
    color: #bb2727;
    text-decoration: none;
    border-radius: 6px;
    text-align: left;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.boton:hover {
    background-color: #2563eb;
    cursor: pointer;
}