.menu-button {
    display: inline-flex;
    /* No ocupa todo el ancho */
    align-items: center;
    justify-content: center;
    gap: 14px;

    background-color: #C6A87C;
    color: #ffffff;

    padding: 12px 28px;
    font-size: 18px;
    font-weight: 500;

    text-decoration: none;
    border-radius: 6px;

    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Hover */
.menu-button:hover {
    background-color: #a9844c;
    transform: translateY(-2px);
}

/* Flecha */
.menu-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* Animación flecha */
.menu-button:hover .menu-arrow {
    transform: translateX(6px);
}